From 236597552d2031c8e484f3bc8fa16362b390a917 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 29 Apr 2024 18:18:16 +0200 Subject: [PATCH 01/19] Adds 3.12 support in tox config --- tox.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index d793569..04070a1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ [tox] -envlist = py39,py310,py311 +envlist = py39,py310,py311,py312 [gh-actions] python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] extras = test,distributed From b2710caed25ddfd5607c067aa61e2bd6b7b1e2f7 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 29 Apr 2024 19:09:20 +0200 Subject: [PATCH 02/19] add pre-commit config --- .pre-commit-config.yaml | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9fbeff7..3a9a231 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,25 +1,18 @@ -exclude: 'docs|test|setup.py' -repos: - - repo: https://github.com/psf/black - rev: 21.7b0 +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v2.3.0 hooks: - - id: black - language_version: python + - id: check-yaml + - id: check-toml + - id: end-of-file-fixer + - id: trailing-whitespace - - repo: https://github.com/PyCQA/flake8 - rev: 3.9.2 - hooks: - - id: flake8 - language_version: python - - - repo: https://github.com/PyCQA/pydocstyle - rev: 6.1.1 + - repo: https://github.com/astral-sh/ruff-pre-commit + rev: v0.4.2 hooks: - - id: pydocstyle - language_version: python + - id: ruff + args: [ --fix ] + types_or: [ python, pyi, jupyter ] - - repo: https://github.com/pre-commit/mirrors-mypy - rev: 'v0.910' - hooks: - - id: mypy - language_version: python \ No newline at end of file + - id: ruff-format + types_or: [ python, pyi, jupyter ] From 85c5118f1bc81bc65df8aae62950fc6db070819d Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 29 Apr 2024 20:15:55 +0200 Subject: [PATCH 03/19] Add pyproject.toml with project metadata and tools config --- pyproject.toml | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e096108 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,66 @@ +[build-system] +requires = ["setuptools >= 61.0"] +build-backend = "setuptools.build_meta" + +[project] +name = "cog_worker" +description = "Scalable geospatial analysis on Cloud Optimized GeoTIFFs." +readme = "README.md" +requires-python = ">=3.9" +license = { file = "LICENSE.txt" } +authors = [ + { name = "Francis Gassert", email = "francis.gassert@vizzuality.com" }, +] +url = "https://github.com/vizzuality/cog_worker" +packages = ["cog_worker"] +keywords = ["cog", "geotiff", "raster", "gdal", "rasterio", "dask"] +classifiers = [ + "Intended Audience :: Information Technology", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Topic :: Scientific/Engineering :: GIS", +] +version = "0.2.0" +dependencies = [ + "numpy>=1,<2", + "pyproj>=3.0.0,<4", + "rasterio>=1.3,<2", + "morecantile>=4.3.0,<5", + "rio_tiler>=5.0.0,<6", +] + +[project.optional-dependencies] +test = ["pytest"] +dev = ["pre-commit"] +distributed = ["dask[distributed]"] +docs = ["Sphinx", "sphinxcontrib-napoleon", "furo", "nbsphinx", "nbconvert"] + +[tool.ruff] +line-length = 120 +extend-include = ["*.ipynb"] + +[tool.ruff.lint] +select = [ + "D1", # pydocstyle errors + "E", # pycodestyle errors + "W", # pycodestyle warnings + "F", # flake8 + "C", # flake8-comprehensions + "B", # flake8-bugbear + "N", # Naming conventions + "I", # isort +] +pydocstyle.convention = "google" +pydocstyle.ignore-decorators = ["property"] + +[tool.ruff.lint.per-file-ignores] +"**/{tests}/*" = [ + "D103", # Missing docstring in public function + "D100", # Missing docstring in public module +] From 05a23495d5dc01673f03634cf419f2e5e83bf313 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 29 Apr 2024 21:03:14 +0200 Subject: [PATCH 04/19] Move to src based structure and remove old setup .py .cfg and fixes linting and type errors --- .pre-commit-config.yaml | 5 ++ LICENSE.md => LICENSE.txt | 0 pyproject.toml | 10 +-- setup.py | 38 ---------- {cog_worker => src/cog_worker}/__init__.py | 0 {cog_worker => src/cog_worker}/__init__.pyc | Bin {cog_worker => src/cog_worker}/distributed.py | 24 +++---- {cog_worker => src/cog_worker}/manager.py | 67 ++++++++---------- {cog_worker => src/cog_worker}/types.py | 1 + {cog_worker => src/cog_worker}/utils.py | 12 ++-- {cog_worker => src/cog_worker}/worker.py | 41 ++++------- 11 files changed, 71 insertions(+), 127 deletions(-) rename LICENSE.md => LICENSE.txt (100%) delete mode 100644 setup.py rename {cog_worker => src/cog_worker}/__init__.py (100%) rename {cog_worker => src/cog_worker}/__init__.pyc (100%) rename {cog_worker => src/cog_worker}/distributed.py (94%) rename {cog_worker => src/cog_worker}/manager.py (93%) rename {cog_worker => src/cog_worker}/types.py (99%) rename {cog_worker => src/cog_worker}/utils.py (87%) rename {cog_worker => src/cog_worker}/worker.py (90%) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3a9a231..f57abdd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,3 +16,8 @@ repos: - id: ruff-format types_or: [ python, pyi, jupyter ] + + - repo: https://github.com/pre-commit/mirrors-mypy + rev: v1.10.0 + hooks: + - id: mypy diff --git a/LICENSE.md b/LICENSE.txt similarity index 100% rename from LICENSE.md rename to LICENSE.txt diff --git a/pyproject.toml b/pyproject.toml index e096108..66dc515 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools >= 61.0"] +requires = ["setuptools"] build-backend = "setuptools.build_meta" [project] @@ -11,8 +11,6 @@ license = { file = "LICENSE.txt" } authors = [ { name = "Francis Gassert", email = "francis.gassert@vizzuality.com" }, ] -url = "https://github.com/vizzuality/cog_worker" -packages = ["cog_worker"] keywords = ["cog", "geotiff", "raster", "gdal", "rasterio", "dask"] classifiers = [ "Intended Audience :: Information Technology", @@ -26,7 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: GIS", ] -version = "0.2.0" +dynamic = ["version"] dependencies = [ "numpy>=1,<2", "pyproj>=3.0.0,<4", @@ -35,6 +33,10 @@ dependencies = [ "rio_tiler>=5.0.0,<6", ] +[project.urls] +Homepage = "https://github.com/vizzuality/cog_worker" +Issues = "https://github.com/vizzuality/cog_worker/issues" + [project.optional-dependencies] test = ["pytest"] dev = ["pre-commit"] diff --git a/setup.py b/setup.py deleted file mode 100644 index 15fecf8..0000000 --- a/setup.py +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env python -from setuptools import setup - -with open("README.md") as f: - desc = f.read() - -setup( - name="cog_worker", - version="0.2.0", - description="Scalable geospatial analysis on Cloud Optimized GeoTIFFs.", - long_description=desc, - long_description_content_type="text/markdown", - license="MIT", - author="Francis Gassert", - author_email="francis.gassert@vizzuality.com", - url="https://github.com/vizzuality/cog_worker", - packages=["cog_worker"], - keywords="cog geotiff raster gdal rasterio dask", - install_requires=[ - "numpy>=1,<2", - "pyproj>=3.0.0,<4", - "rasterio>=1.3,<2", - "morecantile>=4.3.0,<5", - "rio_tiler>=5.0.0,<6", - ], - extras_require={ - "test": ["pytest"], - "dev": ["pre-commit"], - "distributed": ["dask[distributed]"], - "docs": [ - "Sphinx", - "sphinxcontrib-napoleon", - "furo", - "nbsphinx", - "nbconvert" - ], - }, -) diff --git a/cog_worker/__init__.py b/src/cog_worker/__init__.py similarity index 100% rename from cog_worker/__init__.py rename to src/cog_worker/__init__.py diff --git a/cog_worker/__init__.pyc b/src/cog_worker/__init__.pyc similarity index 100% rename from cog_worker/__init__.pyc rename to src/cog_worker/__init__.pyc diff --git a/cog_worker/distributed.py b/src/cog_worker/distributed.py similarity index 94% rename from cog_worker/distributed.py rename to src/cog_worker/distributed.py index 749d743..232a9c2 100644 --- a/cog_worker/distributed.py +++ b/src/cog_worker/distributed.py @@ -27,8 +27,9 @@ def my_analysis(worker): results = manager.chunk_execute(my_analysis) total = sum(results) """ -from typing import Iterable, Iterator, Mapping, Union, Tuple, Any + import logging +from typing import Any, Iterable, Iterator, Mapping, Tuple, Union import dask import dask.distributed @@ -36,8 +37,7 @@ def my_analysis(worker): from pyproj import Proj import cog_worker -from cog_worker.types import WorkerFunction, BoundingBox - +from cog_worker.types import BoundingBox, WorkerFunction logger = logging.getLogger(__name__) @@ -79,11 +79,11 @@ def __init__( def execute( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, clip: bool = True, compute: bool = True, - **kwargs + **kwargs, ) -> Union[Tuple[Any, BoundingBox], Delayed]: """Execute a cog_worker function in the DaskManager's cluster. @@ -134,11 +134,11 @@ def execute( def chunk_execute( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, chunksize: int = 512, compute: bool = True, - ) -> Union[Iterator[Tuple[Any, BoundingBox]], Iterator[Delayed]]: + ) -> Union[Iterator[Tuple[Any, BoundingBox]], Iterator[Delayed]]: # type: ignore """Compute chunks in parallel in the DaskManager's cluster. Chunks will be yielded as they are completed. The order in which they @@ -169,10 +169,8 @@ def chunk_execute( ] if compute: futures = self.client.compute(tasks) - for future, result in dask.distributed.as_completed( - futures, with_results=True - ): + for future, result in dask.distributed.as_completed(futures, with_results=True): future.release() yield result else: - return tasks + return tasks # type: ignore diff --git a/cog_worker/manager.py b/src/cog_worker/manager.py similarity index 93% rename from cog_worker/manager.py rename to src/cog_worker/manager.py index 7605892..2bec0f5 100644 --- a/cog_worker/manager.py +++ b/src/cog_worker/manager.py @@ -27,22 +27,23 @@ def my_analysis(worker): manager.chuck_save('output.tif', myanalysis): """ -import math -import logging -from typing import IO, Iterable, Iterator, Mapping, Optional, Tuple, Type, Union, Any +import logging +import math +from typing import IO, Any, Iterable, Iterator, Mapping, Optional, Tuple, Type, Union -import numpy as np import morecantile -from pyproj import Proj +import numpy as np import rasterio as rio -from rasterio.io import DatasetWriter -import rasterio.windows import rasterio.transform +import rasterio.windows +from pyproj import Proj +from rasterio.io import DatasetWriter import cog_worker.worker + +from .types import BoundingBox, WorkerFunction from .utils import _bbox_size, _get_profile -from .types import WorkerFunction, BoundingBox logger = logging.getLogger(__name__) @@ -76,17 +77,15 @@ def __init__( self.scale = scale self.buffer = buffer self._proj_bounds = self.proj.transform_bounds(*bounds) - self.tms = morecantile.TileMatrixSet.custom( - list(self._proj_bounds), self.proj.crs - ) + self.tms = morecantile.TileMatrixSet.custom(list(self._proj_bounds), self.proj.crs) def execute( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, clip: bool = True, - **kwargs + **kwargs, ) -> Tuple[Any, BoundingBox]: """Execute a function that takes a cog_worker.worker.Worker as its first parameter. @@ -123,11 +122,11 @@ def execute( def preview( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, - bounds: Optional[BoundingBox] = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, + bounds: Optional[BoundingBox] | None = None, max_size: int = 1024, - **kwargs + **kwargs, ) -> Tuple[Any, BoundingBox]: """Preview a function by executing it at a reduced scale. @@ -163,13 +162,13 @@ def preview( def tile( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, z: int = 0, x: int = 0, y: int = 0, tilesize: int = 256, - **kwargs + **kwargs, ) -> Tuple[Any, BoundingBox]: """Execute a function for the scale and bounds of a TMS tile. @@ -209,8 +208,8 @@ def tile( def chunk_execute( self, f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, chunksize: int = 512, ) -> Iterator[Tuple[Any, BoundingBox]]: """Return a generator that executes a function on chunks of at most `chunksize` pixels. @@ -241,10 +240,10 @@ def chunk_save( self, dst: Union[str, IO], f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, + f_args: Iterable | None = None, + f_kwargs: Mapping | None = None, chunksize: int = 512, - **kwargs + **kwargs, ): """Execute a function in chunks and write each chunk to disk as it is completed. @@ -276,13 +275,9 @@ def chunk_save( for arr, bbox in chunks: self._write_chunk(_writer, arr, bbox) - def _open_writer( - self, dst: Union[str, IO], count: int, dtype: Type, **kwargs - ) -> DatasetWriter: + def _open_writer(self, dst: Union[str, IO], count: int, dtype: Type, **kwargs) -> DatasetWriter: """Open a rasterio.DatasetWriter with default profile.""" - profile = _get_profile( - count, self.scale, self._proj_bounds, self.proj, dtype, **kwargs - ) + profile = _get_profile(count, self.scale, self._proj_bounds, self.proj, dtype, **kwargs) return rio.open(dst, "w", **profile) # type: ignore @@ -375,7 +370,7 @@ def _chunk_bounds( left, bottom, right, top = self._proj_bounds _chunksize = chunksize * self.scale - l = left + x * _chunksize + l = left + x * _chunksize # noqa: E741 r = min(l + _chunksize, right) t = top - y * _chunksize b = max(t - _chunksize, bottom) @@ -395,11 +390,7 @@ def _num_chunks( def _execute( - f: WorkerFunction, - f_args: Iterable = None, - f_kwargs: Mapping = None, - clip: bool = True, - **kwargs + f: WorkerFunction, f_args: Iterable | None = None, f_kwargs: Mapping | None = None, clip: bool = True, **kwargs ) -> Tuple[Any, BoundingBox]: """Execute a function that takes a cog_worker.worker.Worker as its first parameter. diff --git a/cog_worker/types.py b/src/cog_worker/types.py similarity index 99% rename from cog_worker/types.py rename to src/cog_worker/types.py index 482a57e..2ce1f9d 100644 --- a/cog_worker/types.py +++ b/src/cog_worker/types.py @@ -1,4 +1,5 @@ """cog_worker type definitions.""" + from typing import Callable, Tuple, Union import numpy as np diff --git a/cog_worker/utils.py b/src/cog_worker/utils.py similarity index 87% rename from cog_worker/utils.py rename to src/cog_worker/utils.py index c149e54..764097b 100644 --- a/cog_worker/utils.py +++ b/src/cog_worker/utils.py @@ -1,20 +1,16 @@ """Utility functions.""" + from typing import Tuple, Type, Union -from rasterio import transform -from pyproj import Proj import numpy as np +from pyproj import Proj +from rasterio import transform from .types import BoundingBox def _get_profile( - count: int, - scale: float, - proj_bounds: BoundingBox, - proj: Proj, - dtype: Union[Type, np.dtype], - **kwargs + count: int, scale: float, proj_bounds: BoundingBox, proj: Proj, dtype: Union[Type, np.dtype], **kwargs ) -> dict: width, height = _bbox_size(proj_bounds, scale) affine = transform.from_origin(proj_bounds[0], proj_bounds[3], scale, scale) diff --git a/cog_worker/worker.py b/src/cog_worker/worker.py similarity index 90% rename from cog_worker/worker.py rename to src/cog_worker/worker.py index 79f4af1..f8eafc7 100644 --- a/cog_worker/worker.py +++ b/src/cog_worker/worker.py @@ -17,16 +17,17 @@ arr = worker.read('example-cog-url.tif') show(arr) """ + import logging from typing import Sequence, Union +import numpy as np +import rasterio as rio from pyproj import Proj from pyproj.enums import TransformDirection -import rasterio as rio -import numpy as np from rio_tiler.errors import EmptyMosaicError -from rio_tiler.models import ImageData from rio_tiler.io import COGReader +from rio_tiler.models import ImageData from rio_tiler.mosaic.reader import mosaic_reader from cog_worker.types import BoundingBox @@ -41,7 +42,7 @@ class Worker: def __init__( self, bounds: BoundingBox = (-180, -85, 180, 85), - proj_bounds: BoundingBox = None, + proj_bounds: BoundingBox | None = None, proj: Union[int, str, Proj] = 3857, scale: float = 10000, buffer: int = 16, @@ -60,9 +61,7 @@ def __init__( The ideal buffer size depends on your analysis (e.g. whether you plan to use convolutions or distance functions). """ - self._proj = ( - proj if isinstance(proj, Proj) else Proj(proj, preserve_units=False) - ) + self._proj = proj if isinstance(proj, Proj) else Proj(proj, preserve_units=False) if proj_bounds is None: proj_bounds = self._proj.transform_bounds(*bounds) @@ -125,9 +124,7 @@ def lnglat_bounds(self, buffered: bool = False) -> BoundingBox: pts = max(self.width, self.height) + (buffered * self.buffer * 2) - 1 pts = min(pts, 10000) bounds = self.xy_bounds(buffered) - return self.proj.transform_bounds( - *bounds, pts, direction=TransformDirection.INVERSE - ) + return self.proj.transform_bounds(*bounds, pts, direction=TransformDirection.INVERSE) def empty(self, mask: bool = False) -> np.ndarray: """Return a zeroed array covering the Worker's extent including the buffer. @@ -138,15 +135,11 @@ def empty(self, mask: bool = False) -> np.ndarray: """ arr = np.zeros((1, self.height + self.buffer * 2, self.width + self.buffer * 2)) if mask: - _mask = np.ones( - (1, self.height + self.buffer * 2, self.width + self.buffer * 2) - ) + _mask = np.ones((1, self.height + self.buffer * 2, self.width + self.buffer * 2)) arr = np.ma.array(arr, mask=_mask) return arr - def read( - self, src: Union[str, Sequence[str]], masked=True, **kwargs - ) -> Union[np.ndarray, np.ma.MaskedArray]: + def read(self, src: Union[str, Sequence[str]], masked=True, **kwargs) -> Union[np.ndarray, np.ma.MaskedArray]: """Read a COG, reprojecting and clipping as necessary. The read method uses ``rio_tiler.COGReader`` to takes advantage of the @@ -182,12 +175,10 @@ def read( width, height = _bbox_size(proj_bounds, self._scale) if isinstance(src, str): - img = _read_COG(src, proj_bounds, self._proj.crs, width, height, **kwargs) + img = _read_cog(src, proj_bounds, self._proj.crs, width, height, **kwargs) elif isinstance(src, Sequence): try: - img, asset = mosaic_reader( - src, _read_COG, proj_bounds, self.proj.crs, width, height, **kwargs - ) + img, asset = mosaic_reader(src, _read_cog, proj_bounds, self.proj.crs, width, height, **kwargs) except EmptyMosaicError: return self.empty(mask=True) @@ -213,9 +204,7 @@ def write(self, arr: np.ndarray, dst: str, **kwargs): """ arr = self.clip_buffer(arr) count, height, width = arr.shape - profile = _get_profile( - count, self.scale, self._bounds, self.proj, arr.dtype, **kwargs - ) + profile = _get_profile(count, self.scale, self._bounds, self.proj, arr.dtype, **kwargs) with rio.open(dst, "w", **profile) as writer: writer.write(arr) @@ -248,18 +237,18 @@ def clip_buffer(self, arr: np.ndarray) -> np.ndarray: return arr[:, self.buffer : -self.buffer, self.buffer : -self.buffer] else: raise ValueError( - f"Array not expected size. Was {w}x{h} expected {self.width}x{self.height} or {buffer_width}x{buffer_height}" + f"Array not expected size. Was {w}x{h} expected {self.width}x{self.height} or {buffer_width}x{buffer_height}" # noqa: E501 ) def _buffer_bbox(self) -> BoundingBox: """Returns the worker's bounding box extended by the buffered pixels.""" - l, b, r, t = self._bounds + l, b, r, t = self._bounds # noqa: E741 _buffer = self.buffer * self.scale return (l - _buffer, b - _buffer, r + _buffer, t + _buffer) -def _read_COG( +def _read_cog( asset: str, proj_bounds: BoundingBox, crs: Union[str, int, Proj], From dde972cfc668d39963a9b1e360aaa89decd75e4c Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 09:49:35 +0200 Subject: [PATCH 05/19] Replace use of | for Union type hint to support py 3.9 --- src/cog_worker/distributed.py | 8 ++++---- src/cog_worker/manager.py | 26 +++++++++++++++----------- src/cog_worker/worker.py | 2 +- 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/src/cog_worker/distributed.py b/src/cog_worker/distributed.py index 232a9c2..0706b65 100644 --- a/src/cog_worker/distributed.py +++ b/src/cog_worker/distributed.py @@ -79,8 +79,8 @@ def __init__( def execute( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, clip: bool = True, compute: bool = True, **kwargs, @@ -134,8 +134,8 @@ def execute( def chunk_execute( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, chunksize: int = 512, compute: bool = True, ) -> Union[Iterator[Tuple[Any, BoundingBox]], Iterator[Delayed]]: # type: ignore diff --git a/src/cog_worker/manager.py b/src/cog_worker/manager.py index 2bec0f5..05ba533 100644 --- a/src/cog_worker/manager.py +++ b/src/cog_worker/manager.py @@ -82,8 +82,8 @@ def __init__( def execute( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, clip: bool = True, **kwargs, ) -> Tuple[Any, BoundingBox]: @@ -122,8 +122,8 @@ def execute( def preview( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, bounds: Optional[BoundingBox] | None = None, max_size: int = 1024, **kwargs, @@ -162,8 +162,8 @@ def preview( def tile( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, z: int = 0, x: int = 0, y: int = 0, @@ -208,8 +208,8 @@ def tile( def chunk_execute( self, f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, chunksize: int = 512, ) -> Iterator[Tuple[Any, BoundingBox]]: """Return a generator that executes a function on chunks of at most `chunksize` pixels. @@ -240,8 +240,8 @@ def chunk_save( self, dst: Union[str, IO], f: WorkerFunction, - f_args: Iterable | None = None, - f_kwargs: Mapping | None = None, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, chunksize: int = 512, **kwargs, ): @@ -390,7 +390,11 @@ def _num_chunks( def _execute( - f: WorkerFunction, f_args: Iterable | None = None, f_kwargs: Mapping | None = None, clip: bool = True, **kwargs + f: WorkerFunction, + f_args: Union[Iterable, None] = None, + f_kwargs: Union[Mapping, None] = None, + clip: bool = True, + **kwargs, ) -> Tuple[Any, BoundingBox]: """Execute a function that takes a cog_worker.worker.Worker as its first parameter. diff --git a/src/cog_worker/worker.py b/src/cog_worker/worker.py index f8eafc7..672f1c1 100644 --- a/src/cog_worker/worker.py +++ b/src/cog_worker/worker.py @@ -42,7 +42,7 @@ class Worker: def __init__( self, bounds: BoundingBox = (-180, -85, 180, 85), - proj_bounds: BoundingBox | None = None, + proj_bounds: Union[BoundingBox, None] = None, proj: Union[int, str, Proj] = 3857, scale: float = 10000, buffer: int = 16, From a82e9273e1b270cf0b2b39942539b737ccb19708 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 09:59:31 +0200 Subject: [PATCH 06/19] Add python 3.12 to github actions --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c4f3a3c..a4eaa11 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v2 From 39ea011b907d95c11fdb0580edaf587879b5bdd3 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 12:40:13 +0200 Subject: [PATCH 07/19] Fix distributed test to call gather direclty on chunk execute. I don't fully understand what is going on here --- tests/test_distributed.py | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/tests/test_distributed.py b/tests/test_distributed.py index 1548ded..f9a6ce1 100644 --- a/tests/test_distributed.py +++ b/tests/test_distributed.py @@ -1,11 +1,9 @@ import pytest -from dask.distributed import Client, LocalCluster import rasterio as rio -from rasterio import MemoryFile - -from cog_worker.distributed import DaskManager from cog_worker import Manager - +from cog_worker.distributed import DaskManager +from dask.distributed import Client, LocalCluster +from rasterio import MemoryFile TEST_COG = "tests/roads_cog.tif" @@ -36,16 +34,16 @@ def myfunc(worker): def test_execute(daskmanager, manager, sample_function): - assert ( - daskmanager.execute(sample_function)[0] == manager.execute(sample_function)[0] - ).all() + assert (daskmanager.execute(sample_function)[0] == manager.execute(sample_function)[0]).all() def test_chunk_execute(daskmanager, sample_function): - futures = daskmanager.client.compute( - daskmanager.chunk_execute(sample_function, compute=False) - ) - results = daskmanager.client.gather(futures) + results = daskmanager.client.gather(daskmanager.chunk_execute(sample_function, compute=False)) + assert all(isinstance(results[1], tuple) for results in results) + + +def test_chunck_execute_compute(daskmanager, sample_function): + results = daskmanager.chunk_execute(sample_function, compute=True) assert all(isinstance(results[1], tuple) for results in results) From e23cddf510825478206399bebfafb845ca3db051 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 12:44:05 +0200 Subject: [PATCH 08/19] Fix ruff root src thus fixing import order --- pyproject.toml | 1 + tests/test_distributed.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 66dc515..c786154 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,7 @@ docs = ["Sphinx", "sphinxcontrib-napoleon", "furo", "nbsphinx", "nbconvert"] [tool.ruff] line-length = 120 extend-include = ["*.ipynb"] +src = ["src"] [tool.ruff.lint] select = [ diff --git a/tests/test_distributed.py b/tests/test_distributed.py index f9a6ce1..1651543 100644 --- a/tests/test_distributed.py +++ b/tests/test_distributed.py @@ -1,10 +1,11 @@ import pytest import rasterio as rio -from cog_worker import Manager -from cog_worker.distributed import DaskManager from dask.distributed import Client, LocalCluster from rasterio import MemoryFile +from cog_worker import Manager +from cog_worker.distributed import DaskManager + TEST_COG = "tests/roads_cog.tif" From 6d506d6cb660d13ae6f1414e0c523313fa5569b0 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 12:50:07 +0200 Subject: [PATCH 09/19] Fix broken type hint --- src/cog_worker/manager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cog_worker/manager.py b/src/cog_worker/manager.py index 05ba533..1bafeb3 100644 --- a/src/cog_worker/manager.py +++ b/src/cog_worker/manager.py @@ -30,7 +30,7 @@ def my_analysis(worker): import logging import math -from typing import IO, Any, Iterable, Iterator, Mapping, Optional, Tuple, Type, Union +from typing import IO, Any, Iterable, Iterator, Mapping, Tuple, Type, Union import morecantile import numpy as np @@ -124,7 +124,7 @@ def preview( f: WorkerFunction, f_args: Union[Iterable, None] = None, f_kwargs: Union[Mapping, None] = None, - bounds: Optional[BoundingBox] | None = None, + bounds: Union[BoundingBox, None] = None, max_size: int = 1024, **kwargs, ) -> Tuple[Any, BoundingBox]: From bd169c7572bde39a78a7de5b682348bd8f732e08 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 13:42:54 +0200 Subject: [PATCH 10/19] Add bump version config --- .gitignore | 4 +++- .pre-commit-config.yaml | 1 + pyproject.toml | 27 +++++++++++++++++++++++++++ setup.cfg | 23 ----------------------- src/cog_worker/__init__.pyc | Bin 242 -> 0 bytes 5 files changed, 31 insertions(+), 24 deletions(-) delete mode 100644 setup.cfg delete mode 100644 src/cog_worker/__init__.pyc diff --git a/.gitignore b/.gitignore index 2a30de9..c123977 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,8 @@ dist __pycache__ .pytest_cache .mypy_cache +.ruff_cache +.venv .tox dask-worker-space *.egg-info @@ -19,4 +21,4 @@ output.tif.msk .DS_Store *# -*~ \ No newline at end of file +*~ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f57abdd..6a1327f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,3 +1,4 @@ +exclude: "docs" repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v2.3.0 diff --git a/pyproject.toml b/pyproject.toml index c786154..7d028e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -67,3 +67,30 @@ pydocstyle.ignore-decorators = ["property"] "D103", # Missing docstring in public function "D100", # Missing docstring in public module ] + +[tool.bumpversion] +current_version = "0.2.0" +parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" +serialize = ["{major}.{minor}.{patch}"] +search = "{current_version}" +replace = "{new_version}" +regex = false +ignore_missing_version = false +ignore_missing_files = false +tag = true +sign_tags = false +tag_name = "v{new_version}" +tag_message = "Bump version: {current_version} → {new_version}" +allow_dirty = false +commit = true +message = "Bump version: {current_version} → {new_version}" +commit_args = "" + +[[tool.bumpversion.files]] +filename = "src/cog_worker/__init__.py" + +[[tool.bumpversion.files]] +filename = "sphinx_docs/source/conf.py" + +[[tool.bumpversion.files]] +filename = "pyproject.toml" diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index e968581..0000000 --- a/setup.cfg +++ /dev/null @@ -1,23 +0,0 @@ -[bumpversion] -commit = True -tag = True -current_version = 0.2.0 - -[bumpversion:file:setup.py] -search = version="{current_version}" -replace = version="{new_version}" - -[bumpversion:file:cog_worker/__init__.py] -search = __version__ = "{current_version}" -replace = __version__ = "{new_version}" - -[bumpversion:file:sphinx_docs/source/conf.py] -search = release = '{current_version}' -replace = release = '{new_version}' - -[flake8] -ignore = E501,E203,E741 - -[pydocstyle] -ignore-decorators = property -convention = google diff --git a/src/cog_worker/__init__.pyc b/src/cog_worker/__init__.pyc deleted file mode 100644 index 15dd2455a8efbd7ecbb679ce2a47a98783914485..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 242 zcmYk0K?=e!5Je|xY^5N$^a#a8djSzIph#T^-HfFvrPwsmM#OWw5m(MME)2{IFY`Yn zcrD`N`*W$_cO>0AnsH6g00mKime2_>5()`|J%BC%qo7da3Qoz4;!Y6amYFbINI2W! zS`XeM@_pHtO+6fZgI^G}tq`a5V@l^!n|H>ibN*IB^M`Ronr4-4(6=(gwr?F`dV9J# SEjPyMdslC{JSsvcmf{PXgDTnp From b4d2b34e4a406f35bb4f933845b9704cfd0a6684 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 30 Apr 2024 20:02:26 +0200 Subject: [PATCH 11/19] Formats all files --- CHANGELOG.md | 14 +++++++------- CONTRIBUTING.md | 3 +-- README.md | 4 ++-- requirements.txt | 2 +- tests/test_manager.py | 9 ++++----- tests/test_utils.py | 5 ++--- tests/test_worker.py | 1 - 7 files changed, 17 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4460a5a..5c8d0f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## v0.2.0 +## v0.2.0 ### Changed @@ -16,17 +16,17 @@ ### Added -- Worker.read() takes an optional masked parameter, when set to False, ignores +- Worker.read() takes an optional masked parameter, when set to False, ignores dataset mask. ### Fixed -- Fixed inconsistency in between the way cog_worker and rasterio.windows - rounds bounding boxes to pixels and vice-verca, which would occasionally cause +- Fixed inconsistency in between the way cog_worker and rasterio.windows + rounds bounding boxes to pixels and vice-verca, which would occasionally cause gaps in files generated by Manager.chunk_save(). -- Fixed issue where Worker.lnglat_bounds() would fail inverse transforms for +- Fixed issue where Worker.lnglat_bounds() would fail inverse transforms for chunks >10000 px. -- Fixed distributed test suite to be compatible with current behavior of +- Fixed distributed test suite to be compatible with current behavior of dask.distributed. ## v0.1.4 - 2021-11-29 @@ -37,7 +37,7 @@ ### Added -- Add parameter `compute=False` to have DaskManager return Delayed objects +- Add parameter `compute=False` to have DaskManager return Delayed objects instead of computing immediately. ## v0.1.3 - 2021-10-02 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7d71099..dd2bdbd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -19,9 +19,8 @@ Note: requires `pandoc` to build convert jupyter notebooks. 1. Create release candidate branch 2. Run tests `tox` 3. Update changelog - 4. Bump to new version `bump2version [major/minor/patch]` + 4. Bump to new version `bump-my-version [major/minor/patch]` 5. Build docs `cd sphinx_docs && make ghpages` 6. Commit docs 7. Merge to `main` 8. Publish to pypi `tox -e release` - diff --git a/README.md b/README.md index a97abaa..5b61c61 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Scalable geospatial analysis on Cloud Optimized GeoTIFFs. - **PyPI**: https://pypi.org/project/cog-worker cog_worker is a simple library to help write scripts to conduct scaleable -analysis of gridded data. It's intended to be useful for moderate- to large-scale +analysis of gridded data. It's intended to be useful for moderate- to large-scale GIS, remote sensing, and machine learning applications. ## Installation @@ -123,4 +123,4 @@ distributed_manager = DaskManager( # Execute in worker pool and save chunks to disk as they complete. distributed_manager.chunk_save('output.tif', MyAnalysis, chunksize=2048) -``` \ No newline at end of file +``` diff --git a/requirements.txt b/requirements.txt index 945c9b4..9c558e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -. \ No newline at end of file +. diff --git a/tests/test_manager.py b/tests/test_manager.py index b7c97b1..6aee093 100644 --- a/tests/test_manager.py +++ b/tests/test_manager.py @@ -1,8 +1,9 @@ import pytest import rasterio as rio +from rasterio import MemoryFile, crs from rasterio.io import DatasetWriter + from cog_worker import Manager -from rasterio import MemoryFile, crs TEST_COG = "tests/roads_cog.tif" @@ -35,7 +36,7 @@ def test_tile(molleweide_manager, sample_function): def test_chunk_execute(molleweide_manager, sample_function): chunks = list(molleweide_manager.chunk_execute(sample_function, chunksize=123)) - for arr, bbox in chunks: + for arr, _ in chunks: assert max(arr.shape) <= 123, "Max chunk size should be 123px" @@ -60,9 +61,7 @@ def test_chunk_save(molleweide_manager, sample_function): assert src.profile["transform"][0] == 50000 arr = src.read() assert arr.shape == full_arr.shape - assert ( - abs(arr.sum() / full_arr.data.sum() - 1) < 0.002 - ), "Error should be less than 0.2%" + assert abs(arr.sum() / full_arr.data.sum() - 1) < 0.002, "Error should be less than 0.2%" def test__write_chunk(molleweide_manager, sample_function): diff --git a/tests/test_utils.py b/tests/test_utils.py index 2402328..8cdc1ac 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1,14 +1,13 @@ import rasterio as rio from pyproj import Proj from rasterio.io import MemoryFile + from cog_worker import utils def test__get_profile(): proj = Proj("wgs84") - profile = utils._get_profile( - 3, 0.0833333, (-180, -90, 180, 90), proj, rio.uint8, nodata=0 - ) + profile = utils._get_profile(3, 0.0833333, (-180, -90, 180, 90), proj, rio.uint8, nodata=0) with MemoryFile() as memfile: with rio.open(memfile, "w", **profile) as dst: assert Proj(dst.profile["crs"]) == proj diff --git a/tests/test_worker.py b/tests/test_worker.py index 8497798..76900dc 100644 --- a/tests/test_worker.py +++ b/tests/test_worker.py @@ -4,7 +4,6 @@ from cog_worker import Worker - TEST_COG = "tests/roads_cog.tif" From da0a2a15fbf68ebccd737477046dc5901a0938df Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Thu, 2 May 2024 09:47:04 +0200 Subject: [PATCH 12/19] Removes version upper bound for runtime deps. We make light use of the deps and it is unlikely that we will hit a breaking change in future releases. --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7d028e5..eec30ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,11 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "numpy>=1,<2", - "pyproj>=3.0.0,<4", - "rasterio>=1.3,<2", - "morecantile>=4.3.0,<5", - "rio_tiler>=5.0.0,<6", + "numpy>=1", + "pyproj>=3.0.0", + "rasterio>=1.3", + "morecantile>=4.3.0", + "rio_tiler>=5.0.0", ] [project.urls] From a101481f3fff6f51e1d5f87e12a892ba62a5682c Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Thu, 2 May 2024 10:10:14 +0200 Subject: [PATCH 13/19] Remove redundant defaults for bumpversion config --- pyproject.toml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eec30ff..68c0c3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,21 +70,8 @@ pydocstyle.ignore-decorators = ["property"] [tool.bumpversion] current_version = "0.2.0" -parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" -serialize = ["{major}.{minor}.{patch}"] -search = "{current_version}" -replace = "{new_version}" -regex = false -ignore_missing_version = false -ignore_missing_files = false tag = true -sign_tags = false -tag_name = "v{new_version}" -tag_message = "Bump version: {current_version} → {new_version}" -allow_dirty = false commit = true -message = "Bump version: {current_version} → {new_version}" -commit_args = "" [[tool.bumpversion.files]] filename = "src/cog_worker/__init__.py" From 65ab8a4ed8ecddb86cd38c98953cc0cff749f3aa Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Tue, 14 May 2024 14:59:53 +0200 Subject: [PATCH 14/19] upper bound dependencies and adds typed marked file so mypy knows this lib is typed --- pyproject.toml | 12 ++++++++---- src/cog_worker/py.typed | 0 2 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 src/cog_worker/py.typed diff --git a/pyproject.toml b/pyproject.toml index 68c0c3b..fd62cfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,8 +29,8 @@ dependencies = [ "numpy>=1", "pyproj>=3.0.0", "rasterio>=1.3", - "morecantile>=4.3.0", - "rio_tiler>=5.0.0", + "morecantile>=5.0.0,<6.0.0", + "rio_tiler>=6.0.0,<7.0.0", ] [project.urls] @@ -43,6 +43,9 @@ dev = ["pre-commit"] distributed = ["dask[distributed]"] docs = ["Sphinx", "sphinxcontrib-napoleon", "furo", "nbsphinx", "nbconvert"] +[tool.setuptools.package-data] +cog_worker = ["py.typed"] + [tool.ruff] line-length = 120 extend-include = ["*.ipynb"] @@ -54,10 +57,10 @@ select = [ "E", # pycodestyle errors "W", # pycodestyle warnings "F", # flake8 - "C", # flake8-comprehensions - "B", # flake8-bugbear "N", # Naming conventions "I", # isort + "UP", # pyupgrade + "PL", # Pylint ] pydocstyle.convention = "google" pydocstyle.ignore-decorators = ["property"] @@ -66,6 +69,7 @@ pydocstyle.ignore-decorators = ["property"] "**/{tests}/*" = [ "D103", # Missing docstring in public function "D100", # Missing docstring in public module + "PLR2004" # Magic value used in comparisson. Not a problem in tests ] [tool.bumpversion] diff --git a/src/cog_worker/py.typed b/src/cog_worker/py.typed new file mode 100644 index 0000000..e69de29 From e9e7dd7a33ef833799d1606e1b0936a7f00aa11c Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Thu, 18 Jul 2024 17:15:30 +0200 Subject: [PATCH 15/19] Fix issue with bad behaviour of masked array fill value in numpy 2.0 Hack numpy with on purpose overflow to avoid exception when deserializing array. Numpy's masked array default value does not take into account the bit depth of the dtype thus making wrong fill values for int8 and int16 (defaults to 999999). This wasn't crashing in numpy 1.x because it allowed casting (and overflowing) of python ints larger than dtype bounds. --- pyproject.toml | 3 +++ src/cog_worker/worker.py | 33 +++++++++++++++++++++------------ tests/test_distributed.py | 4 ++-- 3 files changed, 26 insertions(+), 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fd62cfe..340c263 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,6 +62,9 @@ select = [ "UP", # pyupgrade "PL", # Pylint ] +ignore = [ + "PLR0913", # too many arguments in function definition (5) +] pydocstyle.convention = "google" pydocstyle.ignore-decorators = ["property"] diff --git a/src/cog_worker/worker.py b/src/cog_worker/worker.py index 672f1c1..91e645e 100644 --- a/src/cog_worker/worker.py +++ b/src/cog_worker/worker.py @@ -19,7 +19,8 @@ """ import logging -from typing import Sequence, Union +from collections.abc import Sequence +from typing import Union import numpy as np import rasterio as rio @@ -210,7 +211,7 @@ def write(self, arr: np.ndarray, dst: str, **kwargs): writer.write(arr) if isinstance(arr, np.ma.MaskedArray): mask = np.ma.getmask(arr) - if len(mask.shape) == 3: + if len(mask.shape) == 3: # noqa PLR2004 mask = np.any(mask, axis=0) writer.write_mask(~mask) @@ -226,7 +227,9 @@ def clip_buffer(self, arr: np.ndarray) -> np.ndarray: Raises: ValueError: If the array's shape does not match the Worker's width and height """ - if len(arr.shape) == 2: + if len(arr.shape) == 2: # noqa PLR2004 + # single band flat array needs extra axis to have the same number of axis as + # an rgb raster arr = arr[np.newaxis] buffer_width = self.width + self.buffer * 2 buffer_height = self.height + self.buffer * 2 @@ -257,12 +260,18 @@ def _read_cog( **kwargs, ) -> ImageData: """Read part of a COG, warping and resampling to a target shape.""" - with COGReader(asset, **kwargs) as cog: # type: ignore - return cog.part( - proj_bounds, - bounds_crs=crs, - dst_crs=crs, - max_size=None, - width=width, - height=height, - ) + with COGReader(asset) as cog: # type: ignore + part = cog.part(proj_bounds, bounds_crs=crs, dst_crs=crs, max_size=None, width=width, height=height, **kwargs) + # 2024-07-18 + # This is wrong. + # Numpy masked array fill_value is fixed for all ints to 999999 which does not fit the 8 and 16 bits ints. + # This is "not an issue" for numpy < 2 since it allow conversion of out of bounds integer arrays but in > 2 it + # is not allowed making the serialization and deserializition of masked arrays a problem in multiprocessing. + # + # `fill_value` is a property where the setter checks and casts the value if possible. + # By setting the fill_value to itself, numpy overflows silently the np.int64(999999) to some trash. + # This allows serializing and deserializing the masked array without issues in numpy 2.x. + # We know this is nonsense but this has been the numpy way for decades and it is expected that the fill method + # is rarely or never used at all. + part.array.fill_value = part.array.fill_value + return part diff --git a/tests/test_distributed.py b/tests/test_distributed.py index 1651543..59607d7 100644 --- a/tests/test_distributed.py +++ b/tests/test_distributed.py @@ -3,7 +3,7 @@ from dask.distributed import Client, LocalCluster from rasterio import MemoryFile -from cog_worker import Manager +from cog_worker import Manager, Worker from cog_worker.distributed import DaskManager TEST_COG = "tests/roads_cog.tif" @@ -28,7 +28,7 @@ def manager(): @pytest.fixture def sample_function(): - def myfunc(worker): + def myfunc(worker: Worker): return worker.read(TEST_COG) return myfunc From e9e5c744d8df622a6a20578197bf0b160c297f4b Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 22 Jul 2024 18:23:48 +0200 Subject: [PATCH 16/19] Adds bump-my-version to dev deps --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 340c263..67f92b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ Issues = "https://github.com/vizzuality/cog_worker/issues" [project.optional-dependencies] test = ["pytest"] -dev = ["pre-commit"] +dev = ["pre-commit", "bump-my-version"] distributed = ["dask[distributed]"] docs = ["Sphinx", "sphinxcontrib-napoleon", "furo", "nbsphinx", "nbconvert"] From c6424c7f3564cf863ac670ef9896c5c34df8385f Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 22 Jul 2024 18:31:57 +0200 Subject: [PATCH 17/19] Update CHANGELOG --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8d0f4..c41be43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## v0.3.0 + +### Changed +- New `src/` project structure +- Update depencies to latest major versions. +- Migrate setup metadata and tooling to `pyproject.toml` +- Switch linting and formatting to `ruff` and **reformat everything** +- `mypy` pre-commit and fix typing here and there +- migrate to newer `bump-my-version` package config in `pyproject.toml` to, guess, bump the version + +## Fixed + +- Fix issue with with latest dask versions (>2023.9.2) that made test fail + ## v0.2.0 ### Changed From 8f1de48a15f7e9eb979906306ca0cfa54240690f Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 22 Jul 2024 18:32:12 +0200 Subject: [PATCH 18/19] =?UTF-8?q?Bump=20version:=200.2.0=20=E2=86=92=200.3?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- sphinx_docs/source/conf.py | 2 +- src/cog_worker/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 67f92b5..62bd994 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,7 @@ pydocstyle.ignore-decorators = ["property"] ] [tool.bumpversion] -current_version = "0.2.0" +current_version = "0.3.0" tag = true commit = true diff --git a/sphinx_docs/source/conf.py b/sphinx_docs/source/conf.py index 49e1990..7308fab 100644 --- a/sphinx_docs/source/conf.py +++ b/sphinx_docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Francis Gassert' # The full version, including alpha/beta/rc tags -release = '0.2.0' +release = '0.3.0' # -- General configuration --------------------------------------------------- diff --git a/src/cog_worker/__init__.py b/src/cog_worker/__init__.py index c26a26d..4b217f7 100644 --- a/src/cog_worker/__init__.py +++ b/src/cog_worker/__init__.py @@ -4,7 +4,7 @@ on Cloud Optimized GeoTIFFs (COGS). """ -__version__ = "0.2.0" +__version__ = "0.3.0" from .worker import Worker # noqa from .manager import Manager # noqa From 907a23c00aa6708b5c0454c7a2c5db1f80d46a37 Mon Sep 17 00:00:00 2001 From: Biel Stela Date: Mon, 22 Jul 2024 18:45:56 +0200 Subject: [PATCH 19/19] Rebuid docs --- docs/.buildinfo | 2 +- docs/_images/examples_1._quick-start_1_0.svg | 440 - docs/_images/examples_1._quick-start_5_0.svg | 482 - docs/_images/examples_1._quick-start_5_2.svg | 419 - docs/_images/examples_1._quick-start_5_3.svg | 371 - docs/_images/examples_1._quick-start_9_0.png | Bin 0 -> 84788 bytes docs/_images/examples_1._quick-start_9_1.png | Bin 40799 -> 0 bytes docs/_images/examples_2._tutorial_11_0.svg | 406 - docs/_images/examples_2._tutorial_11_1.svg | 406 - docs/_images/examples_2._tutorial_14_1.png | Bin 0 -> 10537 bytes docs/_images/examples_2._tutorial_14_1.svg | 758 -- docs/_images/examples_2._tutorial_14_2.svg | 649 - docs/_images/examples_2._tutorial_14_3.png | Bin 5215 -> 0 bytes docs/_images/examples_2._tutorial_5_0.svg | 482 - docs/_images/examples_2._tutorial_7_0.svg | 482 - docs/_images/examples_2._tutorial_9_0.png | Bin 0 -> 82834 bytes docs/_images/examples_2._tutorial_9_0.svg | 482 - docs/_modules/cog_worker/distributed.html | 144 +- docs/_modules/cog_worker/manager.html | 212 +- docs/_modules/cog_worker/worker.html | 224 +- docs/_modules/index.html | 100 +- docs/_sources/examples/4. stac-ndvi.ipynb.txt | 63 - docs/_static/basic.css | 24 +- docs/_static/debug.css | 69 + docs/_static/doctools.js | 2 +- docs/_static/documentation_options.js | 5 +- docs/_static/jquery-3.5.1.js | 10872 ---------------- docs/_static/jquery.js | 2 - docs/_static/language_data.js | 4 +- docs/_static/nbsphinx-broken-thumbnail.svg | 9 + docs/_static/nbsphinx-code-cells.css | 259 + docs/_static/nbsphinx-gallery.css | 31 + docs/_static/nbsphinx-no-thumbnail.svg | 9 + docs/_static/pygments.css | 15 +- docs/_static/scripts/furo-extensions.js | 0 docs/_static/scripts/furo.js | 3 + docs/_static/scripts/furo.js.LICENSE.txt | 7 + docs/_static/scripts/furo.js.map | 1 + docs/_static/scripts/main.js | 3 - docs/_static/scripts/main.js.map | 1 - docs/_static/searchtools.js | 196 +- docs/_static/skeleton.css | 296 + docs/_static/sphinx_highlight.js | 154 + docs/_static/styles/furo-extensions.css | 2 +- docs/_static/styles/furo-extensions.css.map | 2 +- docs/_static/styles/furo.css | 2 +- docs/_static/styles/furo.css.map | 2 +- docs/_static/underscore-1.13.1.js | 2042 --- docs/_static/underscore.js | 6 - docs/api_reference.html | 117 +- docs/cog_worker/1. worker.html | 137 +- docs/cog_worker/2. manager.html | 127 +- docs/cog_worker/3. distributed.html | 117 +- docs/cog_worker/4. types.html | 115 +- docs/examples.html | 112 +- docs/examples/1. quick-start.html | 253 +- docs/examples/2. tutorial.html | 265 +- docs/examples/3. tile-server.html | 273 +- docs/examples/4. stac-ndvi.html | 318 - docs/examples/4. stac-ndvi.ipynb | 78 - docs/genindex.html | 98 +- docs/index.html | 121 +- docs/key_concepts.html | 115 +- docs/objects.inv | Bin 2163 -> 1969 bytes docs/py-modindex.html | 98 +- docs/search.html | 101 +- docs/searchindex.js | 2 +- .../source/examples/4. stac-ndvi.ipynb | 63 - 68 files changed, 2818 insertions(+), 19832 deletions(-) delete mode 100644 docs/_images/examples_1._quick-start_1_0.svg delete mode 100644 docs/_images/examples_1._quick-start_5_0.svg delete mode 100644 docs/_images/examples_1._quick-start_5_2.svg delete mode 100644 docs/_images/examples_1._quick-start_5_3.svg create mode 100644 docs/_images/examples_1._quick-start_9_0.png delete mode 100644 docs/_images/examples_1._quick-start_9_1.png delete mode 100644 docs/_images/examples_2._tutorial_11_0.svg delete mode 100644 docs/_images/examples_2._tutorial_11_1.svg create mode 100644 docs/_images/examples_2._tutorial_14_1.png delete mode 100644 docs/_images/examples_2._tutorial_14_1.svg delete mode 100644 docs/_images/examples_2._tutorial_14_2.svg delete mode 100644 docs/_images/examples_2._tutorial_14_3.png delete mode 100644 docs/_images/examples_2._tutorial_5_0.svg delete mode 100644 docs/_images/examples_2._tutorial_7_0.svg create mode 100644 docs/_images/examples_2._tutorial_9_0.png delete mode 100644 docs/_images/examples_2._tutorial_9_0.svg delete mode 100644 docs/_sources/examples/4. stac-ndvi.ipynb.txt create mode 100644 docs/_static/debug.css delete mode 100644 docs/_static/jquery-3.5.1.js delete mode 100644 docs/_static/jquery.js create mode 100644 docs/_static/nbsphinx-broken-thumbnail.svg create mode 100644 docs/_static/nbsphinx-code-cells.css create mode 100644 docs/_static/nbsphinx-gallery.css create mode 100644 docs/_static/nbsphinx-no-thumbnail.svg create mode 100644 docs/_static/scripts/furo-extensions.js create mode 100644 docs/_static/scripts/furo.js create mode 100644 docs/_static/scripts/furo.js.LICENSE.txt create mode 100644 docs/_static/scripts/furo.js.map delete mode 100644 docs/_static/scripts/main.js delete mode 100644 docs/_static/scripts/main.js.map create mode 100644 docs/_static/skeleton.css create mode 100644 docs/_static/sphinx_highlight.js delete mode 100644 docs/_static/underscore-1.13.1.js delete mode 100644 docs/_static/underscore.js delete mode 100644 docs/examples/4. stac-ndvi.html delete mode 100644 docs/examples/4. stac-ndvi.ipynb delete mode 100644 sphinx_docs/source/examples/4. stac-ndvi.ipynb diff --git a/docs/.buildinfo b/docs/.buildinfo index e5b91c3..e1abf1f 100644 --- a/docs/.buildinfo +++ b/docs/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 116ab50c53e331c65a37185835288728 +config: 161f4fa986221183a5783980cd0c9435 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs/_images/examples_1._quick-start_1_0.svg b/docs/_images/examples_1._quick-start_1_0.svg deleted file mode 100644 index a31df0c..0000000 --- a/docs/_images/examples_1._quick-start_1_0.svg +++ /dev/null @@ -1,440 +0,0 @@ - - - - - - - - 2021-08-12T18:26:01.467647 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_1._quick-start_5_0.svg b/docs/_images/examples_1._quick-start_5_0.svg deleted file mode 100644 index bdd663b..0000000 --- a/docs/_images/examples_1._quick-start_5_0.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - 2021-08-12T18:26:02.004001 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_1._quick-start_5_2.svg b/docs/_images/examples_1._quick-start_5_2.svg deleted file mode 100644 index 4100cdc..0000000 --- a/docs/_images/examples_1._quick-start_5_2.svg +++ /dev/null @@ -1,419 +0,0 @@ - - - - - - - - 2021-08-12T18:26:02.724573 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_1._quick-start_5_3.svg b/docs/_images/examples_1._quick-start_5_3.svg deleted file mode 100644 index 9ced397..0000000 --- a/docs/_images/examples_1._quick-start_5_3.svg +++ /dev/null @@ -1,371 +0,0 @@ - - - - - - - - 2021-08-12T18:26:03.731250 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_1._quick-start_9_0.png b/docs/_images/examples_1._quick-start_9_0.png new file mode 100644 index 0000000000000000000000000000000000000000..bcb420970a429ac2efc8355e76098cd507edf454 GIT binary patch literal 84788 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 literal 0 HcmV?d00001 diff --git a/docs/_images/examples_1._quick-start_9_1.png b/docs/_images/examples_1._quick-start_9_1.png deleted file mode 100644 index 87ca312cd1b2731f2bd8035515f08a46eb941d57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40799 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 diff --git a/docs/_images/examples_2._tutorial_11_0.svg b/docs/_images/examples_2._tutorial_11_0.svg deleted file mode 100644 index d80b91c..0000000 --- a/docs/_images/examples_2._tutorial_11_0.svg +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - 2021-08-12T17:41:52.267338 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_11_1.svg b/docs/_images/examples_2._tutorial_11_1.svg deleted file mode 100644 index 76cdaa6..0000000 --- a/docs/_images/examples_2._tutorial_11_1.svg +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - 2021-08-12T17:41:53.060990 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_14_1.png b/docs/_images/examples_2._tutorial_14_1.png new file mode 100644 index 0000000000000000000000000000000000000000..7866b9a6a21592fd46fb2dcb2a4ef766d8b579e4 GIT binary patch literal 10537 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 - - - - - - - 2021-08-12T17:59:34.484872 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_14_2.svg b/docs/_images/examples_2._tutorial_14_2.svg deleted file mode 100644 index de86c82..0000000 --- a/docs/_images/examples_2._tutorial_14_2.svg +++ /dev/null @@ -1,649 +0,0 @@ - - - - - - - - 2021-08-12T17:59:34.621190 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_14_3.png b/docs/_images/examples_2._tutorial_14_3.png deleted file mode 100644 index 51a43b43abc3fd6c6cdd58c404d31f466c740c61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5215 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 diff --git a/docs/_images/examples_2._tutorial_5_0.svg b/docs/_images/examples_2._tutorial_5_0.svg deleted file mode 100644 index 9250fa9..0000000 --- a/docs/_images/examples_2._tutorial_5_0.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - 2021-08-12T17:41:49.532633 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_7_0.svg b/docs/_images/examples_2._tutorial_7_0.svg deleted file mode 100644 index 3bad568..0000000 --- a/docs/_images/examples_2._tutorial_7_0.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - 2021-08-12T17:41:50.253708 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_images/examples_2._tutorial_9_0.png b/docs/_images/examples_2._tutorial_9_0.png new file mode 100644 index 0000000000000000000000000000000000000000..9cff5185694e6366fd1041c27f7d0f6d64e103c6 GIT binary patch literal 82834 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 z

+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 z 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 literal 0 HcmV?d00001 diff --git a/docs/_images/examples_2._tutorial_9_0.svg b/docs/_images/examples_2._tutorial_9_0.svg deleted file mode 100644 index 013f391..0000000 --- a/docs/_images/examples_2._tutorial_9_0.svg +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - - - 2021-08-12T17:41:51.186616 - image/svg+xml - - - Matplotlib v3.4.2, https://matplotlib.org/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/docs/_modules/cog_worker/distributed.html b/docs/_modules/cog_worker/distributed.html index 6caa9a1..1e621a1 100644 --- a/docs/_modules/cog_worker/distributed.html +++ b/docs/_modules/cog_worker/distributed.html @@ -1,14 +1,14 @@ - + - - cog_worker.distributed - Cog Worker 0.2.0 documentation - - - + + cog_worker.distributed - Cog Worker 0.3.0 documentation + + + @@ -67,7 +67,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -82,22 +82,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -111,6 +152,8 @@

Hide table of contents sidebar
+
Skip to content +
@@ -122,13 +165,14 @@
@@ -145,7 +189,7 @@ @@ -414,10 +468,10 @@

Source code for cog_worker.distributed

       
     
   
-
- - - +
+ + + \ No newline at end of file diff --git a/docs/_modules/cog_worker/manager.html b/docs/_modules/cog_worker/manager.html index 17edc17..1483e4e 100644 --- a/docs/_modules/cog_worker/manager.html +++ b/docs/_modules/cog_worker/manager.html @@ -1,14 +1,14 @@ - + - - cog_worker.manager - Cog Worker 0.2.0 documentation - - - + + cog_worker.manager - Cog Worker 0.3.0 documentation + + + @@ -67,7 +67,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -82,22 +82,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -111,6 +152,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -122,13 +165,14 @@
@@ -145,7 +189,7 @@ @@ -527,10 +581,10 @@

Source code for cog_worker.worker

       
     
   
-
- - - +
+ + + \ No newline at end of file diff --git a/docs/_modules/index.html b/docs/_modules/index.html index 96b7017..e559432 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -1,14 +1,14 @@ - + - - Overview: module code - Cog Worker 0.2.0 documentation - - - + + Overview: module code - Cog Worker 0.3.0 documentation + + + @@ -67,7 +67,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -82,22 +82,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -111,6 +152,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -122,13 +165,14 @@
@@ -145,7 +189,7 @@ -
- - - +
+ + + \ No newline at end of file diff --git a/docs/_sources/examples/4. stac-ndvi.ipynb.txt b/docs/_sources/examples/4. stac-ndvi.ipynb.txt deleted file mode 100644 index 19f7ccd..0000000 --- a/docs/_sources/examples/4. stac-ndvi.ipynb.txt +++ /dev/null @@ -1,63 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "source": [ - "# Compute Sentinel-2 NDVI with Stac and Dask" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 1. Install dependencies\n", - "\n", - "We'll use `stacsearch` to search for sentinel scenes in the AWS stac catalog." - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 2. Define the NDVI function\n" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "import satsearch\n", - "\n", - "def s2ndvi(worker):\n", - " search = satsearch.Search('https://earth-search.aws.element84.com/v0')\n", - "\n", - " # TODO" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 3. Preview the analysis" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 4. Execute the analysis in a Dask cluster" - ], - "metadata": {} - } - ], - "metadata": { - "orig_nbformat": 4, - "language_info": { - "name": "python" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} \ No newline at end of file diff --git a/docs/_static/basic.css b/docs/_static/basic.css index 7577acb..f316efc 100644 --- a/docs/_static/basic.css +++ b/docs/_static/basic.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ @@ -237,6 +237,10 @@ a.headerlink { visibility: hidden; } +a:visited { + color: #551A8B; +} + h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, @@ -670,6 +674,16 @@ dd { margin-left: 30px; } +.sig dd { + margin-top: 0px; + margin-bottom: 0px; +} + +.sig dl { + margin-top: 0px; + margin-bottom: 0px; +} + dl > dd:last-child, dl > dd:last-child > :last-child { margin-bottom: 0; @@ -738,6 +752,14 @@ abbr, acronym { cursor: help; } +.translated { + background-color: rgba(207, 255, 207, 0.2) +} + +.untranslated { + background-color: rgba(255, 207, 207, 0.2) +} + /* -- code displays --------------------------------------------------------- */ pre { diff --git a/docs/_static/debug.css b/docs/_static/debug.css new file mode 100644 index 0000000..74d4aec --- /dev/null +++ b/docs/_static/debug.css @@ -0,0 +1,69 @@ +/* + This CSS file should be overridden by the theme authors. It's + meant for debugging and developing the skeleton that this theme provides. +*/ +body { + font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, + "Apple Color Emoji", "Segoe UI Emoji"; + background: lavender; +} +.sb-announcement { + background: rgb(131, 131, 131); +} +.sb-announcement__inner { + background: black; + color: white; +} +.sb-header { + background: lightskyblue; +} +.sb-header__inner { + background: royalblue; + color: white; +} +.sb-header-secondary { + background: lightcyan; +} +.sb-header-secondary__inner { + background: cornflowerblue; + color: white; +} +.sb-sidebar-primary { + background: lightgreen; +} +.sb-main { + background: blanchedalmond; +} +.sb-main__inner { + background: antiquewhite; +} +.sb-header-article { + background: lightsteelblue; +} +.sb-article-container { + background: snow; +} +.sb-article-main { + background: white; +} +.sb-footer-article { + background: lightpink; +} +.sb-sidebar-secondary { + background: lightgoldenrodyellow; +} +.sb-footer-content { + background: plum; +} +.sb-footer-content__inner { + background: palevioletred; +} +.sb-footer { + background: pink; +} +.sb-footer__inner { + background: salmon; +} +.sb-article { + background: white; +} diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js index d06a71d..4d67807 100644 --- a/docs/_static/doctools.js +++ b/docs/_static/doctools.js @@ -4,7 +4,7 @@ * * Base JavaScript utilities for all Sphinx HTML documentation. * - * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 8c1afeb..7254ddd 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,5 @@ -var DOCUMENTATION_OPTIONS = { - URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '0.2.0', +const DOCUMENTATION_OPTIONS = { + VERSION: '0.3.0', LANGUAGE: 'en', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/_static/jquery-3.5.1.js b/docs/_static/jquery-3.5.1.js deleted file mode 100644 index 5093733..0000000 --- a/docs/_static/jquery-3.5.1.js +++ /dev/null @@ -1,10872 +0,0 @@ -/*! - * jQuery JavaScript Library v3.5.1 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2020-05-04T22:49Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var flat = arr.flat ? function( array ) { - return arr.flat.call( array ); -} : function( array ) { - return arr.concat.apply( [], array ); -}; - - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - -var isFunction = function isFunction( obj ) { - - // Support: Chrome <=57, Firefox <=52 - // In some browsers, typeof returns "function" for HTML elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - -var document = window.document; - - - - var preservedScriptAttributes = { - type: true, - src: true, - nonce: true, - noModule: true - }; - - function DOMEval( code, node, doc ) { - doc = doc || document; - - var i, val, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - - // Support: Firefox 64+, Edge 18+ - // Some browsers don't support the "nonce" property on scripts. - // On the other hand, just using `getAttribute` is not enough as - // the `nonce` attribute is reset to an empty string whenever it - // becomes browsing-context connected. - // See https://github.com/whatwg/html/issues/2369 - // See https://html.spec.whatwg.org/#nonce-attributes - // The `node.getAttribute` check was added for the sake of - // `jQuery.globalEval` so that it can fake a nonce-containing node - // via an object. - val = node[ i ] || node.getAttribute && node.getAttribute( i ); - if ( val ) { - script.setAttribute( i, val ); - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.5.1", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } - - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - even: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return ( i + 1 ) % 2; - } ) ); - }, - - odd: function() { - return this.pushStack( jQuery.grep( this, function( _elem, i ) { - return i % 2; - } ) ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - copy = options[ name ]; - - // Prevent Object.prototype pollution - // Prevent never-ending loop - if ( name === "__proto__" || target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - src = target[ name ]; - - // Ensure proper type for the source value - if ( copyIsArray && !Array.isArray( src ) ) { - clone = []; - } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { - clone = {}; - } else { - clone = src; - } - copyIsArray = false; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - // Evaluates a script in a provided context; falls back to the global one - // if not specified. - globalEval: function( code, options, doc ) { - DOMEval( code, { nonce: options && options.nonce }, doc ); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return flat( ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( _i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); - - if ( isFunction( obj ) || isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.5 - * https://sizzlejs.com/ - * - * Copyright JS Foundation and other contributors - * Released under the MIT license - * https://js.foundation/ - * - * Date: 2020-03-14 - */ -( function( window ) { -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - nonnativeSelectorCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ( {} ).hasOwnProperty, - arr = [], - pop = arr.pop, - pushNative = arr.push, - push = arr.push, - slice = arr.slice, - - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[ i ] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + - "ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram - identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + - "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - - // "Attribute values must be CSS identifiers [capture 5] - // or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + - whitespace + "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + - whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + - "*" ), - rdescend = new RegExp( whitespace + "|>" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + - whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + - whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + - "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + - "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rhtml = /HTML$/i, - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), - funescape = function( escape, nonHex ) { - var high = "0x" + escape.slice( 1 ) - 0x10000; - - return nonHex ? - - // Strip the backslash prefix from a non-hex escape sequence - nonHex : - - // Replace a hexadecimal escape sequence with the encoded Unicode code point - // Support: IE <=11+ - // For values outside the Basic Multilingual Plane (BMP), manually construct a - // surrogate pair - high < 0 ? - String.fromCharCode( high + 0x10000 ) : - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + - ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - inDisabledFieldset = addCombinator( - function( elem ) { - return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - ( arr = slice.call( preferredDoc.childNodes ) ), - preferredDoc.childNodes - ); - - // Support: Android<4.0 - // Detect silently failing push.apply - // eslint-disable-next-line no-unused-expressions - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - pushNative.apply( target, slice.call( els ) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - - // Can't trust NodeList.length - while ( ( target[ j++ ] = els[ i++ ] ) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - setDocument( context ); - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { - - // ID selector - if ( ( m = match[ 1 ] ) ) { - - // Document context - if ( nodeType === 9 ) { - if ( ( elem = context.getElementById( m ) ) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && ( elem = newContext.getElementById( m ) ) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[ 2 ] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !nonnativeSelectorCache[ selector + " " ] && - ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && - - // Support: IE 8 only - // Exclude object elements - ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { - - newSelector = selector; - newContext = context; - - // qSA considers elements outside a scoping root when evaluating child or - // descendant combinators, which is not what we want. - // In such cases, we work around the behavior by prefixing every selector in the - // list with an ID selector referencing the scope context. - // The technique has to be used as well when a leading combinator is used - // as such selectors are not recognized by querySelectorAll. - // Thanks to Andrew Dupont for this technique. - if ( nodeType === 1 && - ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - - // We can use :scope instead of the ID hack if the browser - // supports it & if we're not changing the context. - if ( newContext !== context || !support.scope ) { - - // Capture the context ID, setting it first if necessary - if ( ( nid = context.getAttribute( "id" ) ) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", ( nid = expando ) ); - } - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + - toSelector( groups[ i ] ); - } - newSelector = groups.join( "," ); - } - - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - nonnativeSelectorCache( selector, true ); - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return ( cache[ key + " " ] = value ); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement( "fieldset" ); - - try { - return !!fn( el ); - } catch ( e ) { - return false; - } finally { - - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split( "|" ), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[ i ] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( ( cur = cur.nextSibling ) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return ( name === "input" || name === "button" ) && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - inDisabledFieldset( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - -/** - * Returns a function to use in pseudos for positionals - * @param {Function} fn - */ -function createPositionalPseudo( fn ) { - return markFunction( function( argument ) { - argument = +argument; - return markFunction( function( seed, matches ) { - var j, - matchIndexes = fn( [], seed.length, argument ), - i = matchIndexes.length; - - // Match elements found at the specified indexes - while ( i-- ) { - if ( seed[ ( j = matchIndexes[ i ] ) ] ) { - seed[ j ] = !( matches[ j ] = seed[ j ] ); - } - } - } ); - } ); -} - -/** - * Checks a node for validity as a Sizzle context - * @param {Element|Object=} context - * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value - */ -function testContext( context ) { - return context && typeof context.getElementsByTagName !== "undefined" && context; -} - -// Expose support vars for convenience -support = Sizzle.support = {}; - -/** - * Detects XML nodes - * @param {Element|Object} elem An element or a document - * @returns {Boolean} True iff elem is a non-HTML XML node - */ -isXML = Sizzle.isXML = function( elem ) { - var namespace = elem.namespaceURI, - docElem = ( elem.ownerDocument || elem ).documentElement; - - // Support: IE <=8 - // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes - // https://bugs.jquery.com/ticket/4833 - return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); -}; - -/** - * Sets document-related variables once based on the current document - * @param {Element|Object} [doc] An element or document object to use to set the document - * @returns {Object} Returns the current document - */ -setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, - doc = node ? node.ownerDocument || node : preferredDoc; - - // Return early if doc is invalid or already selected - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { - return document; - } - - // Update global variables - document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9 - 11+, Edge 12 - 18+ - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( preferredDoc != document && - ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); - - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); - } - } - - // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, - // Safari 4 - 5 only, Opera <=11.6 - 12.x only - // IE/Edge & older browsers don't support the :scope pseudo-class. - // Support: Safari 6.0 only - // Safari 6.0 supports :scope but it's an alias of :root there. - support.scope = assert( function( el ) { - docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); - return typeof el.querySelectorAll !== "undefined" && - !el.querySelectorAll( ":scope fieldset div" ).length; - } ); - - /* Attributes - ---------------------------------------------------------------------- */ - - // Support: IE<8 - // Verify that getAttribute really returns attributes and not properties - // (excepting IE8 booleans) - support.attributes = assert( function( el ) { - el.className = "i"; - return !el.getAttribute( "className" ); - } ); - - /* getElement(s)By* - ---------------------------------------------------------------------- */ - - // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert( function( el ) { - el.appendChild( document.createComment( "" ) ); - return !el.getElementsByTagName( "*" ).length; - } ); - - // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); - - // Support: IE<10 - // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, - // so use a roundabout getElementsByName test - support.getById = assert( function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; - } ); - - // ID filter and find - if ( support.getById ) { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - return elem.getAttribute( "id" ) === attrId; - }; - }; - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; - } else { - Expr.filter[ "ID" ] = function( id ) { - var attrId = id.replace( runescape, funescape ); - return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode( "id" ); - return node && node.value === attrId; - }; - }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find[ "ID" ] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( ( elem = elems[ i++ ] ) ) { - node = elem.getAttributeNode( "id" ); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; - } - - // Tag - Expr.find[ "TAG" ] = support.getElementsByTagName ? - function( tag, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( tag ); - - // DocumentFragment nodes don't have gEBTN - } else if ( support.qsa ) { - return context.querySelectorAll( tag ); - } - } : - - function( tag, context ) { - var elem, - tmp = [], - i = 0, - - // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too - results = context.getElementsByTagName( tag ); - - // Filter out possible comments - if ( tag === "*" ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem.nodeType === 1 ) { - tmp.push( elem ); - } - } - - return tmp; - } - return results; - }; - - // Class - Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { - return context.getElementsByClassName( className ); - } - }; - - /* QSA/matchesSelector - ---------------------------------------------------------------------- */ - - // QSA and matchesSelector support - - // matchesSelector(:active) reports false when true (IE9/Opera 11.5) - rbuggyMatches = []; - - // qSa(:focus) reports false when true (Chrome 21) - // We allow this because of a bug in IE8/9 that throws an error - // whenever `document.activeElement` is accessed on an iframe - // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 - rbuggyQSA = []; - - if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { - - // Build QSA regex - // Regex strategy adopted from Diego Perini - assert( function( el ) { - - var input; - - // Select is set to empty string on purpose - // This is to test IE's treatment of not explicitly - // setting a boolean content attribute, - // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - ""; - - // Support: IE8, Opera 11-12.16 - // Nothing should be selected when empty strings follow ^= or $= or *= - // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { - rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); - } - - // Support: IE8 - // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll( "[selected]" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); - } - - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { - rbuggyQSA.push( "~=" ); - } - - // Support: IE 11+, Edge 15 - 18+ - // IE 11/Edge don't find elements on a `[name='']` query in some cases. - // Adding a temporary attribute to the document before the selection works - // around the issue. - // Interestingly, IE 10 & older don't seem to have the issue. - input = document.createElement( "input" ); - input.setAttribute( "name", "" ); - el.appendChild( input ); - if ( !el.querySelectorAll( "[name='']" ).length ) { - rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + - whitespace + "*(?:''|\"\")" ); - } - - // Webkit/Opera - :checked should return selected option elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll( ":checked" ).length ) { - rbuggyQSA.push( ":checked" ); - } - - // Support: Safari 8+, iOS 8+ - // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { - rbuggyQSA.push( ".#.+[+~]" ); - } - - // Support: Firefox <=3.6 - 5 only - // Old Firefox doesn't throw on a badly-escaped identifier. - el.querySelectorAll( "\\\f" ); - rbuggyQSA.push( "[\\r\\n\\f]" ); - } ); - - assert( function( el ) { - el.innerHTML = "" + - ""; - - // Support: Windows 8 Native Apps - // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement( "input" ); - input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); - - // Support: IE8 - // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll( "[name=d]" ).length ) { - rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); - } - - // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) - // IE8 throws error here and will not see later tests - if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: Opera 10 - 11 only - // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll( "*,:x" ); - rbuggyQSA.push( ",.*:" ); - } ); - } - - if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || - docElem.webkitMatchesSelector || - docElem.mozMatchesSelector || - docElem.oMatchesSelector || - docElem.msMatchesSelector ) ) ) ) { - - assert( function( el ) { - - // Check to see if it's possible to do matchesSelector - // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); - - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); - rbuggyMatches.push( "!=", pseudos ); - } ); - } - - rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); - rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); - - /* Contains - ---------------------------------------------------------------------- */ - hasCompare = rnative.test( docElem.compareDocumentPosition ); - - // Element contains another - // Purposefully self-exclusive - // As in, an element does not contain itself - contains = hasCompare || rnative.test( docElem.contains ) ? - function( a, b ) { - var adown = a.nodeType === 9 ? a.documentElement : a, - bup = b && b.parentNode; - return a === bup || !!( bup && bup.nodeType === 1 && ( - adown.contains ? - adown.contains( bup ) : - a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 - ) ); - } : - function( a, b ) { - if ( b ) { - while ( ( b = b.parentNode ) ) { - if ( b === a ) { - return true; - } - } - } - return false; - }; - - /* Sorting - ---------------------------------------------------------------------- */ - - // Document order sorting - sortOrder = hasCompare ? - function( a, b ) { - - // Flag for duplicate removal - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - // Sort on method existence if only one input has compareDocumentPosition - var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; - if ( compare ) { - return compare; - } - - // Calculate position if both inputs belong to the same document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? - a.compareDocumentPosition( b ) : - - // Otherwise we know they are disconnected - 1; - - // Disconnected nodes - if ( compare & 1 || - ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { - - // Choose the first element that is related to our preferred document - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( a == document || a.ownerDocument == preferredDoc && - contains( preferredDoc, a ) ) { - return -1; - } - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( b == document || b.ownerDocument == preferredDoc && - contains( preferredDoc, b ) ) { - return 1; - } - - // Maintain original order - return sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - } - - return compare & 4 ? -1 : 1; - } : - function( a, b ) { - - // Exit early if the nodes are identical - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - var cur, - i = 0, - aup = a.parentNode, - bup = b.parentNode, - ap = [ a ], - bp = [ b ]; - - // Parentless nodes are either documents or disconnected - if ( !aup || !bup ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - return a == document ? -1 : - b == document ? 1 : - /* eslint-enable eqeqeq */ - aup ? -1 : - bup ? 1 : - sortInput ? - ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : - 0; - - // If the nodes are siblings, we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - } - - // Otherwise we need full lists of their ancestors for comparison - cur = a; - while ( ( cur = cur.parentNode ) ) { - ap.unshift( cur ); - } - cur = b; - while ( ( cur = cur.parentNode ) ) { - bp.unshift( cur ); - } - - // Walk down the tree looking for a discrepancy - while ( ap[ i ] === bp[ i ] ) { - i++; - } - - return i ? - - // Do a sibling check if the nodes have a common ancestor - siblingCheck( ap[ i ], bp[ i ] ) : - - // Otherwise nodes in our document sort first - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - /* eslint-disable eqeqeq */ - ap[ i ] == preferredDoc ? -1 : - bp[ i ] == preferredDoc ? 1 : - /* eslint-enable eqeqeq */ - 0; - }; - - return document; -}; - -Sizzle.matches = function( expr, elements ) { - return Sizzle( expr, null, null, elements ); -}; - -Sizzle.matchesSelector = function( elem, expr ) { - setDocument( elem ); - - if ( support.matchesSelector && documentIsHTML && - !nonnativeSelectorCache[ expr + " " ] && - ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && - ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { - - try { - var ret = matches.call( elem, expr ); - - // IE 9's matchesSelector returns false on disconnected nodes - if ( ret || support.disconnectedMatch || - - // As well, disconnected nodes are said to be in a document - // fragment in IE 9 - elem.document && elem.document.nodeType !== 11 ) { - return ret; - } - } catch ( e ) { - nonnativeSelectorCache( expr, true ); - } - } - - return Sizzle( expr, document, null, [ elem ] ).length > 0; -}; - -Sizzle.contains = function( context, elem ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( context.ownerDocument || context ) != document ) { - setDocument( context ); - } - return contains( context, elem ); -}; - -Sizzle.attr = function( elem, name ) { - - // Set document vars if needed - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( ( elem.ownerDocument || elem ) != document ) { - setDocument( elem ); - } - - var fn = Expr.attrHandle[ name.toLowerCase() ], - - // Don't get fooled by Object.prototype properties (jQuery #13807) - val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? - fn( elem, name, !documentIsHTML ) : - undefined; - - return val !== undefined ? - val : - support.attributes || !documentIsHTML ? - elem.getAttribute( name ) : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; -}; - -Sizzle.escape = function( sel ) { - return ( sel + "" ).replace( rcssescape, fcssescape ); -}; - -Sizzle.error = function( msg ) { - throw new Error( "Syntax error, unrecognized expression: " + msg ); -}; - -/** - * Document sorting and removing duplicates - * @param {ArrayLike} results - */ -Sizzle.uniqueSort = function( results ) { - var elem, - duplicates = [], - j = 0, - i = 0; - - // Unless we *know* we can detect duplicates, assume their presence - hasDuplicate = !support.detectDuplicates; - sortInput = !support.sortStable && results.slice( 0 ); - results.sort( sortOrder ); - - if ( hasDuplicate ) { - while ( ( elem = results[ i++ ] ) ) { - if ( elem === results[ i ] ) { - j = duplicates.push( i ); - } - } - while ( j-- ) { - results.splice( duplicates[ j ], 1 ); - } - } - - // Clear input after sorting to release objects - // See https://github.com/jquery/sizzle/pull/225 - sortInput = null; - - return results; -}; - -/** - * Utility function for retrieving the text value of an array of DOM nodes - * @param {Array|Element} elem - */ -getText = Sizzle.getText = function( elem ) { - var node, - ret = "", - i = 0, - nodeType = elem.nodeType; - - if ( !nodeType ) { - - // If no nodeType, this is expected to be an array - while ( ( node = elem[ i++ ] ) ) { - - // Do not traverse comment nodes - ret += getText( node ); - } - } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { - - // Use textContent for elements - // innerText usage removed for consistency of new lines (jQuery #11153) - if ( typeof elem.textContent === "string" ) { - return elem.textContent; - } else { - - // Traverse its children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - ret += getText( elem ); - } - } - } else if ( nodeType === 3 || nodeType === 4 ) { - return elem.nodeValue; - } - - // Do not include comment or processing instruction nodes - - return ret; -}; - -Expr = Sizzle.selectors = { - - // Can be adjusted by the user - cacheLength: 50, - - createPseudo: markFunction, - - match: matchExpr, - - attrHandle: {}, - - find: {}, - - relative: { - ">": { dir: "parentNode", first: true }, - " ": { dir: "parentNode" }, - "+": { dir: "previousSibling", first: true }, - "~": { dir: "previousSibling" } - }, - - preFilter: { - "ATTR": function( match ) { - match[ 1 ] = match[ 1 ].replace( runescape, funescape ); - - // Move the given value to match[3] whether quoted or unquoted - match[ 3 ] = ( match[ 3 ] || match[ 4 ] || - match[ 5 ] || "" ).replace( runescape, funescape ); - - if ( match[ 2 ] === "~=" ) { - match[ 3 ] = " " + match[ 3 ] + " "; - } - - return match.slice( 0, 4 ); - }, - - "CHILD": function( match ) { - - /* matches from matchExpr["CHILD"] - 1 type (only|nth|...) - 2 what (child|of-type) - 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) - 4 xn-component of xn+y argument ([+-]?\d*n|) - 5 sign of xn-component - 6 x of xn-component - 7 sign of y-component - 8 y of y-component - */ - match[ 1 ] = match[ 1 ].toLowerCase(); - - if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { - - // nth-* requires argument - if ( !match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - // numeric x and y parameters for Expr.filter.CHILD - // remember that false/true cast respectively to 0/1 - match[ 4 ] = +( match[ 4 ] ? - match[ 5 ] + ( match[ 6 ] || 1 ) : - 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); - match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); - - // other types prohibit arguments - } else if ( match[ 3 ] ) { - Sizzle.error( match[ 0 ] ); - } - - return match; - }, - - "PSEUDO": function( match ) { - var excess, - unquoted = !match[ 6 ] && match[ 2 ]; - - if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { - return null; - } - - // Accept quoted arguments as-is - if ( match[ 3 ] ) { - match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; - - // Strip excess characters from unquoted arguments - } else if ( unquoted && rpseudo.test( unquoted ) && - - // Get excess from tokenize (recursively) - ( excess = tokenize( unquoted, true ) ) && - - // advance to the next closing parenthesis - ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { - - // excess is a negative index - match[ 0 ] = match[ 0 ].slice( 0, excess ); - match[ 2 ] = unquoted.slice( 0, excess ); - } - - // Return only captures needed by the pseudo filter method (type and argument) - return match.slice( 0, 3 ); - } - }, - - filter: { - - "TAG": function( nodeNameSelector ) { - var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); - return nodeNameSelector === "*" ? - function() { - return true; - } : - function( elem ) { - return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; - }; - }, - - "CLASS": function( className ) { - var pattern = classCache[ className + " " ]; - - return pattern || - ( pattern = new RegExp( "(^|" + whitespace + - ")" + className + "(" + whitespace + "|$)" ) ) && classCache( - className, function( elem ) { - return pattern.test( - typeof elem.className === "string" && elem.className || - typeof elem.getAttribute !== "undefined" && - elem.getAttribute( "class" ) || - "" - ); - } ); - }, - - "ATTR": function( name, operator, check ) { - return function( elem ) { - var result = Sizzle.attr( elem, name ); - - if ( result == null ) { - return operator === "!="; - } - if ( !operator ) { - return true; - } - - result += ""; - - /* eslint-disable max-len */ - - return operator === "=" ? result === check : - operator === "!=" ? result !== check : - operator === "^=" ? check && result.indexOf( check ) === 0 : - operator === "*=" ? check && result.indexOf( check ) > -1 : - operator === "$=" ? check && result.slice( -check.length ) === check : - operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : - operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : - false; - /* eslint-enable max-len */ - - }; - }, - - "CHILD": function( type, what, _argument, first, last ) { - var simple = type.slice( 0, 3 ) !== "nth", - forward = type.slice( -4 ) !== "last", - ofType = what === "of-type"; - - return first === 1 && last === 0 ? - - // Shortcut for :nth-*(n) - function( elem ) { - return !!elem.parentNode; - } : - - function( elem, _context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, - dir = simple !== forward ? "nextSibling" : "previousSibling", - parent = elem.parentNode, - name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; - - if ( parent ) { - - // :(first|last|only)-(child|of-type) - if ( simple ) { - while ( dir ) { - node = elem; - while ( ( node = node[ dir ] ) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - - return false; - } - } - - // Reverse direction for :only-* (if we haven't yet done so) - start = dir = type === "only" && !start && "nextSibling"; - } - return true; - } - - start = [ forward ? parent.firstChild : parent.lastChild ]; - - // non-xml :nth-child(...) stores cache data on `parent` - if ( forward && useCache ) { - - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; - node = nodeIndex && parent.childNodes[ nodeIndex ]; - - while ( ( node = ++nodeIndex && node && node[ dir ] || - - // Fallback to seeking `elem` from the start - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - // When found, cache indexes on `parent` and break - if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; - break; - } - } - - } else { - - // Use previously-cached element index if available - if ( useCache ) { - - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } - - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - - // Use the same loop as above to seek `elem` from the start - while ( ( node = ++nodeIndex && node && node[ dir ] || - ( diff = nodeIndex = 0 ) || start.pop() ) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || - ( node[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - ( outerCache[ node.uniqueID ] = {} ); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } - } - } - } - } - - // Incorporate the offset, then check against cycle size - diff -= last; - return diff === first || ( diff % first === 0 && diff / first >= 0 ); - } - }; - }, - - "PSEUDO": function( pseudo, argument ) { - - // pseudo-class names are case-insensitive - // http://www.w3.org/TR/selectors/#pseudo-classes - // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters - // Remember that setFilters inherits from pseudos - var args, - fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || - Sizzle.error( "unsupported pseudo: " + pseudo ); - - // The user may use createPseudo to indicate that - // arguments are needed to create the filter function - // just as Sizzle does - if ( fn[ expando ] ) { - return fn( argument ); - } - - // But maintain support for old signatures - if ( fn.length > 1 ) { - args = [ pseudo, pseudo, "", argument ]; - return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? - markFunction( function( seed, matches ) { - var idx, - matched = fn( seed, argument ), - i = matched.length; - while ( i-- ) { - idx = indexOf( seed, matched[ i ] ); - seed[ idx ] = !( matches[ idx ] = matched[ i ] ); - } - } ) : - function( elem ) { - return fn( elem, 0, args ); - }; - } - - return fn; - } - }, - - pseudos: { - - // Potentially complex pseudos - "not": markFunction( function( selector ) { - - // Trim the selector passed to compile - // to avoid treating leading and trailing - // spaces as combinators - var input = [], - results = [], - matcher = compile( selector.replace( rtrim, "$1" ) ); - - return matcher[ expando ] ? - markFunction( function( seed, matches, _context, xml ) { - var elem, - unmatched = matcher( seed, null, xml, [] ), - i = seed.length; - - // Match elements unmatched by `matcher` - while ( i-- ) { - if ( ( elem = unmatched[ i ] ) ) { - seed[ i ] = !( matches[ i ] = elem ); - } - } - } ) : - function( elem, _context, xml ) { - input[ 0 ] = elem; - matcher( input, null, xml, results ); - - // Don't keep the element (issue #299) - input[ 0 ] = null; - return !results.pop(); - }; - } ), - - "has": markFunction( function( selector ) { - return function( elem ) { - return Sizzle( selector, elem ).length > 0; - }; - } ), - - "contains": markFunction( function( text ) { - text = text.replace( runescape, funescape ); - return function( elem ) { - return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; - }; - } ), - - // "Whether an element is represented by a :lang() selector - // is based solely on the element's language value - // being equal to the identifier C, - // or beginning with the identifier C immediately followed by "-". - // The matching of C against the element's language value is performed case-insensitively. - // The identifier C does not have to be a valid language name." - // http://www.w3.org/TR/selectors/#lang-pseudo - "lang": markFunction( function( lang ) { - - // lang value must be a valid identifier - if ( !ridentifier.test( lang || "" ) ) { - Sizzle.error( "unsupported lang: " + lang ); - } - lang = lang.replace( runescape, funescape ).toLowerCase(); - return function( elem ) { - var elemLang; - do { - if ( ( elemLang = documentIsHTML ? - elem.lang : - elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { - - elemLang = elemLang.toLowerCase(); - return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; - } - } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); - return false; - }; - } ), - - // Miscellaneous - "target": function( elem ) { - var hash = window.location && window.location.hash; - return hash && hash.slice( 1 ) === elem.id; - }, - - "root": function( elem ) { - return elem === docElem; - }, - - "focus": function( elem ) { - return elem === document.activeElement && - ( !document.hasFocus || document.hasFocus() ) && - !!( elem.type || elem.href || ~elem.tabIndex ); - }, - - // Boolean properties - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), - - "checked": function( elem ) { - - // In CSS3, :checked should return both checked and selected elements - // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked - var nodeName = elem.nodeName.toLowerCase(); - return ( nodeName === "input" && !!elem.checked ) || - ( nodeName === "option" && !!elem.selected ); - }, - - "selected": function( elem ) { - - // Accessing this property makes selected-by-default - // options in Safari work properly - if ( elem.parentNode ) { - // eslint-disable-next-line no-unused-expressions - elem.parentNode.selectedIndex; - } - - return elem.selected === true; - }, - - // Contents - "empty": function( elem ) { - - // http://www.w3.org/TR/selectors/#empty-pseudo - // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), - // but not by others (comment: 8; processing instruction: 7; etc.) - // nodeType < 6 works because attributes (2) do not appear as children - for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { - if ( elem.nodeType < 6 ) { - return false; - } - } - return true; - }, - - "parent": function( elem ) { - return !Expr.pseudos[ "empty" ]( elem ); - }, - - // Element/input types - "header": function( elem ) { - return rheader.test( elem.nodeName ); - }, - - "input": function( elem ) { - return rinputs.test( elem.nodeName ); - }, - - "button": function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === "button" || name === "button"; - }, - - "text": function( elem ) { - var attr; - return elem.nodeName.toLowerCase() === "input" && - elem.type === "text" && - - // Support: IE<8 - // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" - ( ( attr = elem.getAttribute( "type" ) ) == null || - attr.toLowerCase() === "text" ); - }, - - // Position-in-collection - "first": createPositionalPseudo( function() { - return [ 0 ]; - } ), - - "last": createPositionalPseudo( function( _matchIndexes, length ) { - return [ length - 1 ]; - } ), - - "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { - return [ argument < 0 ? argument + length : argument ]; - } ), - - "even": createPositionalPseudo( function( matchIndexes, length ) { - var i = 0; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "odd": createPositionalPseudo( function( matchIndexes, length ) { - var i = 1; - for ( ; i < length; i += 2 ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? - argument + length : - argument > length ? - length : - argument; - for ( ; --i >= 0; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ), - - "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { - var i = argument < 0 ? argument + length : argument; - for ( ; ++i < length; ) { - matchIndexes.push( i ); - } - return matchIndexes; - } ) - } -}; - -Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; - -// Add button/input type pseudos -for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { - Expr.pseudos[ i ] = createInputPseudo( i ); -} -for ( i in { submit: true, reset: true } ) { - Expr.pseudos[ i ] = createButtonPseudo( i ); -} - -// Easy API for creating new setFilters -function setFilters() {} -setFilters.prototype = Expr.filters = Expr.pseudos; -Expr.setFilters = new setFilters(); - -tokenize = Sizzle.tokenize = function( selector, parseOnly ) { - var matched, match, tokens, type, - soFar, groups, preFilters, - cached = tokenCache[ selector + " " ]; - - if ( cached ) { - return parseOnly ? 0 : cached.slice( 0 ); - } - - soFar = selector; - groups = []; - preFilters = Expr.preFilter; - - while ( soFar ) { - - // Comma and first run - if ( !matched || ( match = rcomma.exec( soFar ) ) ) { - if ( match ) { - - // Don't consume trailing commas as valid - soFar = soFar.slice( match[ 0 ].length ) || soFar; - } - groups.push( ( tokens = [] ) ); - } - - matched = false; - - // Combinators - if ( ( match = rcombinators.exec( soFar ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - - // Cast descendant combinators to space - type: match[ 0 ].replace( rtrim, " " ) - } ); - soFar = soFar.slice( matched.length ); - } - - // Filters - for ( type in Expr.filter ) { - if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || - ( match = preFilters[ type ]( match ) ) ) ) { - matched = match.shift(); - tokens.push( { - value: matched, - type: type, - matches: match - } ); - soFar = soFar.slice( matched.length ); - } - } - - if ( !matched ) { - break; - } - } - - // Return the length of the invalid excess - // if we're just parsing - // Otherwise, throw an error or return tokens - return parseOnly ? - soFar.length : - soFar ? - Sizzle.error( selector ) : - - // Cache the tokens - tokenCache( selector, groups ).slice( 0 ); -}; - -function toSelector( tokens ) { - var i = 0, - len = tokens.length, - selector = ""; - for ( ; i < len; i++ ) { - selector += tokens[ i ].value; - } - return selector; -} - -function addCombinator( matcher, combinator, base ) { - var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", - doneName = done++; - - return combinator.first ? - - // Check against closest ancestor/preceding element - function( elem, context, xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - return matcher( elem, context, xml ); - } - } - return false; - } : - - // Check against all ancestor/preceding elements - function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, - newCache = [ dirruns, doneName ]; - - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching - if ( xml ) { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - if ( matcher( elem, context, xml ) ) { - return true; - } - } - } - } else { - while ( ( elem = elem[ dir ] ) ) { - if ( elem.nodeType === 1 || checkNonElements ) { - outerCache = elem[ expando ] || ( elem[ expando ] = {} ); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || - ( outerCache[ elem.uniqueID ] = {} ); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( ( oldCache = uniqueCache[ key ] ) && - oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { - - // Assign to newCache so results back-propagate to previous elements - return ( newCache[ 2 ] = oldCache[ 2 ] ); - } else { - - // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; - - // A match means we're done; a fail means we have to keep checking - if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { - return true; - } - } - } - } - } - return false; - }; -} - -function elementMatcher( matchers ) { - return matchers.length > 1 ? - function( elem, context, xml ) { - var i = matchers.length; - while ( i-- ) { - if ( !matchers[ i ]( elem, context, xml ) ) { - return false; - } - } - return true; - } : - matchers[ 0 ]; -} - -function multipleContexts( selector, contexts, results ) { - var i = 0, - len = contexts.length; - for ( ; i < len; i++ ) { - Sizzle( selector, contexts[ i ], results ); - } - return results; -} - -function condense( unmatched, map, filter, context, xml ) { - var elem, - newUnmatched = [], - i = 0, - len = unmatched.length, - mapped = map != null; - - for ( ; i < len; i++ ) { - if ( ( elem = unmatched[ i ] ) ) { - if ( !filter || filter( elem, context, xml ) ) { - newUnmatched.push( elem ); - if ( mapped ) { - map.push( i ); - } - } - } - } - - return newUnmatched; -} - -function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { - if ( postFilter && !postFilter[ expando ] ) { - postFilter = setMatcher( postFilter ); - } - if ( postFinder && !postFinder[ expando ] ) { - postFinder = setMatcher( postFinder, postSelector ); - } - return markFunction( function( seed, results, context, xml ) { - var temp, i, elem, - preMap = [], - postMap = [], - preexisting = results.length, - - // Get initial elements from seed or context - elems = seed || multipleContexts( - selector || "*", - context.nodeType ? [ context ] : context, - [] - ), - - // Prefilter to get matcher input, preserving a map for seed-results synchronization - matcherIn = preFilter && ( seed || !selector ) ? - condense( elems, preMap, preFilter, context, xml ) : - elems, - - matcherOut = matcher ? - - // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, - postFinder || ( seed ? preFilter : preexisting || postFilter ) ? - - // ...intermediate processing is necessary - [] : - - // ...otherwise use results directly - results : - matcherIn; - - // Find primary matches - if ( matcher ) { - matcher( matcherIn, matcherOut, context, xml ); - } - - // Apply postFilter - if ( postFilter ) { - temp = condense( matcherOut, postMap ); - postFilter( temp, [], context, xml ); - - // Un-match failing elements by moving them back to matcherIn - i = temp.length; - while ( i-- ) { - if ( ( elem = temp[ i ] ) ) { - matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); - } - } - } - - if ( seed ) { - if ( postFinder || preFilter ) { - if ( postFinder ) { - - // Get the final matcherOut by condensing this intermediate into postFinder contexts - temp = []; - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) ) { - - // Restore matcherIn since elem is not yet a final match - temp.push( ( matcherIn[ i ] = elem ) ); - } - } - postFinder( null, ( matcherOut = [] ), temp, xml ); - } - - // Move matched elements from seed to results to keep them synchronized - i = matcherOut.length; - while ( i-- ) { - if ( ( elem = matcherOut[ i ] ) && - ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { - - seed[ temp ] = !( results[ temp ] = elem ); - } - } - } - - // Add elements to results, through postFinder if defined - } else { - matcherOut = condense( - matcherOut === results ? - matcherOut.splice( preexisting, matcherOut.length ) : - matcherOut - ); - if ( postFinder ) { - postFinder( null, results, matcherOut, xml ); - } else { - push.apply( results, matcherOut ); - } - } - } ); -} - -function matcherFromTokens( tokens ) { - var checkContext, matcher, j, - len = tokens.length, - leadingRelative = Expr.relative[ tokens[ 0 ].type ], - implicitRelative = leadingRelative || Expr.relative[ " " ], - i = leadingRelative ? 1 : 0, - - // The foundational matcher ensures that elements are reachable from top-level context(s) - matchContext = addCombinator( function( elem ) { - return elem === checkContext; - }, implicitRelative, true ), - matchAnyContext = addCombinator( function( elem ) { - return indexOf( checkContext, elem ) > -1; - }, implicitRelative, true ), - matchers = [ function( elem, context, xml ) { - var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( - ( checkContext = context ).nodeType ? - matchContext( elem, context, xml ) : - matchAnyContext( elem, context, xml ) ); - - // Avoid hanging onto element (issue #299) - checkContext = null; - return ret; - } ]; - - for ( ; i < len; i++ ) { - if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { - matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; - } else { - matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); - - // Return special upon seeing a positional matcher - if ( matcher[ expando ] ) { - - // Find the next relative operator (if any) for proper handling - j = ++i; - for ( ; j < len; j++ ) { - if ( Expr.relative[ tokens[ j ].type ] ) { - break; - } - } - return setMatcher( - i > 1 && elementMatcher( matchers ), - i > 1 && toSelector( - - // If the preceding token was a descendant combinator, insert an implicit any-element `*` - tokens - .slice( 0, i - 1 ) - .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) - ).replace( rtrim, "$1" ), - matcher, - i < j && matcherFromTokens( tokens.slice( i, j ) ), - j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), - j < len && toSelector( tokens ) - ); - } - matchers.push( matcher ); - } - } - - return elementMatcher( matchers ); -} - -function matcherFromGroupMatchers( elementMatchers, setMatchers ) { - var bySet = setMatchers.length > 0, - byElement = elementMatchers.length > 0, - superMatcher = function( seed, context, xml, results, outermost ) { - var elem, j, matcher, - matchedCount = 0, - i = "0", - unmatched = seed && [], - setMatched = [], - contextBackup = outermostContext, - - // We must always have either seed elements or outermost context - elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), - - // Use integer dirruns iff this is the outermost matcher - dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), - len = elems.length; - - if ( outermost ) { - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - outermostContext = context == document || context || outermost; - } - - // Add elements passing elementMatchers directly to results - // Support: IE<9, Safari - // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id - for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { - if ( byElement && elem ) { - j = 0; - - // Support: IE 11+, Edge 17 - 18+ - // IE/Edge sometimes throw a "Permission denied" error when strict-comparing - // two documents; shallow comparisons work. - // eslint-disable-next-line eqeqeq - if ( !context && elem.ownerDocument != document ) { - setDocument( elem ); - xml = !documentIsHTML; - } - while ( ( matcher = elementMatchers[ j++ ] ) ) { - if ( matcher( elem, context || document, xml ) ) { - results.push( elem ); - break; - } - } - if ( outermost ) { - dirruns = dirrunsUnique; - } - } - - // Track unmatched elements for set filters - if ( bySet ) { - - // They will have gone through all possible matchers - if ( ( elem = !matcher && elem ) ) { - matchedCount--; - } - - // Lengthen the array for every element, matched or not - if ( seed ) { - unmatched.push( elem ); - } - } - } - - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. - if ( bySet && i !== matchedCount ) { - j = 0; - while ( ( matcher = setMatchers[ j++ ] ) ) { - matcher( unmatched, setMatched, context, xml ); - } - - if ( seed ) { - - // Reintegrate element matches to eliminate the need for sorting - if ( matchedCount > 0 ) { - while ( i-- ) { - if ( !( unmatched[ i ] || setMatched[ i ] ) ) { - setMatched[ i ] = pop.call( results ); - } - } - } - - // Discard index placeholder values to get only actual matches - setMatched = condense( setMatched ); - } - - // Add matches to results - push.apply( results, setMatched ); - - // Seedless set matches succeeding multiple successful matchers stipulate sorting - if ( outermost && !seed && setMatched.length > 0 && - ( matchedCount + setMatchers.length ) > 1 ) { - - Sizzle.uniqueSort( results ); - } - } - - // Override manipulation of globals by nested matchers - if ( outermost ) { - dirruns = dirrunsUnique; - outermostContext = contextBackup; - } - - return unmatched; - }; - - return bySet ? - markFunction( superMatcher ) : - superMatcher; -} - -compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { - var i, - setMatchers = [], - elementMatchers = [], - cached = compilerCache[ selector + " " ]; - - if ( !cached ) { - - // Generate a function of recursive functions that can be used to check each element - if ( !match ) { - match = tokenize( selector ); - } - i = match.length; - while ( i-- ) { - cached = matcherFromTokens( match[ i ] ); - if ( cached[ expando ] ) { - setMatchers.push( cached ); - } else { - elementMatchers.push( cached ); - } - } - - // Cache the compiled function - cached = compilerCache( - selector, - matcherFromGroupMatchers( elementMatchers, setMatchers ) - ); - - // Save selector and tokenization - cached.selector = selector; - } - return cached; -}; - -/** - * A low-level selection function that works with Sizzle's compiled - * selector functions - * @param {String|Function} selector A selector or a pre-compiled - * selector function built with Sizzle.compile - * @param {Element} context - * @param {Array} [results] - * @param {Array} [seed] A set of elements to match against - */ -select = Sizzle.select = function( selector, context, results, seed ) { - var i, tokens, token, type, find, - compiled = typeof selector === "function" && selector, - match = !seed && tokenize( ( selector = compiled.selector || selector ) ); - - results = results || []; - - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) - if ( match.length === 1 ) { - - // Reduce context if the leading compound selector is an ID - tokens = match[ 0 ] = match[ 0 ].slice( 0 ); - if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { - - context = ( Expr.find[ "ID" ]( token.matches[ 0 ] - .replace( runescape, funescape ), context ) || [] )[ 0 ]; - if ( !context ) { - return results; - - // Precompiled matchers will still verify ancestry, so step up a level - } else if ( compiled ) { - context = context.parentNode; - } - - selector = selector.slice( tokens.shift().value.length ); - } - - // Fetch a seed set for right-to-left matching - i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; - while ( i-- ) { - token = tokens[ i ]; - - // Abort if we hit a combinator - if ( Expr.relative[ ( type = token.type ) ] ) { - break; - } - if ( ( find = Expr.find[ type ] ) ) { - - // Search, expanding context for leading sibling combinators - if ( ( seed = find( - token.matches[ 0 ].replace( runescape, funescape ), - rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || - context - ) ) ) { - - // If seed is empty or no tokens remain, we can return early - tokens.splice( i, 1 ); - selector = seed.length && toSelector( tokens ); - if ( !selector ) { - push.apply( results, seed ); - return results; - } - - break; - } - } - } - } - - // Compile and execute a filtering function if one is not provided - // Provide `match` to avoid retokenization if we modified the selector above - ( compiled || compile( selector, match ) )( - seed, - context, - !documentIsHTML, - results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context - ); - return results; -}; - -// One-time assignments - -// Sort stability -support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; - -// Support: Chrome 14-35+ -// Always assume duplicates if they aren't passed to the comparison function -support.detectDuplicates = !!hasDuplicate; - -// Initialize against the default document -setDocument(); - -// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) -// Detached nodes confoundingly follow *each other* -support.sortDetached = assert( function( el ) { - - // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; -} ); - -// Support: IE<8 -// Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert( function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute( "href" ) === "#"; -} ) ) { - addHandle( "type|href|height|width", function( elem, name, isXML ) { - if ( !isXML ) { - return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); - } - } ); -} - -// Support: IE<9 -// Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert( function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; -} ) ) { - addHandle( "value", function( elem, _name, isXML ) { - if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { - return elem.defaultValue; - } - } ); -} - -// Support: IE<9 -// Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert( function( el ) { - return el.getAttribute( "disabled" ) == null; -} ) ) { - addHandle( booleans, function( elem, name, isXML ) { - var val; - if ( !isXML ) { - return elem[ name ] === true ? name.toLowerCase() : - ( val = elem.getAttributeNode( name ) ) && val.specified ? - val.value : - null; - } - } ); -} - -return Sizzle; - -} )( window ); - - - -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; - - - - -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; - - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); - - - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { - return jQuery.grep( elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) !== not; - } ); - } - - // Single element - if ( qualifier.nodeType ) { - return jQuery.grep( elements, function( elem ) { - return ( elem === qualifier ) !== not; - } ); - } - - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); - } - - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); -} - -jQuery.filter = function( expr, elems, not ) { - var elem = elems[ 0 ]; - - if ( not ) { - expr = ":not(" + expr + ")"; - } - - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); -}; - -jQuery.fn.extend( { - find: function( selector ) { - var i, ret, - len = this.length, - self = this; - - if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { - for ( i = 0; i < len; i++ ) { - if ( jQuery.contains( self[ i ], this ) ) { - return true; - } - } - } ) ); - } - - ret = this.pushStack( [] ); - - for ( i = 0; i < len; i++ ) { - jQuery.find( selector, self[ i ], ret ); - } - - return len > 1 ? jQuery.uniqueSort( ret ) : ret; - }, - filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); - }, - not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); - }, - is: function( selector ) { - return !!winnow( - this, - - // If this is a positional/relative selector, check membership in the returned set - // so $("p:first").is("p:last") won't return true for a doc with two "p". - typeof selector === "string" && rneedsContext.test( selector ) ? - jQuery( selector ) : - selector || [], - false - ).length; - } -} ); - - -// Initialize a jQuery object - - -// A central reference to the root jQuery(document) -var rootjQuery, - - // A simple way to check for HTML strings - // Prioritize #id over to avoid XSS via location.hash (#9521) - // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, - - init = jQuery.fn.init = function( selector, context, root ) { - var match, elem; - - // HANDLE: $(""), $(null), $(undefined), $(false) - if ( !selector ) { - return this; - } - - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - - // Handle HTML strings - if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - - // Assume that strings that start and end with <> are HTML and skip the regex check - match = [ null, selector, null ]; - - } else { - match = rquickExpr.exec( selector ); - } - - // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { - - // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; - - // Option to run scripts is true for back-compat - // Intentionally let the error be thrown if parseHTML is not present - jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], - context && context.nodeType ? context.ownerDocument || context : document, - true - ) ); - - // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { - for ( match in context ) { - - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { - this[ match ]( context[ match ] ); - - // ...and otherwise set as attributes - } else { - this.attr( match, context[ match ] ); - } - } - } - - return this; - - // HANDLE: $(#id) - } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { - - // Inject the element directly into the jQuery object - this[ 0 ] = elem; - this.length = 1; - } - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(DOMElement) - } else if ( selector.nodeType ) { - this[ 0 ] = selector; - this.length = 1; - return this; - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - - // Execute immediately if ready is not present - selector( jQuery ); - } - - return jQuery.makeArray( selector, this ); - }; - -// Give the init function the jQuery prototype for later instantiation -init.prototype = jQuery.fn; - -// Initialize central reference -rootjQuery = jQuery( document ); - - -var rparentsprev = /^(?:parents|prev(?:Until|All))/, - - // Methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend( { - has: function( target ) { - var targets = jQuery( target, this ), - l = targets.length; - - return this.filter( function() { - var i = 0; - for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { - return true; - } - } - } ); - }, - - closest: function( selectors, context ) { - var cur, - i = 0, - l = this.length, - matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { - - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : - - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { - - matched.push( cur ); - break; - } - } - } - } - - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); - }, - - // Determine the position of an element within the set - index: function( elem ) { - - // No argument, return index in parent - if ( !elem ) { - return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; - } - - // Index in selector - if ( typeof elem === "string" ) { - return indexOf.call( jQuery( elem ), this[ 0 ] ); - } - - // Locate the position of the desired element - return indexOf.call( this, - - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[ 0 ] : elem - ); - }, - - add: function( selector, context ) { - return this.pushStack( - jQuery.uniqueSort( - jQuery.merge( this.get(), jQuery( selector, context ) ) - ) - ); - }, - - addBack: function( selector ) { - return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) - ); - } -} ); - -function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} - return cur; -} - -jQuery.each( { - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, _i, until ) { - return dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return sibling( elem, "nextSibling" ); - }, - prev: function( elem ) { - return sibling( elem, "previousSibling" ); - }, - nextAll: function( elem ) { - return dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, _i, until ) { - return dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, _i, until ) { - return dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); - }, - children: function( elem ) { - return siblings( elem.firstChild ); - }, - contents: function( elem ) { - if ( elem.contentDocument != null && - - // Support: IE 11+ - // elements with no `data` attribute has an object - // `contentDocument` with a `null` prototype. - getProto( elem.contentDocument ) ) { - - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var matched = jQuery.map( this, fn, until ); - - if ( name.slice( -5 ) !== "Until" ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - matched = jQuery.filter( selector, matched ); - } - - if ( this.length > 1 ) { - - // Remove duplicates - if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); - } - - // Reverse order for parents* and prev-derivatives - if ( rparentsprev.test( name ) ) { - matched.reverse(); - } - } - - return this.pushStack( matched ); - }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); - - - -// Convert String-formatted options into Object-formatted ones -function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { - object[ flag ] = true; - } ); - return object; -} - -/* - * Create a callback list using the following parameters: - * - * options: an optional list of space-separated options that will change how - * the callback list behaves or a more traditional option object - * - * By default a callback list will act like an event callback list and can be - * "fired" multiple times. - * - * Possible options: - * - * once: will ensure the callback list can only be fired once (like a Deferred) - * - * memory: will keep track of previous values and will call any callback added - * after the list has been fired right away with the latest "memorized" - * values (like a Deferred) - * - * unique: will ensure a callback can only be added once (no duplicate in the list) - * - * stopOnFalse: interrupt callings when a callback returns false - * - */ -jQuery.Callbacks = function( options ) { - - // Convert options from String-formatted to Object-formatted if needed - // (we check in cache first) - options = typeof options === "string" ? - createOptions( options ) : - jQuery.extend( {}, options ); - - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists - memory, - - // Flag to know if list was already fired - fired, - - // Flag to prevent firing - locked, - - // Actual callback list - list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - - // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } - } - } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { - list = []; - - // Otherwise, this object is spent - } else { - list = ""; - } - } - }, - - // Actual Callbacks object - self = { - - // Add a callback or a collection of callbacks to the list - add: function() { - if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { - jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { - if ( !options.unique || !self.has( arg ) ) { - list.push( arg ); - } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - - // Inspect recursively - add( arg ); - } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); - } - } - return this; - }, - - // Remove a callback from the list - remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; - } - } - } ); - return this; - }, - - // Check if a given callback is in the list. - // If no argument is given, return whether or not list has callbacks attached. - has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; - }, - - // Remove all callbacks from the list - empty: function() { - if ( list ) { - list = []; - } - return this; - }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values - disable: function() { - locked = queue = []; - list = memory = ""; - return this; - }, - disabled: function() { - return !list; - }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions - lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; - } - return this; - }, - locked: function() { - return !!locked; - }, - - // Call all callbacks with the given context and arguments - fireWith: function( context, args ) { - if ( !locked ) { - args = args || []; - args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); - } - } - return this; - }, - - // Call all the callbacks with the given arguments - fire: function() { - self.fireWith( this, arguments ); - return this; - }, - - // To know if the callbacks have already been called at least once - fired: function() { - return !!fired; - } - }; - - return self; -}; - - -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { - - Deferred: function( func ) { - var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] - ], - state = "pending", - promise = { - state: function() { - return state; - }, - always: function() { - deferred.done( arguments ).fail( arguments ); - return this; - }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { - var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { - jQuery.each( tuples, function( _i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { - var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { - returned.promise() - .progress( newDefer.notify ) - .done( newDefer.resolve ) - .fail( newDefer.reject ); - } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); - } - } ); - } ); - fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); - }, - - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj ) { - return obj != null ? jQuery.extend( obj, promise ) : promise; - } - }, - deferred = {}; - - // Add list-specific methods - jQuery.each( tuples, function( i, tuple ) { - var list = tuple[ 2 ], - stateString = tuple[ 5 ]; - - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; - - // Handle state - if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, - - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); - } - - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); - return this; - }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); - - // Make the deferred a promise - promise.promise( deferred ); - - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - - // All done! - return deferred; - }, - - // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), - resolveValues = slice.call( arguments ), - - // the master Deferred - master = jQuery.Deferred(), - - // subordinate callback factory - updateFunc = function( i ) { - return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); - } - }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); - - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { - - return master.then(); - } - } - - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); - } - - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); - } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - - - -// The deferred used on DOM ready -var readyList = jQuery.Deferred(); - -jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); - - return this; -}; - -jQuery.extend( { - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - - // Abort if there are pending holds or we're already ready - if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { - return; - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - } -} ); - -jQuery.ready.then = readyList.then; - -// The ready event handler and self cleanup method -function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); - jQuery.ready(); -} - -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { - - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); - -} else { - - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} - - - - -// Multifunctional method to get and set values of a collection -// The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { - var i = 0, - len = elems.length, - bulk = key == null; - - // Sets many values - if ( toType( key ) === "object" ) { - chainable = true; - for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); - } - - // Sets one value - } else if ( value !== undefined ) { - chainable = true; - - if ( !isFunction( value ) ) { - raw = true; - } - - if ( bulk ) { - - // Bulk operations run against the entire set - if ( raw ) { - fn.call( elems, value ); - fn = null; - - // ...except when executing function values - } else { - bulk = fn; - fn = function( elem, _key, value ) { - return bulk.call( jQuery( elem ), value ); - }; - } - } - - if ( fn ) { - for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); - } - } - } - - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } - - return len ? fn( elems[ 0 ], key ) : emptyGet; -}; - - -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( _all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - - // Accepts only: - // - Node - // - Node.ELEMENT_NODE - // - Node.DOCUMENT_NODE - // - Object - // - Any - return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); -}; - - - - -function Data() { - this.expando = jQuery.expando + Data.uid++; -} - -Data.uid = 1; - -Data.prototype = { - - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; - - // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } - } - } - - return value; - }, - set: function( owner, data, value ) { - var prop, - cache = this.cache( owner ); - - // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) - if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; - - // Handle: [ owner, { properties } ] args - } else { - - // Copy the properties one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; - } - } - return cache; - }, - get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : - - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; - }, - access: function( owner, key, value ) { - - // In cases where either: - // - // 1. No key was specified - // 2. A string key was specified, but no value provided - // - // Take the "read" path and allow the get method to determine - // which value to return, respectively either: - // - // 1. The entire cache object - // 2. The data stored at the key - // - if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { - - return this.get( owner, key ); - } - - // When the key is not a string, or both a key and value - // are specified, set or extend (existing objects) with either: - // - // 1. An object of properties - // 2. A key and value - // - this.set( owner, key, value ); - - // Since the "set" path can have two possible entry points - // return the expected data based on which path was taken[*] - return value !== undefined ? value : key; - }, - remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } - - if ( key !== undefined ) { - - // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); - } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); - } - - i = key.length; - - while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting properties - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; - } - } - }, - hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); - } -}; -var dataPriv = new Data(); - -var dataUser = new Data(); - - - -// Implementation Summary -// -// 1. Enforce API surface and semantic compatibility with 1.9.x branch -// 2. Improve the module's maintainability by reducing the storage -// paths to a single mechanism. -// 3. Use the same single mechanism to support "private" and "user" data. -// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando properties) -// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 - -var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} - -function dataAttr( elem, key, data ) { - var name; - - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); - data = elem.getAttribute( name ); - - if ( typeof data === "string" ) { - try { - data = getData( data ); - } catch ( e ) {} - - // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); - } else { - data = undefined; - } - } - return data; -} - -jQuery.extend( { - hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); - }, - - data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); - }, - - removeData: function( elem, name ) { - dataUser.remove( elem, name ); - }, - - // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. - _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); - }, - - _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); - } -} ); - -jQuery.fn.extend( { - data: function( key, value ) { - var i, name, data, - elem = this[ 0 ], - attrs = elem && elem.attributes; - - // Gets all values - if ( key === undefined ) { - if ( this.length ) { - data = dataUser.get( elem ); - - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { - i = attrs.length; - while ( i-- ) { - - // Support: IE 11 only - // The attrs elements can be null (#14894) - if ( attrs[ i ] ) { - name = attrs[ i ].name; - if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); - dataAttr( elem, name, data[ name ] ); - } - } - } - dataPriv.set( elem, "hasDataAttrs", true ); - } - } - - return data; - } - - // Sets multiple values - if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); - } - - return access( this, function( value ) { - var data; - - // The calling jQuery object (element matches) is not empty - // (and therefore has an element appears at this[ 0 ]) and the - // `value` parameter was not undefined. An empty jQuery object - // will result in `undefined` for elem = this[ 0 ] which will - // throw an exception if an attempt to read a data cache is made. - if ( elem && value === undefined ) { - - // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); - if ( data !== undefined ) { - return data; - } - - // Attempt to "discover" the data in - // HTML5 custom data-* attrs - data = dataAttr( elem, key ); - if ( data !== undefined ) { - return data; - } - - // We tried really hard, but the data doesn't exist. - return; - } - - // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); - }, null, value, arguments.length > 1, null, true ); - }, - - removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); - } -} ); - - -jQuery.extend( { - queue: function( elem, type, data ) { - var queue; - - if ( elem ) { - type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); - } else { - queue.push( data ); - } - } - return queue || []; - } - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - startLength = queue.length, - fn = queue.shift(), - hooks = jQuery._queueHooks( elem, type ), - next = function() { - jQuery.dequeue( elem, type ); - }; - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - startLength--; - } - - if ( fn ) { - - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift( "inprogress" ); - } - - // Clear up the last queue stop function - delete hooks.stop; - fn.call( elem, next, hooks ); - } - - if ( !startLength && hooks ) { - hooks.empty.fire(); - } - }, - - // Not public - generate a queueHooks object, or return the current one - _queueHooks: function( elem, type ) { - var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); - } -} ); - -jQuery.fn.extend( { - queue: function( type, data ) { - var setter = 2; - - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - setter--; - } - - if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); - } - - return data === undefined ? - this : - this.each( function() { - var queue = jQuery.queue( this, type, data ); - - // Ensure a hooks for this queue - jQuery._queueHooks( this, type ); - - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - } ); - }, - dequeue: function( type ) { - return this.each( function() { - jQuery.dequeue( this, type ); - } ); - }, - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - }, - - // Get a promise resolved when queues of a certain type - // are emptied (fx is the type by default) - promise: function( type, obj ) { - var tmp, - count = 1, - defer = jQuery.Deferred(), - elements = this, - i = this.length, - resolve = function() { - if ( !( --count ) ) { - defer.resolveWith( elements, [ elements ] ); - } - }; - - if ( typeof type !== "string" ) { - obj = type; - type = undefined; - } - type = type || "fx"; - - while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); - if ( tmp && tmp.empty ) { - count++; - tmp.empty.add( resolve ); - } - } - resolve(); - return defer.promise( obj ); - } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - - -var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; - -var documentElement = document.documentElement; - - - - var isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ); - }, - composed = { composed: true }; - - // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only - // Check attachment across shadow DOM boundaries when possible (gh-3504) - // Support: iOS 10.0-10.2 only - // Early iOS 10 versions support `attachShadow` but not `getRootNode`, - // leading to errors. We need to check for `getRootNode`. - if ( documentElement.getRootNode ) { - isAttached = function( elem ) { - return jQuery.contains( elem.ownerDocument, elem ) || - elem.getRootNode( composed ) === elem.ownerDocument; - }; - } -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; - // in that case, element will be second argument - elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - isAttached( elem ) && - - jQuery.css( elem, "display" ) === "none"; - }; - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = elem.nodeType && - ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween properties later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -( function() { - var fragment = document.createDocumentFragment(), - div = fragment.appendChild( document.createElement( "div" ) ), - input = document.createElement( "input" ); - - // Support: Android 4.0 - 4.3 only - // Check state lost if the name is set (#11217) - // Support: Windows Web Apps (WWA) - // `name` and `type` must use .setAttribute for WWA (#14901) - input.setAttribute( "type", "radio" ); - input.setAttribute( "checked", "checked" ); - input.setAttribute( "name", "t" ); - - div.appendChild( input ); - - // Support: Android <=4.1 only - // Older WebKit doesn't clone checked state correctly in fragments - support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - - // Support: IE <=11 only - // Make sure textarea (and checkbox) defaultValue is properly cloned - div.innerHTML = ""; - support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; - - // Support: IE <=9 only - // IE <=9 replaces "; - support.option = !!div.lastChild; -} )(); - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
" ], - col: [ 2, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - - _default: [ 0, "", "" ] -}; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// Support: IE <=9 only -if ( !support.option ) { - wrapMap.optgroup = wrapMap.option = [ 1, "" ]; -} - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, attached, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - attached = isAttached( elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( attached ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } - - return fragment; -} - - -var - rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; - -function returnTrue() { - return true; -} - -function returnFalse() { - return false; -} - -// Support: IE <=9 - 11+ -// focus() and blur() are asynchronous, except when they are no-op. -// So expect focus to be synchronous when the element is already active, -// and blur to be synchronous when the element is not already active. -// (focus and blur are always synchronous in other supported browsers, -// this just defines when we can count on it). -function expectSync( elem, type ) { - return ( elem === safeActiveElement() ) === ( type === "focus" ); -} - -// Support: IE <=9 only -// Accessing document.activeElement can throw unexpectedly -// https://bugs.jquery.com/ticket/13393 -function safeActiveElement() { - try { - return document.activeElement; - } catch ( err ) { } -} - -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - -/* - * Helper functions for managing events -- not part of the public interface. - * Props to Dean Edwards' addEvent library for many of the ideas. - */ -jQuery.event = { - - global: {}, - - add: function( elem, types, handler, data, selector ) { - - var handleObjIn, eventHandle, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); - - // Only attach events to objects that accept data - if ( !acceptData( elem ) ) { - return; - } - - // Caller can pass in an object of custom data in lieu of the handler - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - selector = handleObjIn.selector; - } - - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - - // Make sure that the handler has a unique ID, used to find/remove it later - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { - events = elemData.events = Object.create( null ); - } - if ( !( eventHandle = elemData.handle ) ) { - eventHandle = elemData.handle = function( e ) { - - // Discard the second event of a jQuery.event.trigger() and - // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? - jQuery.event.dispatch.apply( elem, arguments ) : undefined; - }; - } - - // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // There *must* be a type, no attaching namespace-only handlers - if ( !type ) { - continue; - } - - // If event changes its type, use the special event handlers for the changed type - special = jQuery.event.special[ type ] || {}; - - // If selector defined, determine special event api type, otherwise given type - type = ( selector ? special.delegateType : special.bindType ) || type; - - // Update special based on newly reset type - special = jQuery.event.special[ type ] || {}; - - // handleObj is passed to all event handlers - handleObj = jQuery.extend( { - type: type, - origType: origType, - data: data, - handler: handler, - guid: handler.guid, - selector: selector, - needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) - }, handleObjIn ); - - // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { - handlers = events[ type ] = []; - handlers.delegateCount = 0; - - // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add to the element's handler list, delegates in front - if ( selector ) { - handlers.splice( handlers.delegateCount++, 0, handleObj ); - } else { - handlers.push( handleObj ); - } - - // Keep track of which events have ever been used, for event optimization - jQuery.event.global[ type ] = true; - } - - }, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, selector, mappedTypes ) { - - var j, origCount, tmp, - events, t, handleObj, - special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); - - if ( !elemData || !( events = elemData.events ) ) { - return; - } - - // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; - t = types.length; - while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); - - // Unbind all events (on this namespace, if provided) for the element - if ( !type ) { - for ( type in events ) { - jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); - } - continue; - } - - special = jQuery.event.special[ type ] || {}; - type = ( selector ? special.delegateType : special.bindType ) || type; - handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); - - // Remove matching events - origCount = j = handlers.length; - while ( j-- ) { - handleObj = handlers[ j ]; - - if ( ( mappedTypes || origType === handleObj.origType ) && - ( !handler || handler.guid === handleObj.guid ) && - ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { - handlers.splice( j, 1 ); - - if ( handleObj.selector ) { - handlers.delegateCount--; - } - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - } - - // Remove generic event handler if we removed something and no more handlers exist - // (avoids potential for endless recursion during removal of special event handlers) - if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - - jQuery.removeEvent( elem, type, elemData.handle ); - } - - delete events[ type ]; - } - } - - // Remove data and the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); - } - }, - - dispatch: function( nativeEvent ) { - - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - - // Make a writable jQuery.Event from the native event object - event = jQuery.event.fix( nativeEvent ), - - handlers = ( - dataPriv.get( this, "events" ) || Object.create( null ) - )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; - - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; - - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; - } - - event.delegateTarget = this; - - // Call the preDispatch hook for the mapped type, and let it bail if desired - if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { - return; - } - - // Determine handlers - handlerQueue = jQuery.event.handlers.call( this, event, handlers ); - - // Run delegates first; they may want to stop propagation beneath us - i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { - event.currentTarget = matched.elem; - - j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { - - // If the event is namespaced, then each handler is only invoked if it is - // specially universal or its namespaces are a superset of the event's. - if ( !event.rnamespace || handleObj.namespace === false || - event.rnamespace.test( handleObj.namespace ) ) { - - event.handleObj = handleObj; - event.data = handleObj.data; - - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); - - if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - } - } - } - - // Call the postDispatch hook for the mapped type - if ( special.postDispatch ) { - special.postDispatch.call( this, event ); - } - - return event.result; - }, - - handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, - handlerQueue = [], - delegateCount = handlers.delegateCount, - cur = event.target; - - // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { - - for ( ; cur !== this; cur = cur.parentNode || this ) { - - // Don't check non-elements (#13208) - // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; - for ( i = 0; i < delegateCount; i++ ) { - handleObj = handlers[ i ]; - - // Don't conflict with Object.prototype properties (#13203) - sel = handleObj.selector + " "; - - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : - jQuery.find( sel, this, null, [ cur ] ).length; - } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); - } - } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); - } - } - } - } - - // Add the remaining (directly-bound) handlers - cur = this; - if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); - } - - return handlerQueue; - }, - - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, - - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, - - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); - } - } ); - }, - - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); - }, - - special: { - load: { - - // Prevent triggered image.load events from bubbling to window.load - noBubble: true - }, - click: { - - // Utilize native event to ensure correct state for checkable inputs - setup: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Claim the first handler - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - // dataPriv.set( el, "click", ... ) - leverageNative( el, "click", returnTrue ); - } - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function( data ) { - - // For mutual compressibility with _default, replace `this` access with a local var. - // `|| data` is dead code meant only to preserve the variable through minification. - var el = this || data; - - // Force setup before triggering a click - if ( rcheckableType.test( el.type ) && - el.click && nodeName( el, "input" ) ) { - - leverageNative( el, "click" ); - } - - // Return non-false to allow normal event-path propagation - return true; - }, - - // For cross-browser consistency, suppress native .click() on links - // Also prevent it if we're currently inside a leveraged native-event stack - _default: function( event ) { - var target = event.target; - return rcheckableType.test( target.type ) && - target.click && nodeName( target, "input" ) && - dataPriv.get( target, "click" ) || - nodeName( target, "a" ); - } - }, - - beforeunload: { - postDispatch: function( event ) { - - // Support: Firefox 20+ - // Firefox doesn't alert if the returnValue field is not set. - if ( event.result !== undefined && event.originalEvent ) { - event.originalEvent.returnValue = event.result; - } - } - } - } -}; - -// Ensure the presence of an event listener that handles manually-triggered -// synthetic events by interrupting progress until reinvoked in response to -// *native* events that it fires directly, ensuring that state changes have -// already occurred before other listeners are invoked. -function leverageNative( el, type, expectSync ) { - - // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add - if ( !expectSync ) { - if ( dataPriv.get( el, type ) === undefined ) { - jQuery.event.add( el, type, returnTrue ); - } - return; - } - - // Register the controller as a special universal handler for all event namespaces - dataPriv.set( el, type, false ); - jQuery.event.add( el, type, { - namespace: false, - handler: function( event ) { - var notAsync, result, - saved = dataPriv.get( this, type ); - - if ( ( event.isTrigger & 1 ) && this[ type ] ) { - - // Interrupt processing of the outer synthetic .trigger()ed event - // Saved data should be false in such cases, but might be a leftover capture object - // from an async native handler (gh-4350) - if ( !saved.length ) { - - // Store arguments for use when handling the inner native event - // There will always be at least one argument (an event object), so this array - // will not be confused with a leftover capture object. - saved = slice.call( arguments ); - dataPriv.set( this, type, saved ); - - // Trigger the native event and capture its result - // Support: IE <=9 - 11+ - // focus() and blur() are asynchronous - notAsync = expectSync( this, type ); - this[ type ](); - result = dataPriv.get( this, type ); - if ( saved !== result || notAsync ) { - dataPriv.set( this, type, false ); - } else { - result = {}; - } - if ( saved !== result ) { - - // Cancel the outer synthetic event - event.stopImmediatePropagation(); - event.preventDefault(); - return result.value; - } - - // If this is an inner synthetic event for an event with a bubbling surrogate - // (focus or blur), assume that the surrogate already propagated from triggering the - // native event and prevent that from happening again here. - // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the - // bubbling surrogate propagates *after* the non-bubbling base), but that seems - // less bad than duplication. - } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { - event.stopPropagation(); - } - - // If this is a native event triggered above, everything is now in order - // Fire an inner synthetic event with the original arguments - } else if ( saved.length ) { - - // ...and capture the result - dataPriv.set( this, type, { - value: jQuery.event.trigger( - - // Support: IE <=9 - 11+ - // Extend with the prototype to reset the above stopImmediatePropagation() - jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), - saved.slice( 1 ), - this - ) - } ); - - // Abort handling of the native event - event.stopImmediatePropagation(); - } - } - } ); -} - -jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); - } -}; - -jQuery.Event = function( src, props ) { - - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { - return new jQuery.Event( src, props ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = src.defaultPrevented || - src.defaultPrevented === undefined && - - // Support: Android <=2.3 only - src.returnValue === false ? - returnTrue : - returnFalse; - - // Create target properties - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - - // Event type - } else { - this.type = src; - } - - // Put explicitly provided properties onto the event object - if ( props ) { - jQuery.extend( this, props ); - } - - // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - constructor: jQuery.Event, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse, - isSimulated: false, - - preventDefault: function() { - var e = this.originalEvent; - - this.isDefaultPrevented = returnTrue; - - if ( e && !this.isSimulated ) { - e.preventDefault(); - } - }, - stopPropagation: function() { - var e = this.originalEvent; - - this.isPropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopPropagation(); - } - }, - stopImmediatePropagation: function() { - var e = this.originalEvent; - - this.isImmediatePropagationStopped = returnTrue; - - if ( e && !this.isSimulated ) { - e.stopImmediatePropagation(); - } - - this.stopPropagation(); - } -}; - -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - code: true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - -jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { - jQuery.event.special[ type ] = { - - // Utilize native event if possible so blur/focus sequence is correct - setup: function() { - - // Claim the first handler - // dataPriv.set( this, "focus", ... ) - // dataPriv.set( this, "blur", ... ) - leverageNative( this, type, expectSync ); - - // Return false to allow normal processing in the caller - return false; - }, - trigger: function() { - - // Force setup before trigger - leverageNative( this, type ); - - // Return non-false to allow normal event-path propagation - return true; - }, - - delegateType: delegateType - }; -} ); - -// Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { - mouseenter: "mouseover", - mouseleave: "mouseout", - pointerenter: "pointerover", - pointerleave: "pointerout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - delegateType: fix, - bindType: fix, - - handle: function( event ) { - var ret, - target = this, - related = event.relatedTarget, - handleObj = event.handleObj; - - // For mouseenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { - event.type = handleObj.origType; - ret = handleObj.handler.apply( this, arguments ); - event.type = fix; - } - return ret; - } - }; -} ); - -jQuery.fn.extend( { - - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); - }, - one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); - }, - off: function( types, selector, fn ) { - var handleObj, type; - if ( types && types.preventDefault && types.handleObj ) { - - // ( event ) dispatched jQuery.Event - handleObj = types.handleObj; - jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, - handleObj.selector, - handleObj.handler - ); - return this; - } - if ( typeof types === "object" ) { - - // ( types-object [, selector] ) - for ( type in types ) { - this.off( type, selector, types[ type ] ); - } - return this; - } - if ( selector === false || typeof selector === "function" ) { - - // ( types [, fn] ) - fn = selector; - selector = undefined; - } - if ( fn === false ) { - fn = returnFalse; - } - return this.each( function() { - jQuery.event.remove( this, types, fn, selector ); - } ); - } -} ); - - -var - - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; - -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { - - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } - - return elem; -} - -// Replace/restore the type attribute of script elements for safe DOM manipulation -function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; - return elem; -} -function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); - } else { - elem.removeAttribute( "type" ); - } - - return elem; -} - -function cloneCopyEvent( src, dest ) { - var i, l, type, pdataOld, udataOld, udataCur, events; - - if ( dest.nodeType !== 1 ) { - return; - } - - // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.get( src ); - events = pdataOld.events; - - if ( events ) { - dataPriv.remove( dest, "handle events" ); - - for ( type in events ) { - for ( i = 0, l = events[ type ].length; i < l; i++ ) { - jQuery.event.add( dest, type, events[ type ][ i ] ); - } - } - } - } - - // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); - udataCur = jQuery.extend( {}, udataOld ); - - dataUser.set( dest, udataCur ); - } -} - -// Fix IE bugs, see support tests -function fixInput( src, dest ) { - var nodeName = dest.nodeName.toLowerCase(); - - // Fails to persist the checked state of a cloned checkbox or radio button. - if ( nodeName === "input" && rcheckableType.test( src.type ) ) { - dest.checked = src.checked; - - // Fails to return the selected option to the default selected state when cloning options - } else if ( nodeName === "input" || nodeName === "textarea" ) { - dest.defaultValue = src.defaultValue; - } -} - -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = flat( args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl && !node.noModule ) { - jQuery._evalUrl( node.src, { - nonce: node.nonce || node.getAttribute( "nonce" ) - }, doc ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && isAttached( node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html; - }, - - clone: function( elem, dataAndEvents, deepDataAndEvents ) { - var i, l, srcElements, destElements, - clone = elem.cloneNode( true ), - inPage = isAttached( elem ); - - // Fix IE cloning issues - if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && - !jQuery.isXMLDoc( elem ) ) { - - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 - destElements = getAll( clone ); - srcElements = getAll( elem ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - fixInput( srcElements[ i ], destElements[ i ] ); - } - } - - // Copy the events from the original to the clone - if ( dataAndEvents ) { - if ( deepDataAndEvents ) { - srcElements = srcElements || getAll( elem ); - destElements = destElements || getAll( clone ); - - for ( i = 0, l = srcElements.length; i < l; i++ ) { - cloneCopyEvent( srcElements[ i ], destElements[ i ] ); - } - } else { - cloneCopyEvent( elem, clone ); - } - } - - // Preserve script evaluation history - destElements = getAll( clone, "script" ); - if ( destElements.length > 0 ) { - setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); - } - - // Return the cloned set - return clone; - }, - - cleanData: function( elems ) { - var data, elem, type, - special = jQuery.event.special, - i = 0; - - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { - if ( data.events ) { - for ( type in data.events ) { - if ( special[ type ] ) { - jQuery.event.remove( elem, type ); - - // This is a shortcut to avoid jQuery.event.remove's overhead - } else { - jQuery.removeEvent( elem, type, data.handle ); - } - } - } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; - } - } - } - } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, - - text: function( value ) { - return access( this, function( value ) { - return value === undefined ? - jQuery.text( this ) : - this.empty().each( function() { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - this.textContent = value; - } - } ); - }, null, value, arguments.length ); - }, - - append: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.appendChild( elem ); - } - } ); - }, - - prepend: function() { - return domManip( this, arguments, function( elem ) { - if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { - var target = manipulationTarget( this, elem ); - target.insertBefore( elem, target.firstChild ); - } - } ); - }, - - before: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this ); - } - } ); - }, - - after: function() { - return domManip( this, arguments, function( elem ) { - if ( this.parentNode ) { - this.parentNode.insertBefore( elem, this.nextSibling ); - } - } ); - }, - - empty: function() { - var elem, - i = 0; - - for ( ; ( elem = this[ i ] ) != null; i++ ) { - if ( elem.nodeType === 1 ) { - - // Prevent memory leaks - jQuery.cleanData( getAll( elem, false ) ); - - // Remove any remaining nodes - elem.textContent = ""; - } - } - - return this; - }, - - clone: function( dataAndEvents, deepDataAndEvents ) { - dataAndEvents = dataAndEvents == null ? false : dataAndEvents; - deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - - return this.map( function() { - return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); - }, - - html: function( value ) { - return access( this, function( value ) { - var elem = this[ 0 ] || {}, - i = 0, - l = this.length; - - if ( value === undefined && elem.nodeType === 1 ) { - return elem.innerHTML; - } - - // See if we can take a shortcut and just use innerHTML - if ( typeof value === "string" && !rnoInnerhtml.test( value ) && - !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - - value = jQuery.htmlPrefilter( value ); - - try { - for ( ; i < l; i++ ) { - elem = this[ i ] || {}; - - // Remove element nodes and prevent memory leaks - if ( elem.nodeType === 1 ) { - jQuery.cleanData( getAll( elem, false ) ); - elem.innerHTML = value; - } - } - - elem = 0; - - // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} - } - - if ( elem ) { - this.empty().append( value ); - } - }, null, value, arguments.length ); - }, - - replaceWith: function() { - var ignored = []; - - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; - - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); - } - } - - // Force callback invocation - }, ignored ); - } -} ); - -jQuery.each( { - appendTo: "append", - prependTo: "prepend", - insertBefore: "before", - insertAfter: "after", - replaceAll: "replaceWith" -}, function( name, original ) { - jQuery.fn[ name ] = function( selector ) { - var elems, - ret = [], - insert = jQuery( selector ), - last = insert.length - 1, - i = 0; - - for ( ; i <= last; i++ ) { - elems = i === last ? this : this.clone( true ); - jQuery( insert[ i ] )[ original ]( elems ); - - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit - push.apply( ret, elems.get() ); - } - - return this.pushStack( ret ); - }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } - - return view.getComputedStyle( elem ); - }; - -var swap = function( elem, options, callback ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.call( elem ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); - - - -( function() { - - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { - - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } - - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); - - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; - - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; - - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; - - // Support: IE 9 - 11 only - // Detect misreporting of content dimensions for box-sizing:border-box elements - boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; - - // Support: IE 9 only - // Detect overflow:scroll screwiness (gh-3699) - // Support: Chrome <=64 - // Don't get tricked when zoom affects offsetWidth (gh-4029) - div.style.position = "absolute"; - scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; - - documentElement.removeChild( container ); - - // Nullify the div so it wouldn't be stored in the memory and - // it will also be a sign that checks already performed - div = null; - } - - function roundPixelMeasures( measure ) { - return Math.round( parseFloat( measure ) ); - } - - var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, - reliableTrDimensionsVal, reliableMarginLeftVal, - container = document.createElement( "div" ), - div = document.createElement( "div" ); - - // Finish early in limited (non-browser) environments - if ( !div.style ) { - return; - } - - // Support: IE <=9 - 11 only - // Style of cloned element affects source element cloned (#8908) - div.style.backgroundClip = "content-box"; - div.cloneNode( true ).style.backgroundClip = ""; - support.clearCloneStyle = div.style.backgroundClip === "content-box"; - - jQuery.extend( support, { - boxSizingReliable: function() { - computeStyleTests(); - return boxSizingReliableVal; - }, - pixelBoxStyles: function() { - computeStyleTests(); - return pixelBoxStylesVal; - }, - pixelPosition: function() { - computeStyleTests(); - return pixelPositionVal; - }, - reliableMarginLeft: function() { - computeStyleTests(); - return reliableMarginLeftVal; - }, - scrollboxSize: function() { - computeStyleTests(); - return scrollboxSizeVal; - }, - - // Support: IE 9 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Behavior in IE 9 is more subtle than in newer versions & it passes - // some versions of this test; make sure not to make it pass there! - reliableTrDimensions: function() { - var table, tr, trChild, trStyle; - if ( reliableTrDimensionsVal == null ) { - table = document.createElement( "table" ); - tr = document.createElement( "tr" ); - trChild = document.createElement( "div" ); - - table.style.cssText = "position:absolute;left:-11111px"; - tr.style.height = "1px"; - trChild.style.height = "9px"; - - documentElement - .appendChild( table ) - .appendChild( tr ) - .appendChild( trChild ); - - trStyle = window.getComputedStyle( tr ); - reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; - - documentElement.removeChild( table ); - } - return reliableTrDimensionsVal; - } - } ); -} )(); - - -function curCSS( elem, name, computed ) { - var width, minWidth, maxWidth, ret, - - // Support: Firefox 51+ - // Retrieving style before computed somehow - // fixes an issue with getting wrong values - // on detached elements - style = elem.style; - - computed = computed || getStyles( elem ); - - // getPropertyValue is needed for: - // .css('filter') (IE 9 only, #12537) - // .css('--customProperty) (#3144) - if ( computed ) { - ret = computed.getPropertyValue( name ) || computed[ name ]; - - if ( ret === "" && !isAttached( elem ) ) { - ret = jQuery.style( elem, name ); - } - - // A tribute to the "awesome hack by Dean Edwards" - // Android Browser returns percentage for some values, - // but width seems to be reliably pixels. - // This is against the CSSOM draft spec: - // https://drafts.csswg.org/cssom/#resolved-values - if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { - - // Remember the original values - width = style.width; - minWidth = style.minWidth; - maxWidth = style.maxWidth; - - // Put in the new values to get a computed value out - style.minWidth = style.maxWidth = style.width = ret; - ret = computed.width; - - // Revert the changed values - style.width = width; - style.minWidth = minWidth; - style.maxWidth = maxWidth; - } - } - - return ret !== undefined ? - - // Support: IE <=9 - 11 only - // IE returns zIndex value as an integer. - ret + "" : - ret; -} - - -function addGetHookIf( conditionFn, hookFn ) { - - // Define the hook, we'll check on the first run if it's really needed. - return { - get: function() { - if ( conditionFn() ) { - - // Hook not needed (or it's not possible to use it due - // to missing dependency), remove it. - delete this.get; - return; - } - - // Hook needed; redefine it so that the support test is not executed again. - return ( this.get = hookFn ).apply( this, arguments ); - } - }; -} - - -var cssPrefixes = [ "Webkit", "Moz", "ms" ], - emptyStyle = document.createElement( "div" ).style, - vendorProps = {}; - -// Return a vendor-prefixed property or undefined -function vendorPropName( name ) { - - // Check for vendor prefixed names - var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), - i = cssPrefixes.length; - - while ( i-- ) { - name = cssPrefixes[ i ] + capName; - if ( name in emptyStyle ) { - return name; - } - } -} - -// Return a potentially-mapped jQuery.cssProps or vendor prefixed property -function finalPropName( name ) { - var final = jQuery.cssProps[ name ] || vendorProps[ name ]; - - if ( final ) { - return final; - } - if ( name in emptyStyle ) { - return name; - } - return vendorProps[ name ] = vendorPropName( name ) || name; -} - - -var - - // Swappable if display is none or starts with table - // except "table", "table-cell", or "table-caption" - // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display - rdisplayswap = /^(none|table(?!-c[ea]).+)/, - rcustomProp = /^--/, - cssShow = { position: "absolute", visibility: "hidden", display: "block" }, - cssNormalTransform = { - letterSpacing: "0", - fontWeight: "400" - }; - -function setPositiveNumber( _elem, value, subtract ) { - - // Any relative (+/-) values have already been - // normalized at this point - var matches = rcssNum.exec( value ); - return matches ? - - // Guard against undefined "subtract", e.g., when used as in cssHooks - Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : - value; -} - -function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { - var i = dimension === "width" ? 1 : 0, - extra = 0, - delta = 0; - - // Adjustment may not be necessary - if ( box === ( isBorderBox ? "border" : "content" ) ) { - return 0; - } - - for ( ; i < 4; i += 2 ) { - - // Both box models exclude margin - if ( box === "margin" ) { - delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); - } - - // If we get here with a content-box, we're seeking "padding" or "border" or "margin" - if ( !isBorderBox ) { - - // Add padding - delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - - // For "border" or "margin", add border - if ( box !== "padding" ) { - delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - - // But still keep track of it otherwise - } else { - extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - - // If we get here with a border-box (content + padding + border), we're seeking "content" or - // "padding" or "margin" - } else { - - // For "content", subtract padding - if ( box === "content" ) { - delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); - } - - // For "content" or "padding", subtract border - if ( box !== "margin" ) { - delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); - } - } - } - - // Account for positive content-box scroll gutter when requested by providing computedVal - if ( !isBorderBox && computedVal >= 0 ) { - - // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border - // Assuming integer scroll gutter, subtract the rest and round down - delta += Math.max( 0, Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - computedVal - - delta - - extra - - 0.5 - - // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter - // Use an explicit zero to avoid NaN (gh-3964) - ) ) || 0; - } - - return delta; -} - -function getWidthOrHeight( elem, dimension, extra ) { - - // Start with computed style - var styles = getStyles( elem ), - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). - // Fake content-box until we know it's needed to know the true value. - boxSizingNeeded = !support.boxSizingReliable() || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - valueIsBorderBox = isBorderBox, - - val = curCSS( elem, dimension, styles ), - offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); - - // Support: Firefox <=54 - // Return a confounding non-pixel value or feign ignorance, as appropriate. - if ( rnumnonpx.test( val ) ) { - if ( !extra ) { - return val; - } - val = "auto"; - } - - - // Support: IE 9 - 11 only - // Use offsetWidth/offsetHeight for when box sizing is unreliable. - // In those cases, the computed value can be trusted to be border-box. - if ( ( !support.boxSizingReliable() && isBorderBox || - - // Support: IE 10 - 11+, Edge 15 - 18+ - // IE/Edge misreport `getComputedStyle` of table rows with width/height - // set in CSS while `offset*` properties report correct values. - // Interestingly, in some cases IE 9 doesn't suffer from this issue. - !support.reliableTrDimensions() && nodeName( elem, "tr" ) || - - // Fall back to offsetWidth/offsetHeight when value is "auto" - // This happens for inline elements with no explicit setting (gh-3571) - val === "auto" || - - // Support: Android <=4.1 - 4.3 only - // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) - !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && - - // Make sure the element is visible & connected - elem.getClientRects().length ) { - - isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; - - // Where available, offsetWidth/offsetHeight approximate border box dimensions. - // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the - // retrieved value as a content box dimension. - valueIsBorderBox = offsetProp in elem; - if ( valueIsBorderBox ) { - val = elem[ offsetProp ]; - } - } - - // Normalize "" and auto - val = parseFloat( val ) || 0; - - // Adjust for the element's box model - return ( val + - boxModelAdjustment( - elem, - dimension, - extra || ( isBorderBox ? "border" : "content" ), - valueIsBorderBox, - styles, - - // Provide the current computed size to request scroll gutter calculation (gh-3589) - val - ) - ) + "px"; -} - -jQuery.extend( { - - // Add in style property hooks for overriding the default - // behavior of getting and setting a style property - cssHooks: { - opacity: { - get: function( elem, computed ) { - if ( computed ) { - - // We should always get a number back from opacity - var ret = curCSS( elem, "opacity" ); - return ret === "" ? "1" : ret; - } - } - } - }, - - // Don't automatically add "px" to these possibly-unitless properties - cssNumber: { - "animationIterationCount": true, - "columnCount": true, - "fillOpacity": true, - "flexGrow": true, - "flexShrink": true, - "fontWeight": true, - "gridArea": true, - "gridColumn": true, - "gridColumnEnd": true, - "gridColumnStart": true, - "gridRow": true, - "gridRowEnd": true, - "gridRowStart": true, - "lineHeight": true, - "opacity": true, - "order": true, - "orphans": true, - "widows": true, - "zIndex": true, - "zoom": true - }, - - // Add in properties whose names you wish to fix before - // setting or getting the value - cssProps: {}, - - // Get and set the style property on a DOM Node - style: function( elem, name, value, extra ) { - - // Don't set styles on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { - return; - } - - // Make sure that we're working with the right name - var ret, type, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ), - style = elem.style; - - // Make sure that we're working with the right name. We don't - // want to query the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Gets hook for the prefixed version, then unprefixed version - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // Check if we're setting a value - if ( value !== undefined ) { - type = typeof value; - - // Convert "+=" or "-=" to relative numbers (#7345) - if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { - value = adjustCSS( elem, name, ret ); - - // Fixes bug #9237 - type = "number"; - } - - // Make sure that null and NaN values aren't set (#7116) - if ( value == null || value !== value ) { - return; - } - - // If a number was passed in, add the unit (except for certain CSS properties) - // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append - // "px" to a few hardcoded values. - if ( type === "number" && !isCustomProp ) { - value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); - } - - // background-* props affect original clone's values - if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { - style[ name ] = "inherit"; - } - - // If a hook was provided, use that value, otherwise just set the specified value - if ( !hooks || !( "set" in hooks ) || - ( value = hooks.set( elem, value, extra ) ) !== undefined ) { - - if ( isCustomProp ) { - style.setProperty( name, value ); - } else { - style[ name ] = value; - } - } - - } else { - - // If a hook was provided get the non-computed value from there - if ( hooks && "get" in hooks && - ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { - - return ret; - } - - // Otherwise just get the value from the style object - return style[ name ]; - } - }, - - css: function( elem, name, extra, styles ) { - var val, num, hooks, - origName = camelCase( name ), - isCustomProp = rcustomProp.test( name ); - - // Make sure that we're working with the right name. We don't - // want to modify the value if it is a CSS custom property - // since they are user-defined. - if ( !isCustomProp ) { - name = finalPropName( origName ); - } - - // Try prefixed name followed by the unprefixed name - hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; - - // If a hook was provided get the computed value from there - if ( hooks && "get" in hooks ) { - val = hooks.get( elem, true, extra ); - } - - // Otherwise, if a way to get the computed value exists, use that - if ( val === undefined ) { - val = curCSS( elem, name, styles ); - } - - // Convert "normal" to computed value - if ( val === "normal" && name in cssNormalTransform ) { - val = cssNormalTransform[ name ]; - } - - // Make numeric if forced or a qualifier was provided and val looks numeric - if ( extra === "" || extra ) { - num = parseFloat( val ); - return extra === true || isFinite( num ) ? num || 0 : val; - } - - return val; - } -} ); - -jQuery.each( [ "height", "width" ], function( _i, dimension ) { - jQuery.cssHooks[ dimension ] = { - get: function( elem, computed, extra ) { - if ( computed ) { - - // Certain elements can have dimension info if we invisibly show them - // but it must have a current display style that would benefit - return rdisplayswap.test( jQuery.css( elem, "display" ) ) && - - // Support: Safari 8+ - // Table columns in Safari have non-zero offsetWidth & zero - // getBoundingClientRect().width unless display is changed. - // Support: IE <=11 only - // Running getBoundingClientRect on a disconnected node - // in IE throws an error. - ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? - swap( elem, cssShow, function() { - return getWidthOrHeight( elem, dimension, extra ); - } ) : - getWidthOrHeight( elem, dimension, extra ); - } - }, - - set: function( elem, value, extra ) { - var matches, - styles = getStyles( elem ), - - // Only read styles.position if the test has a chance to fail - // to avoid forcing a reflow. - scrollboxSizeBuggy = !support.scrollboxSize() && - styles.position === "absolute", - - // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) - boxSizingNeeded = scrollboxSizeBuggy || extra, - isBorderBox = boxSizingNeeded && - jQuery.css( elem, "boxSizing", false, styles ) === "border-box", - subtract = extra ? - boxModelAdjustment( - elem, - dimension, - extra, - isBorderBox, - styles - ) : - 0; - - // Account for unreliable border-box dimensions by comparing offset* to computed and - // faking a content-box to get border and padding (gh-3699) - if ( isBorderBox && scrollboxSizeBuggy ) { - subtract -= Math.ceil( - elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - - parseFloat( styles[ dimension ] ) - - boxModelAdjustment( elem, dimension, "border", false, styles ) - - 0.5 - ); - } - - // Convert to pixels if value adjustment is needed - if ( subtract && ( matches = rcssNum.exec( value ) ) && - ( matches[ 3 ] || "px" ) !== "px" ) { - - elem.style[ dimension ] = value; - value = jQuery.css( elem, dimension ); - } - - return setPositiveNumber( elem, value, subtract ); - } - }; -} ); - -jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, - function( elem, computed ) { - if ( computed ) { - return ( parseFloat( curCSS( elem, "marginLeft" ) ) || - elem.getBoundingClientRect().left - - swap( elem, { marginLeft: 0 }, function() { - return elem.getBoundingClientRect().left; - } ) - ) + "px"; - } - } -); - -// These hooks are used by animate to expand properties -jQuery.each( { - margin: "", - padding: "", - border: "Width" -}, function( prefix, suffix ) { - jQuery.cssHooks[ prefix + suffix ] = { - expand: function( value ) { - var i = 0, - expanded = {}, - - // Assumes a single number if not a string - parts = typeof value === "string" ? value.split( " " ) : [ value ]; - - for ( ; i < 4; i++ ) { - expanded[ prefix + cssExpand[ i ] + suffix ] = - parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; - } - - return expanded; - } - }; - - if ( prefix !== "margin" ) { - jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; - } -} ); - -jQuery.fn.extend( { - css: function( name, value ) { - return access( this, function( elem, name, value ) { - var styles, len, - map = {}, - i = 0; - - if ( Array.isArray( name ) ) { - styles = getStyles( elem ); - len = name.length; - - for ( ; i < len; i++ ) { - map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); - } - - return map; - } - - return value !== undefined ? - jQuery.style( elem, name, value ) : - jQuery.css( elem, name ); - }, name, value, arguments.length > 1 ); - } -} ); - - -function Tween( elem, options, prop, end, easing ) { - return new Tween.prototype.init( elem, options, prop, end, easing ); -} -jQuery.Tween = Tween; - -Tween.prototype = { - constructor: Tween, - init: function( elem, options, prop, end, easing, unit ) { - this.elem = elem; - this.prop = prop; - this.easing = easing || jQuery.easing._default; - this.options = options; - this.start = this.now = this.cur(); - this.end = end; - this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); - }, - cur: function() { - var hooks = Tween.propHooks[ this.prop ]; - - return hooks && hooks.get ? - hooks.get( this ) : - Tween.propHooks._default.get( this ); - }, - run: function( percent ) { - var eased, - hooks = Tween.propHooks[ this.prop ]; - - if ( this.options.duration ) { - this.pos = eased = jQuery.easing[ this.easing ]( - percent, this.options.duration * percent, 0, 1, this.options.duration - ); - } else { - this.pos = eased = percent; - } - this.now = ( this.end - this.start ) * eased + this.start; - - if ( this.options.step ) { - this.options.step.call( this.elem, this.now, this ); - } - - if ( hooks && hooks.set ) { - hooks.set( this ); - } else { - Tween.propHooks._default.set( this ); - } - return this; - } -}; - -Tween.prototype.init.prototype = Tween.prototype; - -Tween.propHooks = { - _default: { - get: function( tween ) { - var result; - - // Use a property on the element directly when it is not a DOM element, - // or when there is no matching style property that exists. - if ( tween.elem.nodeType !== 1 || - tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { - return tween.elem[ tween.prop ]; - } - - // Passing an empty string as a 3rd parameter to .css will automatically - // attempt a parseFloat and fallback to a string if the parse fails. - // Simple values such as "10px" are parsed to Float; - // complex values such as "rotate(1rad)" are returned as-is. - result = jQuery.css( tween.elem, tween.prop, "" ); - - // Empty strings, null, undefined and "auto" are converted to 0. - return !result || result === "auto" ? 0 : result; - }, - set: function( tween ) { - - // Use step hook for back compat. - // Use cssHook if its there. - // Use .style if available and use plain properties where available. - if ( jQuery.fx.step[ tween.prop ] ) { - jQuery.fx.step[ tween.prop ]( tween ); - } else if ( tween.elem.nodeType === 1 && ( - jQuery.cssHooks[ tween.prop ] || - tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { - jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); - } else { - tween.elem[ tween.prop ] = tween.now; - } - } - } -}; - -// Support: IE <=9 only -// Panic based approach to setting things on disconnected nodes -Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { - set: function( tween ) { - if ( tween.elem.nodeType && tween.elem.parentNode ) { - tween.elem[ tween.prop ] = tween.now; - } - } -}; - -jQuery.easing = { - linear: function( p ) { - return p; - }, - swing: function( p ) { - return 0.5 - Math.cos( p * Math.PI ) / 2; - }, - _default: "swing" -}; - -jQuery.fx = Tween.prototype.init; - -// Back compat <1.8 extension point -jQuery.fx.step = {}; - - - - -var - fxNow, inProgress, - rfxtypes = /^(?:toggle|show|hide)$/, - rrun = /queueHooks$/; - -function schedule() { - if ( inProgress ) { - if ( document.hidden === false && window.requestAnimationFrame ) { - window.requestAnimationFrame( schedule ); - } else { - window.setTimeout( schedule, jQuery.fx.interval ); - } - - jQuery.fx.tick(); - } -} - -// Animations created synchronously will run synchronously -function createFxNow() { - window.setTimeout( function() { - fxNow = undefined; - } ); - return ( fxNow = Date.now() ); -} - -// Generate parameters to create a standard animation -function genFx( type, includeWidth ) { - var which, - i = 0, - attrs = { height: type }; - - // If we include width, step value is 1 to do all cssExpand values, - // otherwise step value is 2 to skip over Left and Right - includeWidth = includeWidth ? 1 : 0; - for ( ; i < 4; i += 2 - includeWidth ) { - which = cssExpand[ i ]; - attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; - } - - if ( includeWidth ) { - attrs.opacity = attrs.width = type; - } - - return attrs; -} - -function createTween( value, prop, animation ) { - var tween, - collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), - index = 0, - length = collection.length; - for ( ; index < length; index++ ) { - if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { - - // We're done with this property - return tween; - } - } -} - -function defaultPrefilter( elem, props, opts ) { - var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, - isBox = "width" in props || "height" in props, - anim = this, - orig = {}, - style = elem.style, - hidden = elem.nodeType && isHiddenWithinTree( elem ), - dataShow = dataPriv.get( elem, "fxshow" ); - - // Queue-skipping animations hijack the fx hooks - if ( !opts.queue ) { - hooks = jQuery._queueHooks( elem, "fx" ); - if ( hooks.unqueued == null ) { - hooks.unqueued = 0; - oldfire = hooks.empty.fire; - hooks.empty.fire = function() { - if ( !hooks.unqueued ) { - oldfire(); - } - }; - } - hooks.unqueued++; - - anim.always( function() { - - // Ensure the complete handler is called before this completes - anim.always( function() { - hooks.unqueued--; - if ( !jQuery.queue( elem, "fx" ).length ) { - hooks.empty.fire(); - } - } ); - } ); - } - - // Detect show/hide animations - for ( prop in props ) { - value = props[ prop ]; - if ( rfxtypes.test( value ) ) { - delete props[ prop ]; - toggle = toggle || value === "toggle"; - if ( value === ( hidden ? "hide" : "show" ) ) { - - // Pretend to be hidden if this is a "show" and - // there is still data from a stopped show/hide - if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { - hidden = true; - - // Ignore all other no-op show/hide data - } else { - continue; - } - } - orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); - } - } - - // Bail out if this is a no-op like .hide().hide() - propTween = !jQuery.isEmptyObject( props ); - if ( !propTween && jQuery.isEmptyObject( orig ) ) { - return; - } - - // Restrict "overflow" and "display" styles during box animations - if ( isBox && elem.nodeType === 1 ) { - - // Support: IE <=9 - 11, Edge 12 - 15 - // Record all 3 overflow attributes because IE does not infer the shorthand - // from identically-valued overflowX and overflowY and Edge just mirrors - // the overflowX value there. - opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; - - // Identify a display type, preferring old show/hide data over the CSS cascade - restoreDisplay = dataShow && dataShow.display; - if ( restoreDisplay == null ) { - restoreDisplay = dataPriv.get( elem, "display" ); - } - display = jQuery.css( elem, "display" ); - if ( display === "none" ) { - if ( restoreDisplay ) { - display = restoreDisplay; - } else { - - // Get nonempty value(s) by temporarily forcing visibility - showHide( [ elem ], true ); - restoreDisplay = elem.style.display || restoreDisplay; - display = jQuery.css( elem, "display" ); - showHide( [ elem ] ); - } - } - - // Animate inline elements as inline-block - if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { - if ( jQuery.css( elem, "float" ) === "none" ) { - - // Restore the original display value at the end of pure show/hide animations - if ( !propTween ) { - anim.done( function() { - style.display = restoreDisplay; - } ); - if ( restoreDisplay == null ) { - display = style.display; - restoreDisplay = display === "none" ? "" : display; - } - } - style.display = "inline-block"; - } - } - } - - if ( opts.overflow ) { - style.overflow = "hidden"; - anim.always( function() { - style.overflow = opts.overflow[ 0 ]; - style.overflowX = opts.overflow[ 1 ]; - style.overflowY = opts.overflow[ 2 ]; - } ); - } - - // Implement show/hide animations - propTween = false; - for ( prop in orig ) { - - // General show/hide setup for this element animation - if ( !propTween ) { - if ( dataShow ) { - if ( "hidden" in dataShow ) { - hidden = dataShow.hidden; - } - } else { - dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); - } - - // Store hidden/visible for toggle so `.stop().toggle()` "reverses" - if ( toggle ) { - dataShow.hidden = !hidden; - } - - // Show elements before animating them - if ( hidden ) { - showHide( [ elem ], true ); - } - - /* eslint-disable no-loop-func */ - - anim.done( function() { - - /* eslint-enable no-loop-func */ - - // The final step of a "hide" animation is actually hiding the element - if ( !hidden ) { - showHide( [ elem ] ); - } - dataPriv.remove( elem, "fxshow" ); - for ( prop in orig ) { - jQuery.style( elem, prop, orig[ prop ] ); - } - } ); - } - - // Per-property setup - propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); - if ( !( prop in dataShow ) ) { - dataShow[ prop ] = propTween.start; - if ( hidden ) { - propTween.end = propTween.start; - propTween.start = 0; - } - } - } -} - -function propFilter( props, specialEasing ) { - var index, name, easing, value, hooks; - - // camelCase, specialEasing and expand cssHook pass - for ( index in props ) { - name = camelCase( index ); - easing = specialEasing[ name ]; - value = props[ index ]; - if ( Array.isArray( value ) ) { - easing = value[ 1 ]; - value = props[ index ] = value[ 0 ]; - } - - if ( index !== name ) { - props[ name ] = value; - delete props[ index ]; - } - - hooks = jQuery.cssHooks[ name ]; - if ( hooks && "expand" in hooks ) { - value = hooks.expand( value ); - delete props[ name ]; - - // Not quite $.extend, this won't overwrite existing keys. - // Reusing 'index' because we have the correct "name" - for ( index in value ) { - if ( !( index in props ) ) { - props[ index ] = value[ index ]; - specialEasing[ index ] = easing; - } - } - } else { - specialEasing[ name ] = easing; - } - } -} - -function Animation( elem, properties, options ) { - var result, - stopped, - index = 0, - length = Animation.prefilters.length, - deferred = jQuery.Deferred().always( function() { - - // Don't match elem in the :animated selector - delete tick.elem; - } ), - tick = function() { - if ( stopped ) { - return false; - } - var currentTime = fxNow || createFxNow(), - remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), - - // Support: Android 2.3 only - // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) - temp = remaining / animation.duration || 0, - percent = 1 - temp, - index = 0, - length = animation.tweens.length; - - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( percent ); - } - - deferred.notifyWith( elem, [ animation, percent, remaining ] ); - - // If there's more to do, yield - if ( percent < 1 && length ) { - return remaining; - } - - // If this was an empty animation, synthesize a final progress notification - if ( !length ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - } - - // Resolve the animation and report its conclusion - deferred.resolveWith( elem, [ animation ] ); - return false; - }, - animation = deferred.promise( { - elem: elem, - props: jQuery.extend( {}, properties ), - opts: jQuery.extend( true, { - specialEasing: {}, - easing: jQuery.easing._default - }, options ), - originalProperties: properties, - originalOptions: options, - startTime: fxNow || createFxNow(), - duration: options.duration, - tweens: [], - createTween: function( prop, end ) { - var tween = jQuery.Tween( elem, animation.opts, prop, end, - animation.opts.specialEasing[ prop ] || animation.opts.easing ); - animation.tweens.push( tween ); - return tween; - }, - stop: function( gotoEnd ) { - var index = 0, - - // If we are going to the end, we want to run all the tweens - // otherwise we skip this part - length = gotoEnd ? animation.tweens.length : 0; - if ( stopped ) { - return this; - } - stopped = true; - for ( ; index < length; index++ ) { - animation.tweens[ index ].run( 1 ); - } - - // Resolve when we played the last frame; otherwise, reject - if ( gotoEnd ) { - deferred.notifyWith( elem, [ animation, 1, 0 ] ); - deferred.resolveWith( elem, [ animation, gotoEnd ] ); - } else { - deferred.rejectWith( elem, [ animation, gotoEnd ] ); - } - return this; - } - } ), - props = animation.props; - - propFilter( props, animation.opts.specialEasing ); - - for ( ; index < length; index++ ) { - result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); - if ( result ) { - if ( isFunction( result.stop ) ) { - jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = - result.stop.bind( result ); - } - return result; - } - } - - jQuery.map( props, createTween, animation ); - - if ( isFunction( animation.opts.start ) ) { - animation.opts.start.call( elem, animation ); - } - - // Attach callbacks from options - animation - .progress( animation.opts.progress ) - .done( animation.opts.done, animation.opts.complete ) - .fail( animation.opts.fail ) - .always( animation.opts.always ); - - jQuery.fx.timer( - jQuery.extend( tick, { - elem: elem, - anim: animation, - queue: animation.opts.queue - } ) - ); - - return animation; -} - -jQuery.Animation = jQuery.extend( Animation, { - - tweeners: { - "*": [ function( prop, value ) { - var tween = this.createTween( prop, value ); - adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); - return tween; - } ] - }, - - tweener: function( props, callback ) { - if ( isFunction( props ) ) { - callback = props; - props = [ "*" ]; - } else { - props = props.match( rnothtmlwhite ); - } - - var prop, - index = 0, - length = props.length; - - for ( ; index < length; index++ ) { - prop = props[ index ]; - Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; - Animation.tweeners[ prop ].unshift( callback ); - } - }, - - prefilters: [ defaultPrefilter ], - - prefilter: function( callback, prepend ) { - if ( prepend ) { - Animation.prefilters.unshift( callback ); - } else { - Animation.prefilters.push( callback ); - } - } -} ); - -jQuery.speed = function( speed, easing, fn ) { - var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { - complete: fn || !fn && easing || - isFunction( speed ) && speed, - duration: speed, - easing: fn && easing || easing && !isFunction( easing ) && easing - }; - - // Go to the end state if fx are off - if ( jQuery.fx.off ) { - opt.duration = 0; - - } else { - if ( typeof opt.duration !== "number" ) { - if ( opt.duration in jQuery.fx.speeds ) { - opt.duration = jQuery.fx.speeds[ opt.duration ]; - - } else { - opt.duration = jQuery.fx.speeds._default; - } - } - } - - // Normalize opt.queue - true/undefined/null -> "fx" - if ( opt.queue == null || opt.queue === true ) { - opt.queue = "fx"; - } - - // Queueing - opt.old = opt.complete; - - opt.complete = function() { - if ( isFunction( opt.old ) ) { - opt.old.call( this ); - } - - if ( opt.queue ) { - jQuery.dequeue( this, opt.queue ); - } - }; - - return opt; -}; - -jQuery.fn.extend( { - fadeTo: function( speed, to, easing, callback ) { - - // Show any hidden elements after setting opacity to 0 - return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() - - // Animate to the value specified - .end().animate( { opacity: to }, speed, easing, callback ); - }, - animate: function( prop, speed, easing, callback ) { - var empty = jQuery.isEmptyObject( prop ), - optall = jQuery.speed( speed, easing, callback ), - doAnimation = function() { - - // Operate on a copy of prop so per-property easing won't be lost - var anim = Animation( this, jQuery.extend( {}, prop ), optall ); - - // Empty animations, or finishing resolves immediately - if ( empty || dataPriv.get( this, "finish" ) ) { - anim.stop( true ); - } - }; - doAnimation.finish = doAnimation; - - return empty || optall.queue === false ? - this.each( doAnimation ) : - this.queue( optall.queue, doAnimation ); - }, - stop: function( type, clearQueue, gotoEnd ) { - var stopQueue = function( hooks ) { - var stop = hooks.stop; - delete hooks.stop; - stop( gotoEnd ); - }; - - if ( typeof type !== "string" ) { - gotoEnd = clearQueue; - clearQueue = type; - type = undefined; - } - if ( clearQueue ) { - this.queue( type || "fx", [] ); - } - - return this.each( function() { - var dequeue = true, - index = type != null && type + "queueHooks", - timers = jQuery.timers, - data = dataPriv.get( this ); - - if ( index ) { - if ( data[ index ] && data[ index ].stop ) { - stopQueue( data[ index ] ); - } - } else { - for ( index in data ) { - if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { - stopQueue( data[ index ] ); - } - } - } - - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && - ( type == null || timers[ index ].queue === type ) ) { - - timers[ index ].anim.stop( gotoEnd ); - dequeue = false; - timers.splice( index, 1 ); - } - } - - // Start the next in the queue if the last step wasn't forced. - // Timers currently will call their complete callbacks, which - // will dequeue but only if they were gotoEnd. - if ( dequeue || !gotoEnd ) { - jQuery.dequeue( this, type ); - } - } ); - }, - finish: function( type ) { - if ( type !== false ) { - type = type || "fx"; - } - return this.each( function() { - var index, - data = dataPriv.get( this ), - queue = data[ type + "queue" ], - hooks = data[ type + "queueHooks" ], - timers = jQuery.timers, - length = queue ? queue.length : 0; - - // Enable finishing flag on private data - data.finish = true; - - // Empty the queue first - jQuery.queue( this, type, [] ); - - if ( hooks && hooks.stop ) { - hooks.stop.call( this, true ); - } - - // Look for any active animations, and finish them - for ( index = timers.length; index--; ) { - if ( timers[ index ].elem === this && timers[ index ].queue === type ) { - timers[ index ].anim.stop( true ); - timers.splice( index, 1 ); - } - } - - // Look for any animations in the old queue and finish them - for ( index = 0; index < length; index++ ) { - if ( queue[ index ] && queue[ index ].finish ) { - queue[ index ].finish.call( this ); - } - } - - // Turn off finishing flag - delete data.finish; - } ); - } -} ); - -jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { - var cssFn = jQuery.fn[ name ]; - jQuery.fn[ name ] = function( speed, easing, callback ) { - return speed == null || typeof speed === "boolean" ? - cssFn.apply( this, arguments ) : - this.animate( genFx( name, true ), speed, easing, callback ); - }; -} ); - -// Generate shortcuts for custom animations -jQuery.each( { - slideDown: genFx( "show" ), - slideUp: genFx( "hide" ), - slideToggle: genFx( "toggle" ), - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" }, - fadeToggle: { opacity: "toggle" } -}, function( name, props ) { - jQuery.fn[ name ] = function( speed, easing, callback ) { - return this.animate( props, speed, easing, callback ); - }; -} ); - -jQuery.timers = []; -jQuery.fx.tick = function() { - var timer, - i = 0, - timers = jQuery.timers; - - fxNow = Date.now(); - - for ( ; i < timers.length; i++ ) { - timer = timers[ i ]; - - // Run the timer and safely remove it when done (allowing for external removal) - if ( !timer() && timers[ i ] === timer ) { - timers.splice( i--, 1 ); - } - } - - if ( !timers.length ) { - jQuery.fx.stop(); - } - fxNow = undefined; -}; - -jQuery.fx.timer = function( timer ) { - jQuery.timers.push( timer ); - jQuery.fx.start(); -}; - -jQuery.fx.interval = 13; -jQuery.fx.start = function() { - if ( inProgress ) { - return; - } - - inProgress = true; - schedule(); -}; - -jQuery.fx.stop = function() { - inProgress = null; -}; - -jQuery.fx.speeds = { - slow: 600, - fast: 200, - - // Default speed - _default: 400 -}; - - -// Based off of the plugin by Clint Helfers, with permission. -// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ -jQuery.fn.delay = function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; - type = type || "fx"; - - return this.queue( type, function( next, hooks ) { - var timeout = window.setTimeout( next, time ); - hooks.stop = function() { - window.clearTimeout( timeout ); - }; - } ); -}; - - -( function() { - var input = document.createElement( "input" ), - select = document.createElement( "select" ), - opt = select.appendChild( document.createElement( "option" ) ); - - input.type = "checkbox"; - - // Support: Android <=4.3 only - // Default value for a checkbox should be "on" - support.checkOn = input.value !== ""; - - // Support: IE <=11 only - // Must access selectedIndex to make default options select - support.optSelected = opt.selected; - - // Support: IE <=11 only - // An input loses its value after becoming a radio - input = document.createElement( "input" ); - input.value = "t"; - input.type = "radio"; - support.radioValue = input.value === "t"; -} )(); - - -var boolHook, - attrHandle = jQuery.expr.attrHandle; - -jQuery.fn.extend( { - attr: function( name, value ) { - return access( this, jQuery.attr, name, value, arguments.length > 1 ); - }, - - removeAttr: function( name ) { - return this.each( function() { - jQuery.removeAttr( this, name ); - } ); - } -} ); - -jQuery.extend( { - attr: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set attributes on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - // Fallback to prop when attributes are not supported - if ( typeof elem.getAttribute === "undefined" ) { - return jQuery.prop( elem, name, value ); - } - - // Attribute hooks are determined by the lowercase version - // Grab necessary hook if one is defined - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - hooks = jQuery.attrHooks[ name.toLowerCase() ] || - ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); - } - - if ( value !== undefined ) { - if ( value === null ) { - jQuery.removeAttr( elem, name ); - return; - } - - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - elem.setAttribute( name, value + "" ); - return value; - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - ret = jQuery.find.attr( elem, name ); - - // Non-existent attributes return null, we normalize to undefined - return ret == null ? undefined : ret; - }, - - attrHooks: { - type: { - set: function( elem, value ) { - if ( !support.radioValue && value === "radio" && - nodeName( elem, "input" ) ) { - var val = elem.value; - elem.setAttribute( "type", value ); - if ( val ) { - elem.value = val; - } - return value; - } - } - } - }, - - removeAttr: function( elem, value ) { - var name, - i = 0, - - // Attribute names can contain non-HTML whitespace characters - // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 - attrNames = value && value.match( rnothtmlwhite ); - - if ( attrNames && elem.nodeType === 1 ) { - while ( ( name = attrNames[ i++ ] ) ) { - elem.removeAttribute( name ); - } - } - } -} ); - -// Hooks for boolean attributes -boolHook = { - set: function( elem, value, name ) { - if ( value === false ) { - - // Remove boolean attributes when set to false - jQuery.removeAttr( elem, name ); - } else { - elem.setAttribute( name, name ); - } - return name; - } -}; - -jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { - var getter = attrHandle[ name ] || jQuery.find.attr; - - attrHandle[ name ] = function( elem, name, isXML ) { - var ret, handle, - lowercaseName = name.toLowerCase(); - - if ( !isXML ) { - - // Avoid an infinite loop by temporarily removing this function from the getter - handle = attrHandle[ lowercaseName ]; - attrHandle[ lowercaseName ] = ret; - ret = getter( elem, name, isXML ) != null ? - lowercaseName : - null; - attrHandle[ lowercaseName ] = handle; - } - return ret; - }; -} ); - - - - -var rfocusable = /^(?:input|select|textarea|button)$/i, - rclickable = /^(?:a|area)$/i; - -jQuery.fn.extend( { - prop: function( name, value ) { - return access( this, jQuery.prop, name, value, arguments.length > 1 ); - }, - - removeProp: function( name ) { - return this.each( function() { - delete this[ jQuery.propFix[ name ] || name ]; - } ); - } -} ); - -jQuery.extend( { - prop: function( elem, name, value ) { - var ret, hooks, - nType = elem.nodeType; - - // Don't get/set properties on text, comment and attribute nodes - if ( nType === 3 || nType === 8 || nType === 2 ) { - return; - } - - if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { - - // Fix name and attach hooks - name = jQuery.propFix[ name ] || name; - hooks = jQuery.propHooks[ name ]; - } - - if ( value !== undefined ) { - if ( hooks && "set" in hooks && - ( ret = hooks.set( elem, value, name ) ) !== undefined ) { - return ret; - } - - return ( elem[ name ] = value ); - } - - if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { - return ret; - } - - return elem[ name ]; - }, - - propHooks: { - tabIndex: { - get: function( elem ) { - - // Support: IE <=9 - 11 only - // elem.tabIndex doesn't always return the - // correct value when it hasn't been explicitly set - // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - // Use proper attribute retrieval(#12072) - var tabindex = jQuery.find.attr( elem, "tabindex" ); - - if ( tabindex ) { - return parseInt( tabindex, 10 ); - } - - if ( - rfocusable.test( elem.nodeName ) || - rclickable.test( elem.nodeName ) && - elem.href - ) { - return 0; - } - - return -1; - } - } - }, - - propFix: { - "for": "htmlFor", - "class": "className" - } -} ); - -// Support: IE <=11 only -// Accessing the selectedIndex property -// forces the browser to respect setting selected -// on the option -// The getter ensures a default option is selected -// when in an optgroup -// eslint rule "no-unused-expressions" is disabled for this code -// since it considers such accessions noop -if ( !support.optSelected ) { - jQuery.propHooks.selected = { - get: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent && parent.parentNode ) { - parent.parentNode.selectedIndex; - } - return null; - }, - set: function( elem ) { - - /* eslint no-unused-expressions: "off" */ - - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - }; -} - -jQuery.each( [ - "tabIndex", - "readOnly", - "maxLength", - "cellSpacing", - "cellPadding", - "rowSpan", - "colSpan", - "useMap", - "frameBorder", - "contentEditable" -], function() { - jQuery.propFix[ this.toLowerCase() ] = this; -} ); - - - - - // Strip and collapse whitespace according to HTML spec - // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace - function stripAndCollapse( value ) { - var tokens = value.match( rnothtmlwhite ) || []; - return tokens.join( " " ); - } - - -function getClass( elem ) { - return elem.getAttribute && elem.getAttribute( "class" ) || ""; -} - -function classesToArray( value ) { - if ( Array.isArray( value ) ) { - return value; - } - if ( typeof value === "string" ) { - return value.match( rnothtmlwhite ) || []; - } - return []; -} - -jQuery.fn.extend( { - addClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - if ( cur.indexOf( " " + clazz + " " ) < 0 ) { - cur += clazz + " "; - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - var classes, elem, cur, curValue, clazz, j, finalValue, - i = 0; - - if ( isFunction( value ) ) { - return this.each( function( j ) { - jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); - } ); - } - - if ( !arguments.length ) { - return this.attr( "class", "" ); - } - - classes = classesToArray( value ); - - if ( classes.length ) { - while ( ( elem = this[ i++ ] ) ) { - curValue = getClass( elem ); - - // This expression is here for better compressibility (see addClass) - cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); - - if ( cur ) { - j = 0; - while ( ( clazz = classes[ j++ ] ) ) { - - // Remove *all* instances - while ( cur.indexOf( " " + clazz + " " ) > -1 ) { - cur = cur.replace( " " + clazz + " ", " " ); - } - } - - // Only assign if different to avoid unneeded rendering. - finalValue = stripAndCollapse( cur ); - if ( curValue !== finalValue ) { - elem.setAttribute( "class", finalValue ); - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isValidValue = type === "string" || Array.isArray( value ); - - if ( typeof stateVal === "boolean" && isValidValue ) { - return stateVal ? this.addClass( value ) : this.removeClass( value ); - } - - if ( isFunction( value ) ) { - return this.each( function( i ) { - jQuery( this ).toggleClass( - value.call( this, i, getClass( this ), stateVal ), - stateVal - ); - } ); - } - - return this.each( function() { - var className, i, self, classNames; - - if ( isValidValue ) { - - // Toggle individual class names - i = 0; - self = jQuery( this ); - classNames = classesToArray( value ); - - while ( ( className = classNames[ i++ ] ) ) { - - // Check each className given, space separated list - if ( self.hasClass( className ) ) { - self.removeClass( className ); - } else { - self.addClass( className ); - } - } - - // Toggle whole class name - } else if ( value === undefined || type === "boolean" ) { - className = getClass( this ); - if ( className ) { - - // Store className if set - dataPriv.set( this, "__className__", className ); - } - - // If the element has a class name or if we're passed `false`, - // then remove the whole classname (if there was one, the above saved it). - // Otherwise bring back whatever was previously saved (if anything), - // falling back to the empty string if nothing was stored. - if ( this.setAttribute ) { - this.setAttribute( "class", - className || value === false ? - "" : - dataPriv.get( this, "__className__" ) || "" - ); - } - } - } ); - }, - - hasClass: function( selector ) { - var className, elem, - i = 0; - - className = " " + selector + " "; - while ( ( elem = this[ i++ ] ) ) { - if ( elem.nodeType === 1 && - ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { - return true; - } - } - - return false; - } -} ); - - - - -var rreturn = /\r/g; - -jQuery.fn.extend( { - val: function( value ) { - var hooks, ret, valueIsFunction, - elem = this[ 0 ]; - - if ( !arguments.length ) { - if ( elem ) { - hooks = jQuery.valHooks[ elem.type ] || - jQuery.valHooks[ elem.nodeName.toLowerCase() ]; - - if ( hooks && - "get" in hooks && - ( ret = hooks.get( elem, "value" ) ) !== undefined - ) { - return ret; - } - - ret = elem.value; - - // Handle most common string cases - if ( typeof ret === "string" ) { - return ret.replace( rreturn, "" ); - } - - // Handle cases where value is null/undef or number - return ret == null ? "" : ret; - } - - return; - } - - valueIsFunction = isFunction( value ); - - return this.each( function( i ) { - var val; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( valueIsFunction ) { - val = value.call( this, i, jQuery( this ).val() ); - } else { - val = value; - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - - } else if ( typeof val === "number" ) { - val += ""; - - } else if ( Array.isArray( val ) ) { - val = jQuery.map( val, function( value ) { - return value == null ? "" : value + ""; - } ); - } - - hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; - - // If set returns undefined, fall back to normal setting - if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { - this.value = val; - } - } ); - } -} ); - -jQuery.extend( { - valHooks: { - option: { - get: function( elem ) { - - var val = jQuery.find.attr( elem, "value" ); - return val != null ? - val : - - // Support: IE <=10 - 11 only - // option.text throws exceptions (#14686, #14858) - // Strip and collapse whitespace - // https://html.spec.whatwg.org/#strip-and-collapse-whitespace - stripAndCollapse( jQuery.text( elem ) ); - } - }, - select: { - get: function( elem ) { - var value, option, i, - options = elem.options, - index = elem.selectedIndex, - one = elem.type === "select-one", - values = one ? null : [], - max = one ? index + 1 : options.length; - - if ( index < 0 ) { - i = max; - - } else { - i = one ? index : 0; - } - - // Loop through all the selected options - for ( ; i < max; i++ ) { - option = options[ i ]; - - // Support: IE <=9 only - // IE8-9 doesn't update selected after form reset (#2551) - if ( ( option.selected || i === index ) && - - // Don't return options that are disabled or in a disabled optgroup - !option.disabled && - ( !option.parentNode.disabled || - !nodeName( option.parentNode, "optgroup" ) ) ) { - - // Get the specific value for the option - value = jQuery( option ).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - }, - - set: function( elem, value ) { - var optionSet, option, - options = elem.options, - values = jQuery.makeArray( value ), - i = options.length; - - while ( i-- ) { - option = options[ i ]; - - /* eslint-disable no-cond-assign */ - - if ( option.selected = - jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 - ) { - optionSet = true; - } - - /* eslint-enable no-cond-assign */ - } - - // Force browsers to behave consistently when non-matching value is set - if ( !optionSet ) { - elem.selectedIndex = -1; - } - return values; - } - } - } -} ); - -// Radios and checkboxes getter/setter -jQuery.each( [ "radio", "checkbox" ], function() { - jQuery.valHooks[ this ] = { - set: function( elem, value ) { - if ( Array.isArray( value ) ) { - return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); - } - } - }; - if ( !support.checkOn ) { - jQuery.valHooks[ this ].get = function( elem ) { - return elem.getAttribute( "value" ) === null ? "on" : elem.value; - }; - } -} ); - - - - -// Return jQuery for attributes-only inclusion - - -support.focusin = "onfocusin" in window; - - -var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, - stopPropagationCallback = function( e ) { - e.stopPropagation(); - }; - -jQuery.extend( jQuery.event, { - - trigger: function( event, data, elem, onlyHandlers ) { - - var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, - eventPath = [ elem || document ], - type = hasOwn.call( event, "type" ) ? event.type : event, - namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; - - cur = lastElement = tmp = elem = elem || document; - - // Don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // focus/blur morphs to focusin/out; ensure we're not firing them right now - if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { - return; - } - - if ( type.indexOf( "." ) > -1 ) { - - // Namespaced trigger; create a regexp to match event type in handle() - namespaces = type.split( "." ); - type = namespaces.shift(); - namespaces.sort(); - } - ontype = type.indexOf( ":" ) < 0 && "on" + type; - - // Caller can pass in a jQuery.Event object, Object, or just an event type string - event = event[ jQuery.expando ] ? - event : - new jQuery.Event( type, typeof event === "object" && event ); - - // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) - event.isTrigger = onlyHandlers ? 2 : 3; - event.namespace = namespaces.join( "." ); - event.rnamespace = event.namespace ? - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : - null; - - // Clean up the event in case it is being reused - event.result = undefined; - if ( !event.target ) { - event.target = elem; - } - - // Clone any incoming data and prepend the event, creating the handler arg list - data = data == null ? - [ event ] : - jQuery.makeArray( data, [ event ] ); - - // Allow special events to draw outside the lines - special = jQuery.event.special[ type ] || {}; - if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { - return; - } - - // Determine event propagation path in advance, per W3C events spec (#9951) - // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) - if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { - - bubbleType = special.delegateType || type; - if ( !rfocusMorph.test( bubbleType + type ) ) { - cur = cur.parentNode; - } - for ( ; cur; cur = cur.parentNode ) { - eventPath.push( cur ); - tmp = cur; - } - - // Only add window if we got to document (e.g., not plain obj or detached DOM) - if ( tmp === ( elem.ownerDocument || document ) ) { - eventPath.push( tmp.defaultView || tmp.parentWindow || window ); - } - } - - // Fire handlers on the event path - i = 0; - while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { - lastElement = cur; - event.type = i > 1 ? - bubbleType : - special.bindType || type; - - // jQuery handler - handle = ( - dataPriv.get( cur, "events" ) || Object.create( null ) - )[ event.type ] && - dataPriv.get( cur, "handle" ); - if ( handle ) { - handle.apply( cur, data ); - } - - // Native handler - handle = ontype && cur[ ontype ]; - if ( handle && handle.apply && acceptData( cur ) ) { - event.result = handle.apply( cur, data ); - if ( event.result === false ) { - event.preventDefault(); - } - } - } - event.type = type; - - // If nobody prevented the default action, do it now - if ( !onlyHandlers && !event.isDefaultPrevented() ) { - - if ( ( !special._default || - special._default.apply( eventPath.pop(), data ) === false ) && - acceptData( elem ) ) { - - // Call a native DOM method on the target with the same name as the event. - // Don't do default actions on window, that's where global variables be (#6170) - if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { - - // Don't re-trigger an onFOO event when we call its FOO() method - tmp = elem[ ontype ]; - - if ( tmp ) { - elem[ ontype ] = null; - } - - // Prevent re-triggering of the same event, since we already bubbled it above - jQuery.event.triggered = type; - - if ( event.isPropagationStopped() ) { - lastElement.addEventListener( type, stopPropagationCallback ); - } - - elem[ type ](); - - if ( event.isPropagationStopped() ) { - lastElement.removeEventListener( type, stopPropagationCallback ); - } - - jQuery.event.triggered = undefined; - - if ( tmp ) { - elem[ ontype ] = tmp; - } - } - } - } - - return event.result; - }, - - // Piggyback on a donor event to simulate a different one - // Used only for `focus(in | out)` events - simulate: function( type, elem, event ) { - var e = jQuery.extend( - new jQuery.Event(), - event, - { - type: type, - isSimulated: true - } - ); - - jQuery.event.trigger( e, null, elem ); - } - -} ); - -jQuery.fn.extend( { - - trigger: function( type, data ) { - return this.each( function() { - jQuery.event.trigger( type, data, this ); - } ); - }, - triggerHandler: function( type, data ) { - var elem = this[ 0 ]; - if ( elem ) { - return jQuery.event.trigger( type, data, elem, true ); - } - } -} ); - - -// Support: Firefox <=44 -// Firefox doesn't have focus(in | out) events -// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 -// -// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 -// focus(in | out) events fire after focus & blur events, -// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order -// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 -if ( !support.focusin ) { - jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { - - // Attach a single capturing handler on the document while someone wants focusin/focusout - var handler = function( event ) { - jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); - }; - - jQuery.event.special[ fix ] = { - setup: function() { - - // Handle: regular nodes (via `this.ownerDocument`), window - // (via `this.document`) & document (via `this`). - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ); - - if ( !attaches ) { - doc.addEventListener( orig, handler, true ); - } - dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); - }, - teardown: function() { - var doc = this.ownerDocument || this.document || this, - attaches = dataPriv.access( doc, fix ) - 1; - - if ( !attaches ) { - doc.removeEventListener( orig, handler, true ); - dataPriv.remove( doc, fix ); - - } else { - dataPriv.access( doc, fix, attaches ); - } - } - }; - } ); -} -var location = window.location; - -var nonce = { guid: Date.now() }; - -var rquery = ( /\?/ ); - - - -// Cross-browser xml parsing -jQuery.parseXML = function( data ) { - var xml; - if ( !data || typeof data !== "string" ) { - return null; - } - - // Support: IE 9 - 11 only - // IE throws on parseFromString with invalid input. - try { - xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); - } catch ( e ) { - xml = undefined; - } - - if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { - jQuery.error( "Invalid XML: " + data ); - } - return xml; -}; - - -var - rbracket = /\[\]$/, - rCRLF = /\r?\n/g, - rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, - rsubmittable = /^(?:input|select|textarea|keygen)/i; - -function buildParams( prefix, obj, traditional, add ) { - var name; - - if ( Array.isArray( obj ) ) { - - // Serialize array item. - jQuery.each( obj, function( i, v ) { - if ( traditional || rbracket.test( prefix ) ) { - - // Treat each array item as a scalar. - add( prefix, v ); - - } else { - - // Item is non-scalar (array or object), encode its numeric index. - buildParams( - prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", - v, - traditional, - add - ); - } - } ); - - } else if ( !traditional && toType( obj ) === "object" ) { - - // Serialize object item. - for ( name in obj ) { - buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); - } - - } else { - - // Serialize scalar item. - add( prefix, obj ); - } -} - -// Serialize an array of form elements or a set of -// key/values into a query string -jQuery.param = function( a, traditional ) { - var prefix, - s = [], - add = function( key, valueOrFunction ) { - - // If value is a function, invoke it and use its return value - var value = isFunction( valueOrFunction ) ? - valueOrFunction() : - valueOrFunction; - - s[ s.length ] = encodeURIComponent( key ) + "=" + - encodeURIComponent( value == null ? "" : value ); - }; - - if ( a == null ) { - return ""; - } - - // If an array was passed in, assume that it is an array of form elements. - if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { - - // Serialize the form elements - jQuery.each( a, function() { - add( this.name, this.value ); - } ); - - } else { - - // If traditional, encode the "old" way (the way 1.3.2 or older - // did it), otherwise encode params recursively. - for ( prefix in a ) { - buildParams( prefix, a[ prefix ], traditional, add ); - } - } - - // Return the resulting serialization - return s.join( "&" ); -}; - -jQuery.fn.extend( { - serialize: function() { - return jQuery.param( this.serializeArray() ); - }, - serializeArray: function() { - return this.map( function() { - - // Can add propHook for "elements" to filter or add form elements - var elements = jQuery.prop( this, "elements" ); - return elements ? jQuery.makeArray( elements ) : this; - } ) - .filter( function() { - var type = this.type; - - // Use .is( ":disabled" ) so that fieldset[disabled] works - return this.name && !jQuery( this ).is( ":disabled" ) && - rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && - ( this.checked || !rcheckableType.test( type ) ); - } ) - .map( function( _i, elem ) { - var val = jQuery( this ).val(); - - if ( val == null ) { - return null; - } - - if ( Array.isArray( val ) ) { - return jQuery.map( val, function( val ) { - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ); - } - - return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; - } ).get(); - } -} ); - - -var - r20 = /%20/g, - rhash = /#.*$/, - rantiCache = /([?&])_=[^&]*/, - rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, - - // #7653, #8125, #8152: local protocol detection - rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, - rnoContent = /^(?:GET|HEAD)$/, - rprotocol = /^\/\//, - - /* Prefilters - * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) - * 2) These are called: - * - BEFORE asking for a transport - * - AFTER param serialization (s.data is a string if s.processData is true) - * 3) key is the dataType - * 4) the catchall symbol "*" can be used - * 5) execution will start with transport dataType and THEN continue down to "*" if needed - */ - prefilters = {}, - - /* Transports bindings - * 1) key is the dataType - * 2) the catchall symbol "*" can be used - * 3) selection will start with transport dataType and THEN go to "*" if needed - */ - transports = {}, - - // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression - allTypes = "*/".concat( "*" ), - - // Anchor tag for parsing the document origin - originAnchor = document.createElement( "a" ); - originAnchor.href = location.href; - -// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport -function addToPrefiltersOrTransports( structure ) { - - // dataTypeExpression is optional and defaults to "*" - return function( dataTypeExpression, func ) { - - if ( typeof dataTypeExpression !== "string" ) { - func = dataTypeExpression; - dataTypeExpression = "*"; - } - - var dataType, - i = 0, - dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; - - if ( isFunction( func ) ) { - - // For each dataType in the dataTypeExpression - while ( ( dataType = dataTypes[ i++ ] ) ) { - - // Prepend if requested - if ( dataType[ 0 ] === "+" ) { - dataType = dataType.slice( 1 ) || "*"; - ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); - - // Otherwise append - } else { - ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); - } - } - } - }; -} - -// Base inspection function for prefilters and transports -function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { - - var inspected = {}, - seekingTransport = ( structure === transports ); - - function inspect( dataType ) { - var selected; - inspected[ dataType ] = true; - jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { - var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); - if ( typeof dataTypeOrTransport === "string" && - !seekingTransport && !inspected[ dataTypeOrTransport ] ) { - - options.dataTypes.unshift( dataTypeOrTransport ); - inspect( dataTypeOrTransport ); - return false; - } else if ( seekingTransport ) { - return !( selected = dataTypeOrTransport ); - } - } ); - return selected; - } - - return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); -} - -// A special extend for ajax options -// that takes "flat" options (not to be deep extended) -// Fixes #9887 -function ajaxExtend( target, src ) { - var key, deep, - flatOptions = jQuery.ajaxSettings.flatOptions || {}; - - for ( key in src ) { - if ( src[ key ] !== undefined ) { - ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; - } - } - if ( deep ) { - jQuery.extend( true, target, deep ); - } - - return target; -} - -/* Handles responses to an ajax request: - * - finds the right dataType (mediates between content-type and expected dataType) - * - returns the corresponding response - */ -function ajaxHandleResponses( s, jqXHR, responses ) { - - var ct, type, finalDataType, firstDataType, - contents = s.contents, - dataTypes = s.dataTypes; - - // Remove auto dataType and get content-type in the process - while ( dataTypes[ 0 ] === "*" ) { - dataTypes.shift(); - if ( ct === undefined ) { - ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); - } - } - - // Check if we're dealing with a known content-type - if ( ct ) { - for ( type in contents ) { - if ( contents[ type ] && contents[ type ].test( ct ) ) { - dataTypes.unshift( type ); - break; - } - } - } - - // Check to see if we have a response for the expected dataType - if ( dataTypes[ 0 ] in responses ) { - finalDataType = dataTypes[ 0 ]; - } else { - - // Try convertible dataTypes - for ( type in responses ) { - if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { - finalDataType = type; - break; - } - if ( !firstDataType ) { - firstDataType = type; - } - } - - // Or just use first one - finalDataType = finalDataType || firstDataType; - } - - // If we found a dataType - // We add the dataType to the list if needed - // and return the corresponding response - if ( finalDataType ) { - if ( finalDataType !== dataTypes[ 0 ] ) { - dataTypes.unshift( finalDataType ); - } - return responses[ finalDataType ]; - } -} - -/* Chain conversions given the request and the original response - * Also sets the responseXXX fields on the jqXHR instance - */ -function ajaxConvert( s, response, jqXHR, isSuccess ) { - var conv2, current, conv, tmp, prev, - converters = {}, - - // Work with a copy of dataTypes in case we need to modify it for conversion - dataTypes = s.dataTypes.slice(); - - // Create converters map with lowercased keys - if ( dataTypes[ 1 ] ) { - for ( conv in s.converters ) { - converters[ conv.toLowerCase() ] = s.converters[ conv ]; - } - } - - current = dataTypes.shift(); - - // Convert to each sequential dataType - while ( current ) { - - if ( s.responseFields[ current ] ) { - jqXHR[ s.responseFields[ current ] ] = response; - } - - // Apply the dataFilter if provided - if ( !prev && isSuccess && s.dataFilter ) { - response = s.dataFilter( response, s.dataType ); - } - - prev = current; - current = dataTypes.shift(); - - if ( current ) { - - // There's only work to do if current dataType is non-auto - if ( current === "*" ) { - - current = prev; - - // Convert response if prev dataType is non-auto and differs from current - } else if ( prev !== "*" && prev !== current ) { - - // Seek a direct converter - conv = converters[ prev + " " + current ] || converters[ "* " + current ]; - - // If none found, seek a pair - if ( !conv ) { - for ( conv2 in converters ) { - - // If conv2 outputs current - tmp = conv2.split( " " ); - if ( tmp[ 1 ] === current ) { - - // If prev can be converted to accepted input - conv = converters[ prev + " " + tmp[ 0 ] ] || - converters[ "* " + tmp[ 0 ] ]; - if ( conv ) { - - // Condense equivalence converters - if ( conv === true ) { - conv = converters[ conv2 ]; - - // Otherwise, insert the intermediate dataType - } else if ( converters[ conv2 ] !== true ) { - current = tmp[ 0 ]; - dataTypes.unshift( tmp[ 1 ] ); - } - break; - } - } - } - } - - // Apply converter (if not an equivalence) - if ( conv !== true ) { - - // Unless errors are allowed to bubble, catch and return them - if ( conv && s.throws ) { - response = conv( response ); - } else { - try { - response = conv( response ); - } catch ( e ) { - return { - state: "parsererror", - error: conv ? e : "No conversion from " + prev + " to " + current - }; - } - } - } - } - } - } - - return { state: "success", data: response }; -} - -jQuery.extend( { - - // Counter for holding the number of active queries - active: 0, - - // Last-Modified header cache for next request - lastModified: {}, - etag: {}, - - ajaxSettings: { - url: location.href, - type: "GET", - isLocal: rlocalProtocol.test( location.protocol ), - global: true, - processData: true, - async: true, - contentType: "application/x-www-form-urlencoded; charset=UTF-8", - - /* - timeout: 0, - data: null, - dataType: null, - username: null, - password: null, - cache: null, - throws: false, - traditional: false, - headers: {}, - */ - - accepts: { - "*": allTypes, - text: "text/plain", - html: "text/html", - xml: "application/xml, text/xml", - json: "application/json, text/javascript" - }, - - contents: { - xml: /\bxml\b/, - html: /\bhtml/, - json: /\bjson\b/ - }, - - responseFields: { - xml: "responseXML", - text: "responseText", - json: "responseJSON" - }, - - // Data converters - // Keys separate source (or catchall "*") and destination types with a single space - converters: { - - // Convert anything to text - "* text": String, - - // Text to html (true = no transformation) - "text html": true, - - // Evaluate text as a json expression - "text json": JSON.parse, - - // Parse text as xml - "text xml": jQuery.parseXML - }, - - // For options that shouldn't be deep extended: - // you can add your own custom options here if - // and when you create one that shouldn't be - // deep extended (see ajaxExtend) - flatOptions: { - url: true, - context: true - } - }, - - // Creates a full fledged settings object into target - // with both ajaxSettings and settings fields. - // If target is omitted, writes into ajaxSettings. - ajaxSetup: function( target, settings ) { - return settings ? - - // Building a settings object - ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : - - // Extending ajaxSettings - ajaxExtend( jQuery.ajaxSettings, target ); - }, - - ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), - ajaxTransport: addToPrefiltersOrTransports( transports ), - - // Main method - ajax: function( url, options ) { - - // If url is an object, simulate pre-1.5 signature - if ( typeof url === "object" ) { - options = url; - url = undefined; - } - - // Force options to be an object - options = options || {}; - - var transport, - - // URL without anti-cache param - cacheURL, - - // Response headers - responseHeadersString, - responseHeaders, - - // timeout handle - timeoutTimer, - - // Url cleanup var - urlAnchor, - - // Request state (becomes false upon send and true upon completion) - completed, - - // To know if global events are to be dispatched - fireGlobals, - - // Loop variable - i, - - // uncached part of the url - uncached, - - // Create the final options object - s = jQuery.ajaxSetup( {}, options ), - - // Callbacks context - callbackContext = s.context || s, - - // Context for global events is callbackContext if it is a DOM node or jQuery collection - globalEventContext = s.context && - ( callbackContext.nodeType || callbackContext.jquery ) ? - jQuery( callbackContext ) : - jQuery.event, - - // Deferreds - deferred = jQuery.Deferred(), - completeDeferred = jQuery.Callbacks( "once memory" ), - - // Status-dependent callbacks - statusCode = s.statusCode || {}, - - // Headers (they are sent all at once) - requestHeaders = {}, - requestHeadersNames = {}, - - // Default abort message - strAbort = "canceled", - - // Fake xhr - jqXHR = { - readyState: 0, - - // Builds headers hashtable if needed - getResponseHeader: function( key ) { - var match; - if ( completed ) { - if ( !responseHeaders ) { - responseHeaders = {}; - while ( ( match = rheaders.exec( responseHeadersString ) ) ) { - responseHeaders[ match[ 1 ].toLowerCase() + " " ] = - ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) - .concat( match[ 2 ] ); - } - } - match = responseHeaders[ key.toLowerCase() + " " ]; - } - return match == null ? null : match.join( ", " ); - }, - - // Raw string - getAllResponseHeaders: function() { - return completed ? responseHeadersString : null; - }, - - // Caches the header - setRequestHeader: function( name, value ) { - if ( completed == null ) { - name = requestHeadersNames[ name.toLowerCase() ] = - requestHeadersNames[ name.toLowerCase() ] || name; - requestHeaders[ name ] = value; - } - return this; - }, - - // Overrides response content-type header - overrideMimeType: function( type ) { - if ( completed == null ) { - s.mimeType = type; - } - return this; - }, - - // Status-dependent callbacks - statusCode: function( map ) { - var code; - if ( map ) { - if ( completed ) { - - // Execute the appropriate callbacks - jqXHR.always( map[ jqXHR.status ] ); - } else { - - // Lazy-add the new callbacks in a way that preserves old ones - for ( code in map ) { - statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; - } - } - } - return this; - }, - - // Cancel the request - abort: function( statusText ) { - var finalText = statusText || strAbort; - if ( transport ) { - transport.abort( finalText ); - } - done( 0, finalText ); - return this; - } - }; - - // Attach deferreds - deferred.promise( jqXHR ); - - // Add protocol if not provided (prefilters might expect it) - // Handle falsy url in the settings object (#10093: consistency with old signature) - // We also use the url parameter if available - s.url = ( ( url || s.url || location.href ) + "" ) - .replace( rprotocol, location.protocol + "//" ); - - // Alias method option to type as per ticket #12004 - s.type = options.method || options.type || s.method || s.type; - - // Extract dataTypes list - s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; - - // A cross-domain request is in order when the origin doesn't match the current origin. - if ( s.crossDomain == null ) { - urlAnchor = document.createElement( "a" ); - - // Support: IE <=8 - 11, Edge 12 - 15 - // IE throws exception on accessing the href property if url is malformed, - // e.g. http://example.com:80x/ - try { - urlAnchor.href = s.url; - - // Support: IE <=8 - 11 only - // Anchor's host property isn't correctly set when s.url is relative - urlAnchor.href = urlAnchor.href; - s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== - urlAnchor.protocol + "//" + urlAnchor.host; - } catch ( e ) { - - // If there is an error parsing the URL, assume it is crossDomain, - // it can be rejected by the transport if it is invalid - s.crossDomain = true; - } - } - - // Convert data if not already a string - if ( s.data && s.processData && typeof s.data !== "string" ) { - s.data = jQuery.param( s.data, s.traditional ); - } - - // Apply prefilters - inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); - - // If request was aborted inside a prefilter, stop there - if ( completed ) { - return jqXHR; - } - - // We can fire global events as of now if asked to - // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) - fireGlobals = jQuery.event && s.global; - - // Watch for a new set of requests - if ( fireGlobals && jQuery.active++ === 0 ) { - jQuery.event.trigger( "ajaxStart" ); - } - - // Uppercase the type - s.type = s.type.toUpperCase(); - - // Determine if request has content - s.hasContent = !rnoContent.test( s.type ); - - // Save the URL in case we're toying with the If-Modified-Since - // and/or If-None-Match header later on - // Remove hash to simplify url manipulation - cacheURL = s.url.replace( rhash, "" ); - - // More options handling for requests with no content - if ( !s.hasContent ) { - - // Remember the hash so we can put it back - uncached = s.url.slice( cacheURL.length ); - - // If data is available and should be processed, append data to url - if ( s.data && ( s.processData || typeof s.data === "string" ) ) { - cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; - - // #9682: remove data so that it's not used in an eventual retry - delete s.data; - } - - // Add or update anti-cache param if needed - if ( s.cache === false ) { - cacheURL = cacheURL.replace( rantiCache, "$1" ); - uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + - uncached; - } - - // Put hash and anti-cache on the URL that will be requested (gh-1732) - s.url = cacheURL + uncached; - - // Change '%20' to '+' if this is encoded form body content (gh-2658) - } else if ( s.data && s.processData && - ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { - s.data = s.data.replace( r20, "+" ); - } - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - if ( jQuery.lastModified[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); - } - if ( jQuery.etag[ cacheURL ] ) { - jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); - } - } - - // Set the correct header, if data is being sent - if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { - jqXHR.setRequestHeader( "Content-Type", s.contentType ); - } - - // Set the Accepts header for the server, depending on the dataType - jqXHR.setRequestHeader( - "Accept", - s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? - s.accepts[ s.dataTypes[ 0 ] ] + - ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : - s.accepts[ "*" ] - ); - - // Check for headers option - for ( i in s.headers ) { - jqXHR.setRequestHeader( i, s.headers[ i ] ); - } - - // Allow custom headers/mimetypes and early abort - if ( s.beforeSend && - ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { - - // Abort if not done already and return - return jqXHR.abort(); - } - - // Aborting is no longer a cancellation - strAbort = "abort"; - - // Install callbacks on deferreds - completeDeferred.add( s.complete ); - jqXHR.done( s.success ); - jqXHR.fail( s.error ); - - // Get transport - transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); - - // If no transport, we auto-abort - if ( !transport ) { - done( -1, "No Transport" ); - } else { - jqXHR.readyState = 1; - - // Send global event - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); - } - - // If request was aborted inside ajaxSend, stop there - if ( completed ) { - return jqXHR; - } - - // Timeout - if ( s.async && s.timeout > 0 ) { - timeoutTimer = window.setTimeout( function() { - jqXHR.abort( "timeout" ); - }, s.timeout ); - } - - try { - completed = false; - transport.send( requestHeaders, done ); - } catch ( e ) { - - // Rethrow post-completion exceptions - if ( completed ) { - throw e; - } - - // Propagate others as results - done( -1, e ); - } - } - - // Callback for when everything is done - function done( status, nativeStatusText, responses, headers ) { - var isSuccess, success, error, response, modified, - statusText = nativeStatusText; - - // Ignore repeat invocations - if ( completed ) { - return; - } - - completed = true; - - // Clear timeout if it exists - if ( timeoutTimer ) { - window.clearTimeout( timeoutTimer ); - } - - // Dereference transport for early garbage collection - // (no matter how long the jqXHR object will be used) - transport = undefined; - - // Cache response headers - responseHeadersString = headers || ""; - - // Set readyState - jqXHR.readyState = status > 0 ? 4 : 0; - - // Determine if successful - isSuccess = status >= 200 && status < 300 || status === 304; - - // Get response data - if ( responses ) { - response = ajaxHandleResponses( s, jqXHR, responses ); - } - - // Use a noop converter for missing script - if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { - s.converters[ "text script" ] = function() {}; - } - - // Convert no matter what (that way responseXXX fields are always set) - response = ajaxConvert( s, response, jqXHR, isSuccess ); - - // If successful, handle type chaining - if ( isSuccess ) { - - // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. - if ( s.ifModified ) { - modified = jqXHR.getResponseHeader( "Last-Modified" ); - if ( modified ) { - jQuery.lastModified[ cacheURL ] = modified; - } - modified = jqXHR.getResponseHeader( "etag" ); - if ( modified ) { - jQuery.etag[ cacheURL ] = modified; - } - } - - // if no content - if ( status === 204 || s.type === "HEAD" ) { - statusText = "nocontent"; - - // if not modified - } else if ( status === 304 ) { - statusText = "notmodified"; - - // If we have data, let's convert it - } else { - statusText = response.state; - success = response.data; - error = response.error; - isSuccess = !error; - } - } else { - - // Extract error from statusText and normalize for non-aborts - error = statusText; - if ( status || !statusText ) { - statusText = "error"; - if ( status < 0 ) { - status = 0; - } - } - } - - // Set data for the fake xhr object - jqXHR.status = status; - jqXHR.statusText = ( nativeStatusText || statusText ) + ""; - - // Success/Error - if ( isSuccess ) { - deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); - } else { - deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); - } - - // Status-dependent callbacks - jqXHR.statusCode( statusCode ); - statusCode = undefined; - - if ( fireGlobals ) { - globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", - [ jqXHR, s, isSuccess ? success : error ] ); - } - - // Complete - completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); - - if ( fireGlobals ) { - globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); - - // Handle the global AJAX counter - if ( !( --jQuery.active ) ) { - jQuery.event.trigger( "ajaxStop" ); - } - } - } - - return jqXHR; - }, - - getJSON: function( url, data, callback ) { - return jQuery.get( url, data, callback, "json" ); - }, - - getScript: function( url, callback ) { - return jQuery.get( url, undefined, callback, "script" ); - } -} ); - -jQuery.each( [ "get", "post" ], function( _i, method ) { - jQuery[ method ] = function( url, data, callback, type ) { - - // Shift arguments if data argument was omitted - if ( isFunction( data ) ) { - type = type || callback; - callback = data; - data = undefined; - } - - // The url can be an options object (which then must have .url) - return jQuery.ajax( jQuery.extend( { - url: url, - type: method, - dataType: type, - data: data, - success: callback - }, jQuery.isPlainObject( url ) && url ) ); - }; -} ); - -jQuery.ajaxPrefilter( function( s ) { - var i; - for ( i in s.headers ) { - if ( i.toLowerCase() === "content-type" ) { - s.contentType = s.headers[ i ] || ""; - } - } -} ); - - -jQuery._evalUrl = function( url, options, doc ) { - return jQuery.ajax( { - url: url, - - // Make this explicit, since user can override this through ajaxSetup (#11264) - type: "GET", - dataType: "script", - cache: true, - async: false, - global: false, - - // Only evaluate the response if it is successful (gh-4126) - // dataFilter is not invoked for failure responses, so using it instead - // of the default converter is kludgy but it works. - converters: { - "text script": function() {} - }, - dataFilter: function( response ) { - jQuery.globalEval( response, options, doc ); - } - } ); -}; - - -jQuery.fn.extend( { - wrapAll: function( html ) { - var wrap; - - if ( this[ 0 ] ) { - if ( isFunction( html ) ) { - html = html.call( this[ 0 ] ); - } - - // The elements to wrap the target around - wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); - - if ( this[ 0 ].parentNode ) { - wrap.insertBefore( this[ 0 ] ); - } - - wrap.map( function() { - var elem = this; - - while ( elem.firstElementChild ) { - elem = elem.firstElementChild; - } - - return elem; - } ).append( this ); - } - - return this; - }, - - wrapInner: function( html ) { - if ( isFunction( html ) ) { - return this.each( function( i ) { - jQuery( this ).wrapInner( html.call( this, i ) ); - } ); - } - - return this.each( function() { - var self = jQuery( this ), - contents = self.contents(); - - if ( contents.length ) { - contents.wrapAll( html ); - - } else { - self.append( html ); - } - } ); - }, - - wrap: function( html ) { - var htmlIsFunction = isFunction( html ); - - return this.each( function( i ) { - jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); - } ); - }, - - unwrap: function( selector ) { - this.parent( selector ).not( "body" ).each( function() { - jQuery( this ).replaceWith( this.childNodes ); - } ); - return this; - } -} ); - - -jQuery.expr.pseudos.hidden = function( elem ) { - return !jQuery.expr.pseudos.visible( elem ); -}; -jQuery.expr.pseudos.visible = function( elem ) { - return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); -}; - - - - -jQuery.ajaxSettings.xhr = function() { - try { - return new window.XMLHttpRequest(); - } catch ( e ) {} -}; - -var xhrSuccessStatus = { - - // File protocol always yields status code 0, assume 200 - 0: 200, - - // Support: IE <=9 only - // #1450: sometimes IE returns 1223 when it should be 204 - 1223: 204 - }, - xhrSupported = jQuery.ajaxSettings.xhr(); - -support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); -support.ajax = xhrSupported = !!xhrSupported; - -jQuery.ajaxTransport( function( options ) { - var callback, errorCallback; - - // Cross domain only allowed if supported through XMLHttpRequest - if ( support.cors || xhrSupported && !options.crossDomain ) { - return { - send: function( headers, complete ) { - var i, - xhr = options.xhr(); - - xhr.open( - options.type, - options.url, - options.async, - options.username, - options.password - ); - - // Apply custom fields if provided - if ( options.xhrFields ) { - for ( i in options.xhrFields ) { - xhr[ i ] = options.xhrFields[ i ]; - } - } - - // Override mime type if needed - if ( options.mimeType && xhr.overrideMimeType ) { - xhr.overrideMimeType( options.mimeType ); - } - - // X-Requested-With header - // For cross-domain requests, seeing as conditions for a preflight are - // akin to a jigsaw puzzle, we simply never set it to be sure. - // (it can always be set on a per-request basis or even using ajaxSetup) - // For same-domain requests, won't change header if already provided. - if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { - headers[ "X-Requested-With" ] = "XMLHttpRequest"; - } - - // Set headers - for ( i in headers ) { - xhr.setRequestHeader( i, headers[ i ] ); - } - - // Callback - callback = function( type ) { - return function() { - if ( callback ) { - callback = errorCallback = xhr.onload = - xhr.onerror = xhr.onabort = xhr.ontimeout = - xhr.onreadystatechange = null; - - if ( type === "abort" ) { - xhr.abort(); - } else if ( type === "error" ) { - - // Support: IE <=9 only - // On a manual native abort, IE9 throws - // errors on any property access that is not readyState - if ( typeof xhr.status !== "number" ) { - complete( 0, "error" ); - } else { - complete( - - // File: protocol always yields status 0; see #8605, #14207 - xhr.status, - xhr.statusText - ); - } - } else { - complete( - xhrSuccessStatus[ xhr.status ] || xhr.status, - xhr.statusText, - - // Support: IE <=9 only - // IE9 has no XHR2 but throws on binary (trac-11426) - // For XHR2 non-text, let the caller handle it (gh-2498) - ( xhr.responseType || "text" ) !== "text" || - typeof xhr.responseText !== "string" ? - { binary: xhr.response } : - { text: xhr.responseText }, - xhr.getAllResponseHeaders() - ); - } - } - }; - }; - - // Listen to events - xhr.onload = callback(); - errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); - - // Support: IE 9 only - // Use onreadystatechange to replace onabort - // to handle uncaught aborts - if ( xhr.onabort !== undefined ) { - xhr.onabort = errorCallback; - } else { - xhr.onreadystatechange = function() { - - // Check readyState before timeout as it changes - if ( xhr.readyState === 4 ) { - - // Allow onerror to be called first, - // but that will not handle a native abort - // Also, save errorCallback to a variable - // as xhr.onerror cannot be accessed - window.setTimeout( function() { - if ( callback ) { - errorCallback(); - } - } ); - } - }; - } - - // Create the abort callback - callback = callback( "abort" ); - - try { - - // Do send the request (this may raise an exception) - xhr.send( options.hasContent && options.data || null ); - } catch ( e ) { - - // #14683: Only rethrow if this hasn't been notified as an error yet - if ( callback ) { - throw e; - } - } - }, - - abort: function() { - if ( callback ) { - callback(); - } - } - }; - } -} ); - - - - -// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) -jQuery.ajaxPrefilter( function( s ) { - if ( s.crossDomain ) { - s.contents.script = false; - } -} ); - -// Install script dataType -jQuery.ajaxSetup( { - accepts: { - script: "text/javascript, application/javascript, " + - "application/ecmascript, application/x-ecmascript" - }, - contents: { - script: /\b(?:java|ecma)script\b/ - }, - converters: { - "text script": function( text ) { - jQuery.globalEval( text ); - return text; - } - } -} ); - -// Handle cache's special case and crossDomain -jQuery.ajaxPrefilter( "script", function( s ) { - if ( s.cache === undefined ) { - s.cache = false; - } - if ( s.crossDomain ) { - s.type = "GET"; - } -} ); - -// Bind script tag hack transport -jQuery.ajaxTransport( "script", function( s ) { - - // This transport only deals with cross domain or forced-by-attrs requests - if ( s.crossDomain || s.scriptAttrs ) { - var script, callback; - return { - send: function( _, complete ) { - script = jQuery( " - - - + + + + \ No newline at end of file diff --git a/docs/cog_worker/1. worker.html b/docs/cog_worker/1. worker.html index 4af5ba0..0371359 100644 --- a/docs/cog_worker/1. worker.html +++ b/docs/cog_worker/1. worker.html @@ -1,15 +1,15 @@ - + - - cog_worker.worker - Cog Worker 0.2.0 documentation - - - + + cog_worker.worker - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ - - - +
+ + + \ No newline at end of file diff --git a/docs/cog_worker/2. manager.html b/docs/cog_worker/2. manager.html index 3d9048a..3e516fe 100644 --- a/docs/cog_worker/2. manager.html +++ b/docs/cog_worker/2. manager.html @@ -1,15 +1,15 @@ - + - - cog_worker.manager - Cog Worker 0.2.0 documentation - - - + + cog_worker.manager - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ - - - +
+ + + \ No newline at end of file diff --git a/docs/cog_worker/3. distributed.html b/docs/cog_worker/3. distributed.html index af38867..85b2105 100644 --- a/docs/cog_worker/3. distributed.html +++ b/docs/cog_worker/3. distributed.html @@ -1,15 +1,15 @@ - + - - cog_worker.distributed - Cog Worker 0.2.0 documentation - - - + + cog_worker.distributed - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ -
- - - +
+ + + \ No newline at end of file diff --git a/docs/cog_worker/4. types.html b/docs/cog_worker/4. types.html index b506ba1..33d9ac2 100644 --- a/docs/cog_worker/4. types.html +++ b/docs/cog_worker/4. types.html @@ -1,15 +1,15 @@ - + - - cog_worker.types - Cog Worker 0.2.0 documentation - - - + + cog_worker.types - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@
-

alias of Union[Callable[[cog_worker.worker.Worker], ndarray], Callable]

+

alias of Callable[[cog_worker.worker.Worker], ndarray] | Callable

@@ -324,10 +373,10 @@
-
- - - +
+ + + \ No newline at end of file diff --git a/docs/examples.html b/docs/examples.html index 0a1ebe2..356ca2f 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -1,15 +1,15 @@ - + - - Examples - Cog Worker 0.2.0 documentation - - - + + Examples - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ -
- - - +
+ + + \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 34b6944..435b24e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,15 +1,15 @@ - + - - Cog Worker 0.2.0 documentation - - - + + Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ - - - +
+ + + + + \ No newline at end of file diff --git a/docs/key_concepts.html b/docs/key_concepts.html index d5d054a..6a03fa4 100644 --- a/docs/key_concepts.html +++ b/docs/key_concepts.html @@ -1,15 +1,15 @@ - + - - Key concepts - Cog Worker 0.2.0 documentation - - - + + Key concepts - Cog Worker 0.3.0 documentation + + + @@ -68,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -83,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -112,6 +153,8 @@
Hide table of contents sidebar
+
Skip to content +
@@ -123,13 +166,14 @@
@@ -146,7 +190,7 @@ - - - +
+ + + \ No newline at end of file diff --git a/docs/objects.inv b/docs/objects.inv index e5ac7056799aa8d3fa899b3f906ba818b448a0c1..24f161ff1f68d4af31eb024012179fc7039f2ff1 100644 GIT binary patch delta 1869 zcmV-T2eSC{5U~%Cd4F0aZ#{sDQMgRXjHC0uK&FKVCfBnTYn+^?SC6d$zF4d62dvU2_p}K zTyHikWn!~Yw5d2`@q*ydp-kU4^h6^N{gxJ%z&vG(!#4tKOr&TI`XLZs1FhK{6 z1{~y+iKsa#$dNA$%E|k}JeOm*^f2ZHeP{I7Vt9fj)5(c*PI=$5xRcgO!?!53!so0^ zW0vkeXD1046MsS4R4&1sD6gvUSf-I+Svm>GvBz7+H`3T>dirGkyw+HbW!{1EVFcIs zIJB)CZRNMT$Z}eU^DMM-x6|ER0xe2dzG)!mca|P=V6+I-fwKKUEY;H_-6uqB8fVNW z2(iD7`bk+5n zYixY(>fPV_1QXaa`}}NL4OCEL3Q;rH=hHMm0r@0~I*2SlQ3D0!Qz+WOZaz;NZHUqo z#yXnL=YOhk{NgG6Oo*OO&;SMGQz*9M{(PowykTlnc&p@MK3xUll};h2vX%Md6pU9o zg`7@+=Cji{e(@B3I;Wb?PviK-llZALZ2^7?$1k43ugU%9b8N7}Dju$#lx}ps(~ICw zyKdL0x-sx2bDgUN)V-td;I14u8r3b`;3ij|yMMWU(KJ@!%x(-lXL8r4Gm&un7H|>P zZOEaDv-q3)#s%pc#DRLV$g6wJ1*t2%L0WTYFFD%bah^KDi%#qTQ+nQHu5Nu7VOxQP zRVK1kcgl-URY(E3k7PH9jgJ!j7=e)WagFSkC0{snK0_h*^H!jZRnMbXO!!-<^X}KM z0e|m~VU_u;!y$AkeP=ig=`PTrVIg*MuX@AnAcF<^_uG0lqE7>R(_Q5Di~YC`_^}2o z>bo`4FI2uQt!7$CcBuI1qsg8Zr7#IVRonC?*_~DBdyX zIaXOW6(AkMSCaTLjl`>;1aw&gBa)&D7}Zl+0;38T5!3-jgo6@A3K%uOp;5hEabnA74N0+MfDt2EhGR#W@F zpaeEfSUa$RWJjcL4U|Hl85yow3X3#J>KzwCC?C_j#CURHz;tbaK5#0V1E{9nMw)jv$vFm=s_rp)OdrpcLchZGfeV)6g9xOuP`0~ zO++7bc!OoIhM(tPCP2pJDpC*K^f3)Jq~)_VM}8aiF*%@cWyJ7 zQ>SibudDUa$o8oEh@{q*=NjyK#c2#}6*q=+m$CpV`9rk@HKuzi)PHuNg5%|(*n+s! z`&*ZhDcg`{5tHt|W#P4yo~(k6l(0^WvmmteD^o$LG2#^5m+-9Du2y)V;7s^&b^S)q znh{D;cV9CS_BdZkmpgcN()6Bj#>ZX2DisY)vzcH7I2c?q*ND+T=J zI7^drusxT}y{<&25`W1`M|)6#tBO!NE#1JlC2(LWVEe;+nh7{H;0($#9|*SMvHWU8 zFlDo!PmhnN7G1TzYg0|cSv2SiJ=YVh4KVHtH|JG%58R+P*4}He9?(%Y)sBml9@yY* zR_jW`*!SFp^qdS_mIJOYTsfE%YDo6p6PcWNl-@ H4#bjC?>n9@ delta 2065 zcmV+s2=4c>5AzU^d4F3=Z`(K!zUNmE@a~aL*MDy$CVRy#h)ABJJ3n$a z$oXc&V#YTcNt^OR5>5yn98U4;hMs8vqTkZO6xhdVbZry25Exp=HED&4d$O8nZW!+b z^#<%TDFabcl96LRF=$TSCgwRE!>NZc&FCAW?~~zi77ZuIFDcF2mc>$7OAXhePzqm? zQyj8*|0OvKxPOpvQm1kaW<^=c!qX`ZI7{L|K$bn;FuoJUTGP=d{cBxfS(bSN%7x)w zkVig*q8aSQ^EA=A zC=Fq(qJQalt_sI39>PzD=|JB8yG58 z2=26NF-OIXfh(D7TrHsH9fbpTX1UQQZs|HVIe&B9&9#e$vGQkjedt+}yEdJHgzL9} zld!Hsc2yk3U*9)QNM9p%)Eh-!-fK=sUE+1p8bf=^(e{t?&=H>0u{*f*IA< ztsP698%<@&>$|8xvcdy9yPM;X?pRDQiQylKE;-9_G3l5e2*()>7=5ETCe8CGCOIfk zykpRFEVFLPLE49}An`Da#M(^)x~zZ^iBSQJN|zSEr~pO;HGmPxL5U&>j4EK?sDCcz zI6KAolAN-tKP<)}+sVfnj^%9;bS4h5xOAhEP~L0QpphSg8i6bg43RLb28G3_G(^e} zgds8veZBrT$MOV#ve{ zGA>4xU=dew5S?;ZQ@qc00lQvf~BxVC_5aVL92og3(+xWU^)byhN-LUJi zs|YuMcvD-eFpU{YdB2@u?E=!m+QLOzXfOnK=O>(d6vWg;EM@>$W(FJGki+r3u@e(zC_5sw=5D3FMTY((X;ZNPl(t(+OJ? zvDWF{!q02VUUOYJxb{hVn&cu-x%T=BqVj7Ug?43bR06`zCr;lur`a0>B$r>yG}%;^ zu6>_T0vji+9oRsUBT}~pQo+-V2-hrzMH)rrjte0)@6)`%SlKXOJJI#XtoKoZSV+$t z)MXx^Pe53G_|=CN;5=41-+yX2-~~!1Q-bpBEo44=5Xu5M-Z0xc0^Lg)CTZG>8erTP z7*Bxl`FSNVpuuu3bv=T5AEl*AQA9WUGFhs`qcB~nbV3YDhjz5 zdnrN@32+>~G3Nr32Z>5mEuZ9=iZk#FWE+rQMtFh#dHA(L?~EVN3xDX!a4n9)&K7&F zB@2@gE6GAqfJt{u_Dz(LZ z1h&1tR)(gE9mASk7yyO*u}B>%(>>)f%*&+q`ZCLaxYqkim60x+kb1))%~fgO)s$97 z!9=-ljQ=m1=f2DUAv0Z_APgqEhl=LWru4=+u6wq z)#cRPl2Kam`k!{J0n&;+G7;R`~5Krlz)MKRqU)g-3e9 vg+SSSQ~w1=F*2kcv*!yxK**_C=agi@)i-XcPT9OD`3f_vt(*S=b&UWqhS~V? diff --git a/docs/py-modindex.html b/docs/py-modindex.html index 495b037..d6c6138 100644 --- a/docs/py-modindex.html +++ b/docs/py-modindex.html @@ -1,13 +1,13 @@ - + - Python Module Index - Cog Worker 0.2.0 documentation - - - + Python Module Index - Cog Worker 0.3.0 documentation + + + @@ -66,7 +66,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -81,22 +81,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -110,6 +151,8 @@
Hide table of contents sidebar
+
Skip to content +
@@ -121,13 +164,14 @@
@@ -144,7 +188,7 @@ -
- - - +
+ + + \ No newline at end of file diff --git a/docs/search.html b/docs/search.html index 5941ae9..6ca2753 100644 --- a/docs/search.html +++ b/docs/search.html @@ -1,12 +1,15 @@ - - + + + - Search - Cog Worker 0.2.0 documentation - - + + +Search - Cog Worker 0.3.0 documentation + + @@ -65,7 +68,7 @@ Light mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="feather-sun"> @@ -80,22 +83,63 @@ Dark mode + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler-moon"> - - Auto light/dark mode + + Auto light/dark, in light mode - - - - - - - + stroke-width="1" stroke-linecap="round" stroke-linejoin="round" + class="icon-custom-derived-from-feather-sun-and-tabler-moon"> + + + + + + + + + + + + + + Auto light/dark, in dark mode + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -109,6 +153,8 @@
Hide table of contents sidebar
+Skip to content +
@@ -120,13 +166,14 @@
@@ -143,7 +190,7 @@ - - - +
+ + + diff --git a/docs/searchindex.js b/docs/searchindex.js index 2d53e2b..0ebb5d8 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["api_reference", "cog_worker/1. worker", "cog_worker/2. manager", "cog_worker/3. distributed", "cog_worker/4. types", "examples", "examples/1. quick-start", "examples/2. tutorial", "examples/3. tile-server", "examples/4. stac-ndvi", "index", "key_concepts"], "filenames": ["api_reference.rst", "cog_worker/1. worker.rst", "cog_worker/2. manager.rst", "cog_worker/3. distributed.rst", "cog_worker/4. types.rst", "examples.rst", "examples/1. quick-start.ipynb", "examples/2. tutorial.ipynb", "examples/3. tile-server.ipynb", "examples/4. stac-ndvi.ipynb", "index.rst", "key_concepts.rst"], "titles": ["API Reference", "cog_worker.worker", "cog_worker.manager", "cog_worker.distributed", "cog_worker.types", "Examples", "Quick start", "Tutorial example", "Create a custom tile server", "Compute Sentinel-2 NDVI with Stac and Dask", "Cog Worker", "Key concepts"], "terms": {"A": [0, 1, 2, 3, 4, 6, 8, 10], "python": [0, 10], "modul": [0, 10], "scalabl": [0, 2, 6, 10], "analysi": [0, 1, 2, 3, 8, 10], "cloud": [0, 1, 2, 3, 6, 10, 11], "optim": [0, 1, 2, 3, 6, 10, 11], "geotiff": [0, 1, 2, 3, 6, 10], "cog": [0, 1, 2, 3, 4, 6, 7, 8, 11], "worker": [0, 2, 3, 4, 8, 9], "i": [0, 1, 2, 3, 4, 6, 7, 10], "simpl": [0, 6, 8, 10], "librari": [0, 6, 7, 10], "help": [0, 6, 10], "you": [0, 1, 2, 3, 6, 7, 8, 10, 11], "chunk": [0, 2, 3, 4, 10], "run": [0, 2, 3, 7, 10], "larg": [0, 2], "scale": [0, 1, 2, 3, 4, 7, 8, 10, 11], "cog_work": [0, 7, 8, 10, 11], "__init__": [0, 1, 2, 3, 8], "bound": [0, 1, 2, 3, 4, 6, 7, 8], "buffer": [0, 1, 2, 3, 6, 7, 8, 11], "clip_buff": [0, 1], "empti": [0, 1], "height": [0, 1, 2, 8], "lnglat_bound": [0, 1], "proj": [0, 1, 2, 3, 6, 7, 8, 10], "read": [0, 1, 2, 3, 4, 6, 7, 8, 10, 11], "width": [0, 1, 2, 8], "write": [0, 1, 2, 3, 4, 10], "xy_bound": [0, 1, 8], "manag": [0, 3, 4, 6, 7, 10, 11], "chunk_execut": [0, 2, 3, 6], "chunk_param": [0, 2, 6], "chunk_sav": [0, 2, 6, 7, 10], "execut": [0, 2, 3, 4, 6, 8, 10], "preview": [0, 2, 6, 10, 11], "tile": [0, 2, 5, 7, 10, 11], "distribut": [0, 2, 6, 7, 10], "daskmanag": [0, 3, 6], "type": [0, 2, 3, 8], "boundingbox": [0, 1, 2, 3, 4, 8], "workerfunct": [0, 2, 3, 4, 8], "The": [1, 2, 3, 7, 8, 11], "class": [1, 2, 3], "keep": [1, 2, 3, 7], "track": [1, 2, 3, 7], "region": [1, 2, 3, 8], "project": [1, 2, 3, 7, 8, 10, 11], "conduct": [1, 11], "when": [1, 2, 3, 6, 7, 11], "function": [1, 2, 3, 4, 8, 10, 11], "main": [1, 8], "method": [1, 2, 3, 8, 10, 11], "us": [1, 2, 3, 6, 7, 8, 9, 10, 11], "which": [1, 2, 3, 6, 7], "wrapper": [1, 10], "around": [1, 10], "rio_til": [1, 8], "clip": [1, 2, 3, 6, 7, 11], "reproject": [1, 6, 7, 10, 11], "resampl": [1, 6, 7, 11], "data": [1, 6, 7, 10, 11], "target": [1, 2, 3, 8], "resolut": [1, 7, 11], "onto": 1, "global": [1, 2, 7, 8], "1": [1, 7], "deg": 1, "lat": [1, 7], "long": 1, "grid": [1, 10], "from": [1, 2, 3, 4, 6, 7, 8, 10, 11], "import": [1, 2, 3, 4, 6, 7, 8, 9, 10], "rasterio": [1, 2, 4, 6, 7, 8, 10], "plot": [1, 2, 6, 7], "show": [1, 2, 6, 7], "180": [1, 2, 3, 6, 7], "90": [1, 6, 7], "4326": 1, "0": [1, 2, 4, 6, 7, 8, 10], "arr": [1, 2, 3, 4, 6, 7, 8, 10], "url": [1, 2, 4], "tif": [1, 2, 3, 4, 6, 7, 8, 10], "tupl": [1, 2, 3, 4, 8], "float": [1, 2, 3, 4, 6], "85": [1, 2, 3], "proj_bound": [1, 2, 6, 8], "none": [1, 2, 3, 8], "int": [1, 2, 3, 7, 8], "str": [1, 2, 3, 4, 8], "3857": [1, 2, 3], "10000": [1, 2, 3, 7], "16": [1, 2, 3], "sourc": [1, 2, 3, 6, 7, 10, 11], "base": [1, 2, 3], "object": [1, 2, 3], "initi": [1, 2, 3], "box": [1, 2, 3, 7, 8], "paramet": [1, 2, 3, 4, 7, 8, 10], "analyz": [1, 2, 3], "west": [1, 2, 4], "south": [1, 2, 4], "east": [1, 2, 4], "north": [1, 2, 4], "ignor": [1, 2, 8], "provid": [1, 3, 7, 10], "": [1, 2, 3, 7, 8], "overrid": 1, "pyproj": [1, 2, 3, 6, 10], "see": [1, 2, 3, 7], "valid": [1, 2, 3, 10], "valu": [1, 2, 3, 7, 8], "http": [1, 8, 9], "pyproj4": 1, "github": [1, 10], "io": [1, 2], "pixel": [1, 2, 3, 6, 7, 8], "size": [1, 2, 3, 6, 8], "unit": [1, 2, 3, 4, 6], "usual": [1, 2, 3], "meter": [1, 2, 3, 4, 6, 7], "degre": [1, 2, 3, 6], "number": [1, 2, 3], "addit": [1, 2, 3, 4, 8], "all": [1, 2, 3, 8], "side": [1, 2, 3], "avoid": [1, 2, 3], "edg": [1, 2, 3, 11], "effect": [1, 2, 3, 11], "ideal": [1, 2, 3], "depend": [1, 2, 3, 7, 10], "your": [1, 2, 3, 7, 10, 11], "e": [1, 2, 3, 7, 11], "g": [1, 2, 3, 7, 11], "whether": [1, 2, 3], "plan": 1, "convolut": [1, 2, 3], "distanc": [1, 2, 3, 7], "properti": [1, 2, 3, 8], "coordin": [1, 7], "ndarrai": [1, 2, 3, 4, 6], "an": [1, 2, 3, 4, 7, 8], "arrai": [1, 2, 4, 6, 7, 10], "thei": [1, 3, 6], "exist": 1, "numpi": [1, 2, 6, 7, 10], "return": [1, 2, 3, 4, 6, 7, 8, 10], "remov": 1, "rais": 1, "valueerror": 1, "If": [1, 7, 10], "shape": [1, 7], "doe": [1, 3, 10], "match": 1, "mask": [1, 6, 7], "bool": [1, 2, 3], "fals": [1, 3], "zero": [1, 7], "cover": 1, "extent": [1, 2], "includ": [1, 2, 3, 10, 11], "otherwis": 1, "standard": [1, 2, 8], "fill": 1, "geograph": [1, 2], "system": 1, "mai": [1, 2], "larger": [1, 7], "than": [1, 11], "instanti": [1, 2, 3, 8], "src": [1, 6], "sequenc": 1, "true": [1, 2, 3, 6], "kwarg": [1, 2, 3, 8], "necessari": [1, 6, 7, 8, 11], "cogread": 1, "take": [1, 2, 7, 10], "advantag": 1, "file": [1, 2], "structur": [1, 11], "intern": [1, 11], "overview": 1, "minim": 1, "amount": 1, "need": [1, 7, 10], "transfer": 1, "work": [1, 6, 10, 11], "reduc": [1, 2, 7, 8], "In": [1, 3], "gener": [1, 2, 3, 6, 8, 11], "ani": [1, 2, 3, 6, 8], "gdal": [1, 10], "path": [1, 2], "can": [1, 2, 3, 4, 7, 8, 11], "thi": [1, 2, 7, 10], "point": 1, "local": [1, 3], "virtual": 1, "howev": 1, "veri": 1, "ineffici": 1, "ar": [1, 3, 7, 11], "list": [1, 2, 3, 8], "mosaic_read": 1, "mosaic": 1, "togeth": 1, "affect": [1, 11], "how": [1, 7], "appear": 1, "mosiac": 1, "dataset": [1, 11], "keyword": [1, 2, 3, 4, 8], "argument": [1, 2, 3, 4, 8], "pass": [1, 2, 3, 4, 7, 8], "part": 1, "cogeotiff": 1, "rio": [1, 6, 10], "tiler": [1, 8, 10], "contain": [1, 2, 3, 8], "its": [1, 2, 3, 4, 7, 8, 10], "invers": [1, 7], "alpha": [1, 7], "correspond": 1, "nodata": 1, "dst": [1, 2], "creat": [1, 5, 7], "profil": 1, "open": [1, 2, 6, 7], "under": [1, 10], "hood": [1, 10], "must": [1, 2, 3], "2": [1, 2, 3, 5, 7], "3": [1, 2, 4, 7], "dimension": [1, 2], "exclud": [1, 2, 3], "befor": [1, 2, 7], "readthedoc": 1, "en": 1, "latest": 1, "topic": 1, "html": 1, "divid": [2, 3, 7], "area": [2, 7], "each": [2, 3, 4, 7], "first": [2, 3, 4, 7, 8, 10], "piec": [2, 3, 11], "handl": [2, 3, 6], "def": [2, 3, 4, 6, 7, 8, 9, 10], "my_analysi": [2, 3, 4, 6, 10], "calcul": [2, 7, 10], "bbox": [2, 6, 7, 8], "save": [2, 6, 7], "result": [2, 3, 7, 10, 11], "disk": [2, 6], "chuck_sav": 2, "output": [2, 6, 7, 10], "myanalysi": 2, "accept": [2, 3], "proj4": [2, 3], "string": [2, 3, 6], "wkt": [2, 3], "epsg": [2, 3], "code": [2, 3, 8], "f": [2, 3, 4, 8], "callabl": [2, 3, 4], "f_arg": [2, 3, 4, 8], "iter": [2, 3, 8], "f_kwarg": [2, 3, 4, 8], "map": [2, 3, 4, 7, 8, 11], "chunksiz": [2, 3, 6, 7, 10], "512": [2, 3, 10], "most": 2, "comput": [2, 3, 4, 5, 7, 8], "sequenti": [2, 6], "trade": 2, "time": [2, 4], "memori": [2, 3], "footprint": 2, "To": [2, 8], "parallel": [2, 3, 7], "dask": [2, 3, 5, 10], "estim": [2, 3], "requir": [2, 3], "given": [2, 3, 4, 10], "number_of_bands_or_arrai": [2, 3], "bit_depth": [2, 3], "reciev": [2, 3, 4, 7, 8], "dict": [2, 3, 8], "yield": [2, 3], "task": [2, 3], "attribut": 2, "ident": [2, 3], "except": [2, 3], "defin": [2, 7, 8, 11], "equival": 2, "param": [2, 6], "option": [2, 4], "eventu": 2, "complet": [2, 3, 6, 11], "instead": [2, 3], "them": [2, 7, 10], "driver": 2, "should": [2, 7], "plu": 2, "those": 2, "test": 2, "lambda": 2, "though": [2, 8], "underli": [2, 3], "By": [2, 3], "default": [2, 3, 8], "onc": 2, "overload": [2, 3, 8], "max_siz": [2, 6, 7, 8], "1024": [2, 7], "automat": [2, 7, 8, 11], "fit": [2, 7, 8], "within": [2, 7, 8], "self": [2, 8], "anal": [2, 8], "maximum": [2, 7, 8], "1024px": [2, 8], "z": [2, 8], "x": [2, 8], "y": [2, 8], "tiles": [2, 8], "256": [2, 8], "tm": [2, 8], "support": [2, 8], "non": [2, 8], "mercat": [2, 8], "scheme": [2, 8], "via": [2, 8], "morecantil": [2, 8], "web": [2, 8, 11], "process": [3, 6], "interfac": 3, "cluster": [3, 7, 10], "machin": [3, 10], "order": 3, "instal": [3, 7], "pip": [3, 7, 10], "sum": 3, "client": [3, 4, 6], "localclust": [3, 6], "total": 3, "dask_client": 3, "delai": 3, "guarante": 3, "immedi": 3, "Or": 3, "over": 3, "singl": 3, "definit": 4, "alia": 4, "agument": 4, "specif": 4, "get": [4, 7, 8], "neighborhood": 4, "mean": 4, "1km": [4, 7], "squar": [4, 7], "kernel": 4, "scipi": [4, 6], "ndimag": [4, 6], "uniform_filt": [4, 6], "source_url": 4, "kernel_s": [4, 6], "1000": [4, 6, 7], "upload": 4, "s3": 4, "bucket": 4, "memoryfil": 4, "boto3": 4, "dst_bucket": 4, "memfil": 4, "fname": 4, "output_": 4, "_": 4, "seek": 4, "upload_fileobj": 4, "union": 4, "view": 5, "jupyt": 5, "notebook": [5, 10], "quick": [5, 10], "start": [5, 11], "tutori": 5, "custom": [5, 11], "server": [5, 10], "sentinel": 5, "ndvi": 5, "stac": [5, 10], "look": [6, 7], "like": [6, 7], "follow": [6, 10], "roads_cog": [6, 7], "wgs84": [6, 10], "083333": 6, "lt": [6, 7], "ax": [6, 7], "gt": [6, 7], "np": [6, 7, 10], "print": 6, "min": 6, "max": [6, 8], "post": 6, "blob": 6, "storag": 6, "etc": 6, "128": 6, "2048": 6, "1500": 6, "job": 6, "34": 6, "99950000000001": 6, "55": 6, "00049999999999": 6, "69": 6, "99900000000002": 6, "39": 6, "longlat": 6, "datum": 6, "no_def": 6, "focal_mean": 6, "kernel_radiu": 6, "radiu": 6, "access": 6, "5": [6, 7], "set": [6, 7, 8], "up": [6, 7, 8], "connect": 6, "distributed_manag": 6, "pool": 6, "For": 7, "we": [7, 8, 9], "ll": [7, 8, 9], "nearest": 7, "road": 7, "raster": 7, "deriv": 7, "street": 7, "our": 7, "goal": 7, "molleweid": 7, "equal": [7, 8], "approach": 7, "step": 7, "There": 7, "coupl": 7, "extra": 7, "mahota": 7, "fast": [7, 11], "transform": 7, "also": [7, 8], "geopanda": 7, "geometri": 7, "quiet": [7, 8], "moll": 7, "next": 7, "try": 7, "scope": 7, "rescal": [7, 10], "re": 7, "tarket": 7, "manger": 7, "fuction": 7, "let": 7, "check": [7, 8], "what": 7, "get_road": 7, "add": [7, 8], "some": 7, "so": [7, 11], "mani": 7, "differ": [7, 10], "oper": 7, "4": 7, "euclidian": 7, "get_roads_dist": 7, "dist_2": 7, "root": 7, "dist": 7, "sqrt": 7, "sinc": 7, "want": [7, 10], "actual": 7, "multipl": 7, "measur": 7, "current": 7, "chang": 7, "just": [7, 10], "previw": 7, "imag": [7, 8], "full": [7, 10], "get_roads_dist_met": 7, "convert": 7, "dist_met": 7, "truncat": 7, "abov": 7, "10km": 7, "dist_clip": 7, "zoom": 7, "modifi": 7, "other": [7, 10], "wai": 7, "1024x1024px": 7, "6": 7, "itali": 7, "10": 7, "35": 7, "20": 7, "45": 7, "lago": 7, "7": 7, "satisfi": 7, "4096x4096": 7, "px": 7, "account": [7, 11], "might": 7, "outsid": 7, "do": 7, "rel": 7, "care": 7, "about": [7, 8], "make": 7, "avail": 7, "discard": 7, "max_dist": 7, "8": 7, "world": 7, "4096": 7, "geodatafram": 7, "edgecolor": 7, "000": 7, "bboxes_lnglat": 7, "transform_bound": 7, "direct": 7, "lng": 7, "final": 7, "9": 7, "while": 7, "one": 7, "after": 7, "nativ": [7, 10], "complex": 8, "analys": [8, 10, 11], "fly": 8, "enabl": [8, 10, 11], "matrix": 8, "give": 8, "11": 8, "pip3": 8, "12": 8, "cr": 8, "tilemanag": 8, "arg": 8, "super": 8, "tilematrixset": 8, "_proj_bound": 8, "from_user_input": 8, "obj": 8, "left": 8, "bottom": 8, "right": 8, "top": [8, 10], "updat": 8, "normal": 8, "endpoint": 8, "13": 8, "respons": 8, "util": 8, "render": [8, 11], "read_cog": 8, "exampl": 8, "png": 8, "async": 8, "img": 8, "media_typ": 8, "copi": 8, "py": 8, "uvicorn": 8, "reload": 8, "localhost": 8, "8000": 8, "learn": [8, 10], "more": [8, 11], "build": 8, "tiangolo": 8, "com": [8, 9], "stacsearch": 9, "search": 9, "scene": 9, "aw": 9, "catalog": 9, "satsearch": 9, "s2ndvi": 9, "earth": 9, "element84": 9, "v0": 9, "todo": 9, "geospati": 10, "applic": 10, "gi": 10, "remot": 10, "sens": 10, "It": 10, "two": 10, "thing": 10, "pattern": 10, "agnost": [10, 11], "dynam": 10, "input": [10, 11], "combin": 10, "surfac": 10, "familiar": 10, "scientif": 10, "tool": 10, "00083333": 10, "pypi": 10, "cogeo": 10, "creation": 10, "plugin": 10, "turn": 10, "titil": 10, "modern": 10, "built": 10, "fastapi": 10, "serv": 10, "webmap": 10, "stackstac": 10, "easier": 10, "geoprocess": 10, "leverag": 10, "power": 10, "xarrai": 10, "packag": 10, "subset": 11, "downsampl": 11, "version": 11, "themselv": 11, "call": 11, "overviw": 11, "pyramid": 11, "lower": 11, "produc": 11, "rather": 11, "forward": 11, "same": 11, "high": 11, "low": 11, "quickli": 11, "ha": 11, "512x512": 11}, "objects": {"": [[0, 0, 0, "-", "cog_worker"]], "cog_worker": [[3, 0, 0, "-", "distributed"], [2, 0, 0, "-", "manager"], [4, 0, 0, "-", "types"], [1, 0, 0, "-", "worker"]], "cog_worker.distributed": [[3, 1, 1, "", "DaskManager"]], "cog_worker.distributed.DaskManager": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "chunk_execute"], [3, 2, 1, "", "execute"]], "cog_worker.manager": [[2, 1, 1, "", "Manager"]], "cog_worker.manager.Manager": [[2, 2, 1, "", "__init__"], [2, 2, 1, "", "chunk_execute"], [2, 2, 1, "", "chunk_params"], [2, 2, 1, "", "chunk_save"], [2, 2, 1, "", "chunks"], [2, 2, 1, "", "execute"], [2, 2, 1, "", "preview"], [2, 2, 1, "", "tile"]], "cog_worker.types": [[4, 3, 1, "", "BoundingBox"], [4, 3, 1, "", "WorkerFunction"]], "cog_worker.worker": [[1, 1, 1, "", "Worker"]], "cog_worker.worker.Worker": [[1, 2, 1, "", "__init__"], [1, 4, 1, "", "bounds"], [1, 4, 1, "", "buffer"], [1, 2, 1, "", "clip_buffer"], [1, 2, 1, "", "empty"], [1, 4, 1, "", "height"], [1, 2, 1, "", "lnglat_bounds"], [1, 4, 1, "", "proj"], [1, 2, 1, "", "read"], [1, 4, 1, "", "scale"], [1, 4, 1, "", "width"], [1, 2, 1, "", "write"], [1, 2, 1, "", "xy_bounds"]]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:data", "4": "py:property"}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "data", "Python data"], "4": ["py", "property", "Python property"]}, "titleterms": {"api": 0, "refer": 0, "submodul": 0, "content": 0, "cog_work": [1, 2, 3, 4, 6], "worker": [1, 6, 7, 10], "exampl": [1, 2, 3, 4, 5, 7, 10], "manag": [2, 8], "distribut": 3, "type": 4, "quick": 6, "start": [6, 10], "write": [6, 7], "script": 6, "1": [6, 8, 9], "defin": [6, 9], "an": 6, "analysi": [6, 7, 9, 11], "function": [6, 7, 9], "reciev": 6, "first": 6, "paramet": 6, "2": [6, 8, 9], "run": [6, 8], "your": 6, "differ": 6, "scale": 6, "project": 6, "3": [6, 8, 9], "depend": [6, 8, 9], "4": [6, 8, 9], "chunk": [6, 7, 11], "dask": [6, 9], "cluster": [6, 9], "tutori": 7, "setup": 7, "preview": [7, 9], "execut": [7, 9], "creat": 8, "custom": 8, "tile": 8, "server": 8, "instal": [8, 9, 10], "extend": 8, "class": 8, "fastapi": 8, "app": 8, "comput": [9, 11], "sentinel": 9, "ndvi": 9, "stac": 9, "cog": 10, "get": 10, "see": 10, "also": 10, "link": 10, "kei": 11, "concept": 11, "leverag": 11, "geotiff": 11, "overview": 11, "output": 11, "onli": 11, "larg": 11}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "nbsphinx": 4, "sphinx": 57}, "alltitles": {"API Reference": [[0, "module-cog_worker"]], "Submodules": [[0, "submodules"]], "Contents": [[0, null]], "cog_worker.worker": [[1, "module-cog_worker.worker"]], "Example": [[1, null], [2, null], [3, null], [4, null], [10, "example"]], "cog_worker.manager": [[2, "module-cog_worker.manager"]], "cog_worker.distributed": [[3, "module-cog_worker.distributed"]], "cog_worker.types": [[4, "module-cog_worker.types"]], "Examples": [[5, "examples"]], "Quick start": [[6, "Quick-start"]], "Writing a cog_worker script.": [[6, "Writing-a-cog_worker-script."]], "1. Define an analysis function that recieves a cog_worker.Worker as the first parameter.": [[6, "1.-Define-an-analysis-function-that-recieves-a-cog_worker.Worker-as-the-first-parameter."]], "2. Run your analysis in different scales and projections": [[6, "2.-Run-your-analysis-in-different-scales-and-projections"]], "3. Write scale-dependent functions": [[6, "3.-Write-scale-dependent-functions"]], "4. Chunk your analysis and run it in a dask cluster": [[6, "4.-Chunk-your-analysis-and-run-it-in-a-dask-cluster"]], "Tutorial example": [[7, "Tutorial-example"]], "Setup": [[7, "Setup"]], "Writing a Worker function": [[7, "Writing-a-Worker-function"]], "Previewing analysis": [[7, "Previewing-analysis"]], "Executing analysis in chunks": [[7, "Executing-analysis-in-chunks"]], "Create a custom tile server": [[8, "Create-a-custom-tile-server"]], "1. Install dependencies": [[8, "1.-Install-dependencies"], [9, "1.-Install-dependencies"]], "2. Extend the Manager class": [[8, "2.-Extend-the-Manager-class"]], "3. Create a FastAPI app": [[8, "3.-Create-a-FastAPI-app"]], "4. Run the app": [[8, "4.-Run-the-app"]], "Compute Sentinel-2 NDVI with Stac and Dask": [[9, "Compute-Sentinel-2-NDVI-with-Stac-and-Dask"]], "2. Define the NDVI function": [[9, "2.-Define-the-NDVI-function"]], "3. Preview the analysis": [[9, "3.-Preview-the-analysis"]], "4. Execute the analysis in a Dask cluster": [[9, "4.-Execute-the-analysis-in-a-Dask-cluster"]], "Cog Worker": [[10, "cog-worker"]], "Installation": [[10, "installation"]], "Getting started": [[10, "getting-started"]], "See also": [[10, "see-also"]], "Links": [[10, "links"]], "Key concepts": [[11, "key-concepts"]], "Leverage GeoTIFF overviews": [[11, "leverage-geotiff-overviews"]], "Compute outputs only": [[11, "compute-outputs-only"]], "Chunk large analysis": [[11, "chunk-large-analysis"]]}, "indexentries": {"cog_worker": [[0, "module-cog_worker"]], "module": [[0, "module-cog_worker"], [1, "module-cog_worker.worker"], [2, "module-cog_worker.manager"], [3, "module-cog_worker.distributed"], [4, "module-cog_worker.types"]], "worker (class in cog_worker.worker)": [[1, "cog_worker.worker.Worker"]], "__init__() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.__init__"]], "bounds (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.bounds"]], "buffer (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.buffer"]], "clip_buffer() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.clip_buffer"]], "cog_worker.worker": [[1, "module-cog_worker.worker"]], "empty() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.empty"]], "height (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.height"]], "lnglat_bounds() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.lnglat_bounds"]], "proj (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.proj"]], "read() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.read"]], "scale (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.scale"]], "width (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.width"]], "write() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.write"]], "xy_bounds() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.xy_bounds"]], "manager (class in cog_worker.manager)": [[2, "cog_worker.manager.Manager"]], "__init__() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.__init__"]], "chunk_execute() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_execute"]], "chunk_params() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_params"]], "chunk_save() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_save"]], "chunks() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunks"]], "cog_worker.manager": [[2, "module-cog_worker.manager"]], "execute() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.execute"]], "preview() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.preview"]], "tile() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.tile"]], "daskmanager (class in cog_worker.distributed)": [[3, "cog_worker.distributed.DaskManager"]], "__init__() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.__init__"]], "chunk_execute() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.chunk_execute"]], "cog_worker.distributed": [[3, "module-cog_worker.distributed"]], "execute() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.execute"]], "boundingbox (in module cog_worker.types)": [[4, "cog_worker.types.BoundingBox"]], "workerfunction (in module cog_worker.types)": [[4, "cog_worker.types.WorkerFunction"]], "cog_worker.types": [[4, "module-cog_worker.types"]]}}) \ No newline at end of file +Search.setIndex({"alltitles": {"1. Define an analysis function that recieves a cog_worker.Worker as the first parameter.": [[6, "1.-Define-an-analysis-function-that-recieves-a-cog_worker.Worker-as-the-first-parameter."]], "1. Install dependencies": [[8, "1.-Install-dependencies"]], "2. Extend the Manager class": [[8, "2.-Extend-the-Manager-class"]], "2. Run your analysis in different scales and projections": [[6, "2.-Run-your-analysis-in-different-scales-and-projections"]], "3. Create a FastAPI app": [[8, "3.-Create-a-FastAPI-app"]], "3. Write scale-dependent functions": [[6, "3.-Write-scale-dependent-functions"]], "4. Chunk your analysis and run it in a dask cluster": [[6, "4.-Chunk-your-analysis-and-run-it-in-a-dask-cluster"]], "4. Run the app": [[8, "4.-Run-the-app"]], "API Reference": [[0, null]], "Chunk large analysis": [[10, "chunk-large-analysis"]], "Cog Worker": [[9, null]], "Compute outputs only": [[10, "compute-outputs-only"]], "Contents": [[0, null]], "Create a custom tile server": [[8, null]], "Example": [[1, null], [2, null], [3, null], [4, null], [9, "example"]], "Examples": [[5, null]], "Executing analysis in chunks": [[7, "Executing-analysis-in-chunks"]], "Getting started": [[9, "getting-started"]], "Installation": [[9, "installation"]], "Key concepts": [[10, null]], "Leverage GeoTIFF overviews": [[10, "leverage-geotiff-overviews"]], "Links": [[9, "links"]], "Previewing analysis": [[7, "Previewing-analysis"]], "Quick start": [[6, null]], "See also": [[9, "see-also"]], "Setup": [[7, "Setup"]], "Submodules": [[0, "submodules"]], "Tutorial example": [[7, null]], "Writing a Worker function": [[7, "Writing-a-Worker-function"]], "Writing a cog_worker script.": [[6, "Writing-a-cog_worker-script."]], "cog_worker.distributed": [[3, null]], "cog_worker.manager": [[2, null]], "cog_worker.types": [[4, null]], "cog_worker.worker": [[1, null]]}, "docnames": ["api_reference", "cog_worker/1. worker", "cog_worker/2. manager", "cog_worker/3. distributed", "cog_worker/4. types", "examples", "examples/1. quick-start", "examples/2. tutorial", "examples/3. tile-server", "index", "key_concepts"], "envversion": {"nbsphinx": 4, "sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1}, "filenames": ["api_reference.rst", "cog_worker/1. worker.rst", "cog_worker/2. manager.rst", "cog_worker/3. distributed.rst", "cog_worker/4. types.rst", "examples.rst", "examples/1. quick-start.ipynb", "examples/2. tutorial.ipynb", "examples/3. tile-server.ipynb", "index.rst", "key_concepts.rst"], "indexentries": {"__init__() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.__init__", false]], "__init__() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.__init__", false]], "__init__() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.__init__", false]], "boundingbox (in module cog_worker.types)": [[4, "cog_worker.types.BoundingBox", false]], "bounds (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.bounds", false]], "buffer (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.buffer", false]], "chunk_execute() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.chunk_execute", false]], "chunk_execute() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_execute", false]], "chunk_params() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_params", false]], "chunk_save() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunk_save", false]], "chunks() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.chunks", false]], "clip_buffer() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.clip_buffer", false]], "cog_worker": [[0, "module-cog_worker", false]], "cog_worker.distributed": [[3, "module-cog_worker.distributed", false]], "cog_worker.manager": [[2, "module-cog_worker.manager", false]], "cog_worker.types": [[4, "module-cog_worker.types", false]], "cog_worker.worker": [[1, "module-cog_worker.worker", false]], "daskmanager (class in cog_worker.distributed)": [[3, "cog_worker.distributed.DaskManager", false]], "empty() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.empty", false]], "execute() (cog_worker.distributed.daskmanager method)": [[3, "cog_worker.distributed.DaskManager.execute", false]], "execute() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.execute", false]], "height (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.height", false]], "lnglat_bounds() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.lnglat_bounds", false]], "manager (class in cog_worker.manager)": [[2, "cog_worker.manager.Manager", false]], "module": [[0, "module-cog_worker", false], [1, "module-cog_worker.worker", false], [2, "module-cog_worker.manager", false], [3, "module-cog_worker.distributed", false], [4, "module-cog_worker.types", false]], "preview() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.preview", false]], "proj (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.proj", false]], "read() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.read", false]], "scale (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.scale", false]], "tile() (cog_worker.manager.manager method)": [[2, "cog_worker.manager.Manager.tile", false]], "width (cog_worker.worker.worker property)": [[1, "cog_worker.worker.Worker.width", false]], "worker (class in cog_worker.worker)": [[1, "cog_worker.worker.Worker", false]], "workerfunction (in module cog_worker.types)": [[4, "cog_worker.types.WorkerFunction", false]], "write() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.write", false]], "xy_bounds() (cog_worker.worker.worker method)": [[1, "cog_worker.worker.Worker.xy_bounds", false]]}, "objects": {"": [[0, 0, 0, "-", "cog_worker"]], "cog_worker": [[3, 0, 0, "-", "distributed"], [2, 0, 0, "-", "manager"], [4, 0, 0, "-", "types"], [1, 0, 0, "-", "worker"]], "cog_worker.distributed": [[3, 1, 1, "", "DaskManager"]], "cog_worker.distributed.DaskManager": [[3, 2, 1, "", "__init__"], [3, 2, 1, "", "chunk_execute"], [3, 2, 1, "", "execute"]], "cog_worker.manager": [[2, 1, 1, "", "Manager"]], "cog_worker.manager.Manager": [[2, 2, 1, "", "__init__"], [2, 2, 1, "", "chunk_execute"], [2, 2, 1, "", "chunk_params"], [2, 2, 1, "", "chunk_save"], [2, 2, 1, "", "chunks"], [2, 2, 1, "", "execute"], [2, 2, 1, "", "preview"], [2, 2, 1, "", "tile"]], "cog_worker.types": [[4, 3, 1, "", "BoundingBox"], [4, 3, 1, "", "WorkerFunction"]], "cog_worker.worker": [[1, 1, 1, "", "Worker"]], "cog_worker.worker.Worker": [[1, 2, 1, "", "__init__"], [1, 4, 1, "", "bounds"], [1, 4, 1, "", "buffer"], [1, 2, 1, "", "clip_buffer"], [1, 2, 1, "", "empty"], [1, 4, 1, "", "height"], [1, 2, 1, "", "lnglat_bounds"], [1, 4, 1, "", "proj"], [1, 2, 1, "", "read"], [1, 4, 1, "", "scale"], [1, 4, 1, "", "width"], [1, 2, 1, "", "write"], [1, 2, 1, "", "xy_bounds"]]}, "objnames": {"0": ["py", "module", "Python module"], "1": ["py", "class", "Python class"], "2": ["py", "method", "Python method"], "3": ["py", "data", "Python data"], "4": ["py", "property", "Python property"]}, "objtypes": {"0": "py:module", "1": "py:class", "2": "py:method", "3": "py:data", "4": "py:property"}, "terms": {"": [1, 2, 3, 7, 8], "0": [1, 2, 4, 6, 7, 8, 9], "000": 7, "00049999999999": 6, "00083333": 9, "083333": 6, "1": [1, 7], "10": 7, "1000": [4, 6, 7], "10000": [1, 2, 3, 7], "1024": [2, 7], "1024px": [2, 8], "1024x1024px": 7, "10km": 7, "11": 8, "12": 8, "128": 6, "13": 8, "1500": 6, "16": [1, 2, 3], "180": [1, 2, 3, 6, 7], "1km": [4, 7], "2": [1, 2, 3, 7], "20": 7, "2048": 6, "256": [2, 8], "3": [1, 2, 4, 7], "34": 6, "35": 7, "3857": [1, 2, 3], "39": 6, "4": 7, "4096": 7, "4096x4096": 7, "4326": 1, "45": 7, "5": [6, 7], "512": [2, 3, 9], "512x512": 10, "55": 6, "6": 7, "69": 6, "7": 7, "8": 7, "8000": 8, "85": [1, 2, 3], "9": 7, "90": [1, 6, 7], "99900000000002": 6, "99950000000001": 6, "A": [0, 1, 2, 3, 4, 6, 8, 9], "By": [2, 3], "For": 7, "If": [1, 7, 9], "In": [1, 3], "It": 9, "Or": 3, "The": [1, 2, 3, 7, 8, 10], "There": 7, "To": [2, 8], "_": 4, "__init__": [0, 1, 2, 3, 8], "_proj_bound": 8, "about": [7, 8], "abov": 7, "accept": [2, 3], "access": 6, "account": [7, 10], "actual": 7, "add": [7, 8], "addit": [1, 2, 3, 4, 8], "advantag": 1, "affect": [1, 10], "after": 7, "agnost": [9, 10], "agument": 4, "alia": 4, "all": [1, 2, 3, 8], "alpha": [1, 7], "also": [7, 8], "amount": 1, "an": [1, 2, 3, 4, 7, 8], "anal": [2, 8], "analys": [8, 9, 10], "analysi": [0, 1, 2, 3, 8, 9], "analyz": [1, 2, 3], "ani": [1, 2, 3, 6, 8], "appear": 1, "applic": 9, "approach": 7, "ar": [1, 3, 7, 10], "area": [2, 7], "arg": 8, "argument": [1, 2, 3, 4, 8], "around": [1, 9], "arr": [1, 2, 3, 4, 6, 7, 8, 9], "arrai": [1, 2, 4, 6, 7, 9], "async": 8, "attribut": 2, "automat": [2, 7, 8, 10], "avail": 7, "avoid": [1, 2, 3], "ax": [6, 7], "base": [1, 2, 3], "bbox": [2, 6, 7, 8], "bboxes_lnglat": 7, "befor": [1, 2, 7], "bit_depth": [2, 3], "blob": 6, "bool": [1, 2, 3], "boto3": 4, "bottom": 8, "bound": [0, 1, 2, 3, 4, 6, 7, 8], "boundingbox": [0, 1, 2, 3, 4, 8], "box": [1, 2, 3, 7, 8], "bucket": 4, "buffer": [0, 1, 2, 3, 6, 7, 8, 10], "build": 8, "built": 9, "calcul": [2, 7, 9], "call": 10, "callabl": [2, 3, 4], "can": [1, 2, 3, 4, 7, 8, 10], "care": 7, "chang": 7, "check": [7, 8], "chuck_sav": 2, "chunk": [0, 2, 3, 4, 9], "chunk_execut": [0, 2, 3, 6], "chunk_param": [0, 2, 6], "chunk_sav": [0, 2, 6, 7, 9], "chunksiz": [2, 3, 6, 7, 9], "class": [1, 2, 3], "client": [3, 4, 6], "clip": [1, 2, 3, 6, 7, 10], "clip_buff": [0, 1], "cloud": [0, 1, 2, 3, 6, 9, 10], "cluster": [3, 7, 9], "code": [2, 3, 8], "cog": [0, 1, 2, 3, 4, 6, 7, 8, 10], "cog_work": [0, 7, 8, 9, 10], "cogeo": 9, "cogeotiff": 1, "cogread": 1, "com": 8, "combin": 9, "complet": [2, 3, 6, 10], "complex": 8, "comput": [2, 3, 4, 7, 8], "conduct": [1, 10], "connect": 6, "contain": [1, 2, 3, 8], "convert": 7, "convolut": [1, 2, 3], "coordin": [1, 7], "copi": 8, "correspond": 1, "coupl": 7, "cover": 1, "cr": 8, "creat": [1, 5, 7], "creation": 9, "current": 7, "custom": [5, 10], "dask": [2, 3, 9], "dask_client": 3, "daskmanag": [0, 3, 6], "data": [1, 6, 7, 9, 10], "dataset": [1, 10], "datum": 6, "def": [2, 3, 4, 6, 7, 8, 9], "default": [2, 3, 8], "defin": [2, 7, 8, 10], "definit": 4, "deg": 1, "degre": [1, 2, 3, 6], "delai": 3, "depend": [1, 2, 3, 7, 9], "deriv": 7, "dict": [2, 3, 8], "differ": [7, 9], "dimension": [1, 2], "direct": 7, "discard": 7, "disk": [2, 6], "dist": 7, "dist_2": 7, "dist_clip": 7, "dist_met": 7, "distanc": [1, 2, 3, 7], "distribut": [0, 2, 6, 7, 9], "distributed_manag": 6, "divid": [2, 3, 7], "do": 7, "doe": [1, 3, 9], "downsampl": 10, "driver": 2, "dst": [1, 2], "dst_bucket": 4, "dynam": 9, "e": [1, 2, 3, 7, 10], "each": [2, 3, 4, 7], "easier": 9, "east": [1, 2, 4], "edg": [1, 2, 3, 10], "edgecolor": 7, "effect": [1, 2, 3, 10], "empti": [0, 1], "en": 1, "enabl": [8, 9, 10], "endpoint": 8, "epsg": [2, 3], "equal": [7, 8], "equival": 2, "estim": [2, 3], "etc": 6, "euclidian": 7, "eventu": 2, "exampl": 8, "except": [2, 3], "exclud": [1, 2, 3], "execut": [0, 2, 3, 4, 6, 8, 9], "exist": 1, "extent": [1, 2], "extra": 7, "f": [2, 3, 4, 8], "f_arg": [2, 3, 4, 8], "f_kwarg": [2, 3, 4, 8], "fals": [1, 3], "familiar": 9, "fast": [7, 10], "fastapi": 9, "file": [1, 2], "fill": 1, "final": 7, "first": [2, 3, 4, 7, 8, 9], "fit": [2, 7, 8], "float": [1, 2, 3, 4, 6], "fly": 8, "fname": 4, "focal_mean": 6, "follow": [6, 9], "footprint": 2, "forward": 10, "from": [1, 2, 3, 4, 6, 7, 8, 9, 10], "from_user_input": 8, "fuction": 7, "full": [7, 9], "function": [1, 2, 3, 4, 8, 9, 10], "g": [1, 2, 3, 7, 10], "gdal": [1, 9], "gener": [1, 2, 3, 6, 8, 10], "geodatafram": 7, "geograph": [1, 2], "geometri": 7, "geopanda": 7, "geoprocess": 9, "geospati": 9, "geotiff": [0, 1, 2, 3, 6, 9], "get": [4, 7, 8], "get_road": 7, "get_roads_dist": 7, "get_roads_dist_met": 7, "gi": 9, "github": [1, 9], "give": 8, "given": [2, 3, 4, 9], "global": [1, 2, 7, 8], "goal": 7, "grid": [1, 9], "gt": [6, 7], "guarante": 3, "ha": 10, "handl": [2, 3, 6], "height": [0, 1, 2, 8], "help": [0, 6, 9], "high": 10, "hood": [1, 9], "how": [1, 7], "howev": 1, "html": 1, "http": [1, 8], "i": [0, 1, 2, 3, 4, 6, 7, 9], "ideal": [1, 2, 3], "ident": [2, 3], "ignor": [1, 2, 8], "imag": [7, 8], "img": 8, "immedi": 3, "import": [1, 2, 3, 4, 6, 7, 8, 9], "includ": [1, 2, 3, 9, 10], "ineffici": 1, "initi": [1, 2, 3], "input": [9, 10], "instal": [3, 7], "instanti": [1, 2, 3, 8], "instead": [2, 3], "int": [1, 2, 3, 7, 8], "interfac": 3, "intern": [1, 10], "invers": [1, 7], "io": [1, 2], "itali": 7, "iter": [2, 3, 8], "its": [1, 2, 3, 4, 7, 8, 9], "job": 6, "jupyt": 5, "just": [7, 9], "keep": [1, 2, 3, 7], "kernel": 4, "kernel_radiu": 6, "kernel_s": [4, 6], "keyword": [1, 2, 3, 4, 8], "kwarg": [1, 2, 3, 8], "lago": 7, "lambda": 2, "larg": [0, 2], "larger": [1, 7], "lat": [1, 7], "latest": 1, "learn": [8, 9], "left": 8, "let": 7, "leverag": 9, "librari": [0, 6, 7, 9], "like": [6, 7], "list": [1, 2, 3, 8], "ll": [7, 8], "lng": 7, "lnglat_bound": [0, 1], "local": [1, 3], "localclust": [3, 6], "localhost": 8, "long": 1, "longlat": 6, "look": [6, 7], "low": 10, "lower": 10, "lt": [6, 7], "machin": [3, 9], "mahota": 7, "mai": [1, 2], "main": [1, 8], "make": 7, "manag": [0, 3, 4, 6, 7, 9, 10], "manger": 7, "mani": 7, "map": [2, 3, 4, 7, 8, 10], "mask": [1, 6, 7], "maskedarrai": 1, "match": 1, "matrix": 8, "max": [6, 8], "max_dist": 7, "max_siz": [2, 6, 7, 8], "maximum": [2, 7, 8], "mean": 4, "measur": 7, "media_typ": 8, "memfil": 4, "memori": [2, 3], "memoryfil": 4, "mercat": [2, 8], "meter": [1, 2, 3, 4, 6, 7], "method": [1, 2, 3, 8, 9, 10], "might": 7, "min": 6, "minim": 1, "modern": 9, "modifi": 7, "modul": [0, 9], "moll": 7, "molleweid": 7, "more": [8, 10], "morecantil": [2, 8], "mosaic": 1, "mosaic_read": 1, "mosiac": 1, "most": 2, "multipl": 7, "must": [1, 2, 3], "my_analysi": [2, 3, 4, 6, 9], "myanalysi": 2, "nativ": [7, 9], "ndarrai": [1, 2, 3, 4, 6], "ndimag": [4, 6], "nearest": 7, "necessari": [1, 6, 7, 8, 10], "need": [1, 7, 9], "neighborhood": 4, "next": 7, "no_def": 6, "nodata": 1, "non": [2, 8], "none": [1, 2, 3, 8], "normal": 8, "north": [1, 2, 4], "notebook": [5, 9], "np": [6, 7, 9], "number": [1, 2, 3], "number_of_bands_or_arrai": [2, 3], "numpi": [1, 2, 6, 7, 9], "obj": 8, "object": [1, 2, 3], "onc": 2, "one": 7, "onto": 1, "open": [1, 2, 6, 7], "oper": 7, "optim": [0, 1, 2, 3, 6, 9, 10], "option": [2, 4], "order": 3, "other": [7, 9], "otherwis": 1, "our": 7, "output": [2, 6, 7, 9], "output_": 4, "outsid": 7, "over": 3, "overload": [2, 3, 8], "overrid": 1, "overview": 1, "overviw": 10, "packag": 9, "parallel": [2, 3, 7], "param": [2, 6], "paramet": [1, 2, 3, 4, 7, 8, 9], "part": 1, "pass": [1, 2, 3, 4, 7, 8], "path": [1, 2], "pattern": 9, "piec": [2, 3, 10], "pip": [3, 7, 9], "pip3": 8, "pixel": [1, 2, 3, 6, 7, 8], "plan": 1, "plot": [1, 2, 6, 7], "plu": 2, "plugin": 9, "png": 8, "point": 1, "pool": 6, "post": 6, "power": 9, "preview": [0, 2, 6, 9, 10], "previw": 7, "print": 6, "process": [3, 6], "produc": 10, "profil": 1, "proj": [0, 1, 2, 3, 6, 7, 8, 9], "proj4": [2, 3], "proj_bound": [1, 2, 6, 8], "project": [1, 2, 3, 7, 8, 9, 10], "properti": [1, 2, 3, 8], "provid": [1, 3, 7, 9], "px": 7, "py": 8, "pypi": 9, "pyproj": [1, 2, 3, 6, 9], "pyproj4": 1, "pyramid": 10, "python": [0, 9], "quick": [5, 9], "quickli": 10, "quiet": [7, 8], "radiu": 6, "rais": 1, "raster": 7, "rasterio": [1, 2, 4, 6, 7, 8, 9], "rather": 10, "re": 7, "read": [0, 1, 2, 3, 4, 6, 7, 8, 9, 10], "read_cog": 8, "readthedoc": 1, "reciev": [2, 3, 4, 7, 8], "reduc": [1, 2, 7, 8], "region": [1, 2, 3, 8], "rel": 7, "reload": 8, "remot": 9, "remov": 1, "render": [8, 10], "reproject": [1, 6, 7, 9, 10], "requir": [2, 3], "resampl": [1, 6, 7, 10], "rescal": [7, 9], "resolut": [1, 7, 10], "respons": 8, "result": [2, 3, 7, 9, 10], "return": [1, 2, 3, 4, 6, 7, 8, 9], "right": 8, "rio": [1, 6, 9], "rio_til": [1, 8], "road": 7, "roads_cog": [6, 7], "root": 7, "run": [0, 2, 3, 7, 9], "s3": 4, "same": 10, "satisfi": 7, "save": [2, 6, 7], "scalabl": [0, 2, 6, 9], "scale": [0, 1, 2, 3, 4, 7, 8, 9, 10], "scheme": [2, 8], "scientif": 9, "scipi": [4, 6], "scope": 7, "see": [1, 2, 3, 7], "seek": 4, "self": [2, 8], "sens": 9, "sequenc": 1, "sequenti": [2, 6], "serv": 9, "server": [5, 9], "set": [6, 7, 8], "shape": [1, 7], "should": [2, 7], "show": [1, 2, 6, 7], "side": [1, 2, 3], "simpl": [0, 6, 8, 9], "sinc": 7, "singl": 3, "size": [1, 2, 3, 6, 8], "so": [7, 10], "some": 7, "sourc": [1, 2, 3, 6, 7, 9, 10], "source_url": 4, "south": [1, 2, 4], "specif": 4, "sqrt": 7, "squar": [4, 7], "src": [1, 6], "stac": 9, "stackstac": 9, "standard": [1, 2, 8], "start": [5, 10], "step": 7, "storag": 6, "str": [1, 2, 3, 4, 8], "street": 7, "string": [2, 3, 6], "structur": [1, 10], "subset": 10, "sum": 3, "super": 8, "support": [2, 8], "surfac": 9, "system": 1, "take": [1, 2, 7, 9], "target": [1, 2, 3, 8], "tarket": 7, "task": [2, 3], "test": 2, "than": [1, 10], "thei": [1, 3, 6], "them": [2, 7, 9], "themselv": 10, "thi": [1, 2, 7, 9], "thing": 9, "those": 2, "though": [2, 8], "tiangolo": 8, "tif": [1, 2, 3, 4, 6, 7, 8, 9], "tile": [0, 2, 5, 7, 9, 10], "tilemanag": 8, "tilematrixset": 8, "tiler": [1, 8, 9], "tiles": [2, 8], "time": [2, 4], "titil": 9, "tm": [2, 8], "togeth": 1, "tool": 9, "top": [8, 9], "topic": 1, "total": 3, "track": [1, 2, 3, 7], "trade": 2, "transfer": 1, "transform": 7, "transform_bound": 7, "true": [1, 2, 3, 6], "truncat": 7, "try": 7, "tupl": [1, 2, 3, 4, 8], "turn": 9, "tutori": 5, "two": 9, "type": [0, 2, 3, 8], "under": [1, 9], "underli": [2, 3], "uniform_filt": [4, 6], "unit": [1, 2, 3, 4, 6], "up": [6, 7, 8], "updat": 8, "upload": 4, "upload_fileobj": 4, "url": [1, 2, 4], "us": [1, 2, 3, 6, 7, 8, 9, 10], "usual": [1, 2, 3], "util": 8, "uvicorn": 8, "valid": [1, 2, 3, 9], "valu": [1, 2, 3, 7, 8], "valueerror": 1, "veri": 1, "version": 10, "via": [2, 8], "view": 5, "virtual": 1, "wai": 7, "want": [7, 9], "we": [7, 8], "web": [2, 8, 10], "webmap": 9, "west": [1, 2, 4], "wgs84": [6, 9], "what": 7, "when": [1, 2, 3, 6, 7, 10], "whether": [1, 2, 3], "which": [1, 2, 3, 6, 7], "while": 7, "width": [0, 1, 2, 8], "within": [2, 7, 8], "wkt": [2, 3], "work": [1, 6, 9, 10], "worker": [0, 2, 3, 4, 8], "workerfunct": [0, 2, 3, 4, 8], "world": 7, "wrapper": [1, 9], "write": [0, 1, 2, 3, 4, 9], "x": [2, 8], "xarrai": 9, "xy_bound": [0, 1, 8], "y": [2, 8], "yield": [2, 3], "you": [0, 1, 2, 3, 6, 7, 8, 9, 10], "your": [1, 2, 3, 7, 9, 10], "z": [2, 8], "zero": [1, 7], "zoom": 7}, "titles": ["API Reference", "cog_worker.worker", "cog_worker.manager", "cog_worker.distributed", "cog_worker.types", "Examples", "Quick start", "Tutorial example", "Create a custom tile server", "Cog Worker", "Key concepts"], "titleterms": {"1": [6, 8], "2": [6, 8], "3": [6, 8], "4": [6, 8], "also": 9, "an": 6, "analysi": [6, 7, 10], "api": 0, "app": 8, "chunk": [6, 7, 10], "class": 8, "cluster": 6, "cog": 9, "cog_work": [1, 2, 3, 4, 6], "comput": 10, "concept": 10, "content": 0, "creat": 8, "custom": 8, "dask": 6, "defin": 6, "depend": [6, 8], "differ": 6, "distribut": 3, "exampl": [1, 2, 3, 4, 5, 7, 9], "execut": 7, "extend": 8, "fastapi": 8, "first": 6, "function": [6, 7], "geotiff": 10, "get": 9, "instal": [8, 9], "kei": 10, "larg": 10, "leverag": 10, "link": 9, "manag": [2, 8], "onli": 10, "output": 10, "overview": 10, "paramet": 6, "preview": 7, "project": 6, "quick": 6, "reciev": 6, "refer": 0, "run": [6, 8], "scale": 6, "script": 6, "see": 9, "server": 8, "setup": 7, "start": [6, 9], "submodul": 0, "tile": 8, "tutori": 7, "type": 4, "worker": [1, 6, 7, 9], "write": [6, 7], "your": 6}}) \ No newline at end of file diff --git a/sphinx_docs/source/examples/4. stac-ndvi.ipynb b/sphinx_docs/source/examples/4. stac-ndvi.ipynb deleted file mode 100644 index 19f7ccd..0000000 --- a/sphinx_docs/source/examples/4. stac-ndvi.ipynb +++ /dev/null @@ -1,63 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "source": [ - "# Compute Sentinel-2 NDVI with Stac and Dask" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 1. Install dependencies\n", - "\n", - "We'll use `stacsearch` to search for sentinel scenes in the AWS stac catalog." - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 2. Define the NDVI function\n" - ], - "metadata": {} - }, - { - "cell_type": "code", - "execution_count": null, - "source": [ - "import satsearch\n", - "\n", - "def s2ndvi(worker):\n", - " search = satsearch.Search('https://earth-search.aws.element84.com/v0')\n", - "\n", - " # TODO" - ], - "outputs": [], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 3. Preview the analysis" - ], - "metadata": {} - }, - { - "cell_type": "markdown", - "source": [ - "## 4. Execute the analysis in a Dask cluster" - ], - "metadata": {} - } - ], - "metadata": { - "orig_nbformat": 4, - "language_info": { - "name": "python" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} \ No newline at end of file