From 0861b6986f216bfb8b6011fedb3959d7eb53bcab Mon Sep 17 00:00:00 2001 From: Travis CI Date: Thu, 12 Nov 2020 07:26:57 +0000 Subject: [PATCH] Deploy to GitHub Pages: 8b1c2d3ea4eb5bf0a1e7e093862962313dd6c2bb --- develop/doc/html/_static/basic.css | 1 + develop/doc/html/_static/doctools.js | 5 +++-- develop/doc/html/_static/pygments.css | 8 ++++---- develop/doc/html/_static/searchtools.js | 8 ++++---- develop/doc/html/design/basics.html | 4 ++-- develop/doc/html/design/channel.html | 4 ++-- develop/doc/html/design/color_base.html | 4 ++-- develop/doc/html/design/color_space.html | 4 ++-- develop/doc/html/design/concepts.html | 4 ++-- develop/doc/html/design/conclusions.html | 4 ++-- develop/doc/html/design/dynamic_image.html | 4 ++-- develop/doc/html/design/examples.html | 4 ++-- develop/doc/html/design/extending.html | 4 ++-- develop/doc/html/design/image.html | 4 ++-- develop/doc/html/design/image_view.html | 4 ++-- develop/doc/html/design/index.html | 4 ++-- develop/doc/html/design/metafunctions.html | 4 ++-- develop/doc/html/design/pixel.html | 4 ++-- develop/doc/html/design/pixel_iterator.html | 4 ++-- develop/doc/html/design/pixel_locator.html | 4 ++-- develop/doc/html/design/point.html | 4 ++-- develop/doc/html/design/technicalities.html | 4 ++-- develop/doc/html/genindex.html | 4 ++-- .../html/image_processing/affine-region-detectors.html | 4 ++-- develop/doc/html/image_processing/basics.html | 4 ++-- develop/doc/html/image_processing/index.html | 4 ++-- develop/doc/html/image_processing/overview.html | 4 ++-- develop/doc/html/index.html | 4 ++-- develop/doc/html/installation.html | 4 ++-- develop/doc/html/io.html | 4 ++-- develop/doc/html/naming.html | 4 ++-- develop/doc/html/numeric.html | 4 ++-- develop/doc/html/search.html | 4 ++-- develop/doc/html/toolbox.html | 4 ++-- develop/doc/html/tutorial/gradient.html | 4 ++-- develop/doc/html/tutorial/histogram.html | 4 ++-- develop/doc/html/tutorial/video.html | 4 ++-- 37 files changed, 78 insertions(+), 76 deletions(-) diff --git a/develop/doc/html/_static/basic.css b/develop/doc/html/_static/basic.css index 24bc73e7f..24a49f09b 100644 --- a/develop/doc/html/_static/basic.css +++ b/develop/doc/html/_static/basic.css @@ -764,6 +764,7 @@ div.code-block-caption code { } table.highlighttable td.linenos, +span.linenos, div.doctest > div.highlight span.gp { /* gp: Generic.Prompt */ user-select: none; } diff --git a/develop/doc/html/_static/doctools.js b/develop/doc/html/_static/doctools.js index daccd209d..7d88f807d 100644 --- a/develop/doc/html/_static/doctools.js +++ b/develop/doc/html/_static/doctools.js @@ -285,9 +285,10 @@ var Documentation = { initOnKeyListeners: function() { $(document).keydown(function(event) { var activeElementType = document.activeElement.tagName; - // don't navigate when in search box or textarea + // don't navigate when in search box, textarea, dropdown or button if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT' - && !event.altKey && !event.ctrlKey && !event.metaKey && !event.shiftKey) { + && activeElementType !== 'BUTTON' && !event.altKey && !event.ctrlKey && !event.metaKey + && !event.shiftKey) { switch (event.keyCode) { case 37: // left var prevHref = $('link[rel="prev"]').prop('href'); diff --git a/develop/doc/html/_static/pygments.css b/develop/doc/html/_static/pygments.css index be9feffb7..96529c7bd 100644 --- a/develop/doc/html/_static/pygments.css +++ b/develop/doc/html/_static/pygments.css @@ -1,8 +1,8 @@ pre { line-height: 125%; margin: 0; } -td.linenos pre { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; } -span.linenos { color: #000000; background-color: #f0f0f0; padding: 0 5px 0 5px; } -td.linenos pre.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; } -span.linenos.special { color: #000000; background-color: #ffffc0; padding: 0 5px 0 5px; } +td.linenos pre { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } +span.linenos { color: #000000; background-color: #f0f0f0; padding-left: 5px; padding-right: 5px; } +td.linenos pre.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } .highlight .hll { background-color: #ffffcc } .highlight { background: #f8f8f8; } .highlight .c { color: #408080; font-style: italic } /* Comment */ diff --git a/develop/doc/html/_static/searchtools.js b/develop/doc/html/_static/searchtools.js index 970d0d975..261ecaa92 100644 --- a/develop/doc/html/_static/searchtools.js +++ b/develop/doc/html/_static/searchtools.js @@ -59,10 +59,10 @@ var Search = { _pulse_status : -1, htmlToText : function(htmlString) { - var htmlElement = document.createElement('span'); - htmlElement.innerHTML = htmlString; - $(htmlElement).find('.headerlink').remove(); - docContent = $(htmlElement).find('[role=main]')[0]; + var virtualDocument = document.implementation.createHTMLDocument('virtual'); + var htmlElement = $(htmlString, virtualDocument); + htmlElement.find('.headerlink').remove(); + docContent = htmlElement.find('[role=main]')[0]; if(docContent === undefined) { console.warn("Content block not found. Sphinx search tries to obtain it " + "via '[role=main]'. Could you check your theme or template."); diff --git a/develop/doc/html/design/basics.html b/develop/doc/html/design/basics.html index 072da0ab3..dd281f314 100644 --- a/develop/doc/html/design/basics.html +++ b/develop/doc/html/design/basics.html @@ -114,8 +114,8 @@ read the sections in order.

\ No newline at end of file diff --git a/develop/doc/html/design/channel.html b/develop/doc/html/design/channel.html index 9141363fc..9de03d60a 100644 --- a/develop/doc/html/design/channel.html +++ b/develop/doc/html/design/channel.html @@ -263,8 +263,8 @@ channel-level algorithms that GIL provides:

\ No newline at end of file diff --git a/develop/doc/html/design/color_base.html b/develop/doc/html/design/color_base.html index d347d2e7d..720b1d9ab 100644 --- a/develop/doc/html/design/color_base.html +++ b/develop/doc/html/design/color_base.html @@ -310,8 +310,8 @@ color base require that they all have the same color space.

\ No newline at end of file diff --git a/develop/doc/html/design/color_space.html b/develop/doc/html/design/color_space.html index 4cc02023a..ddd53c6c0 100644 --- a/develop/doc/html/design/color_space.html +++ b/develop/doc/html/design/color_space.html @@ -165,8 +165,8 @@ A color space and its associated mapping are often used together.

\ No newline at end of file diff --git a/develop/doc/html/design/concepts.html b/develop/doc/html/design/concepts.html index ac6c1c149..dfee0adf0 100644 --- a/develop/doc/html/design/concepts.html +++ b/develop/doc/html/design/concepts.html @@ -143,8 +143,8 @@ Most of them are defined at the \ No newline at end of file diff --git a/develop/doc/html/design/conclusions.html b/develop/doc/html/design/conclusions.html index e7e8af579..1e2a54bdb 100644 --- a/develop/doc/html/design/conclusions.html +++ b/develop/doc/html/design/conclusions.html @@ -121,8 +121,8 @@ raw pixel data from another image library.

\ No newline at end of file diff --git a/develop/doc/html/design/dynamic_image.html b/develop/doc/html/design/dynamic_image.html index c6d745982..d479377aa 100644 --- a/develop/doc/html/design/dynamic_image.html +++ b/develop/doc/html/design/dynamic_image.html @@ -274,8 +274,8 @@ uniformly as a collection and store them in the same container.

\ No newline at end of file diff --git a/develop/doc/html/design/examples.html b/develop/doc/html/design/examples.html index b61fe0ab7..f3fcca9db 100644 --- a/develop/doc/html/design/examples.html +++ b/develop/doc/html/design/examples.html @@ -264,8 +264,8 @@ channel depth. They could be either planar or interleaved.

\ No newline at end of file diff --git a/develop/doc/html/design/extending.html b/develop/doc/html/design/extending.html index 296fa9457..f477672fa 100644 --- a/develop/doc/html/design/extending.html +++ b/develop/doc/html/design/extending.html @@ -234,8 +234,8 @@ defines the Mandelbrot set.

\ No newline at end of file diff --git a/develop/doc/html/design/image.html b/develop/doc/html/design/image.html index c3f7f04ac..ac85574b8 100644 --- a/develop/doc/html/design/image.html +++ b/develop/doc/html/design/image.html @@ -175,8 +175,8 @@ there are no padding bits at the end of rows of packed images.

\ No newline at end of file diff --git a/develop/doc/html/design/image_view.html b/develop/doc/html/design/image_view.html index 89a6fea0b..fe1fc0aa8 100644 --- a/develop/doc/html/design/image_view.html +++ b/develop/doc/html/design/image_view.html @@ -487,8 +487,8 @@ development and is not optimized for speed

\ No newline at end of file diff --git a/develop/doc/html/design/index.html b/develop/doc/html/design/index.html index bcb2d6021..15965c4e3 100644 --- a/develop/doc/html/design/index.html +++ b/develop/doc/html/design/index.html @@ -102,8 +102,8 @@ structure and basic elements of the Generic Image Library (GIL).

\ No newline at end of file diff --git a/develop/doc/html/design/metafunctions.html b/develop/doc/html/design/metafunctions.html index f4ba3cc11..097cf1ca0 100644 --- a/develop/doc/html/design/metafunctions.html +++ b/develop/doc/html/design/metafunctions.html @@ -302,8 +302,8 @@ is basic, but a color converted view or a virtual view is not.

\ No newline at end of file diff --git a/develop/doc/html/design/pixel.html b/develop/doc/html/design/pixel.html index ee7fa3e53..268a3b11a 100644 --- a/develop/doc/html/design/pixel.html +++ b/develop/doc/html/design/pixel.html @@ -348,8 +348,8 @@ different color spaces and channel types:

\ No newline at end of file diff --git a/develop/doc/html/design/pixel_iterator.html b/develop/doc/html/design/pixel_iterator.html index 62155aa05..bf6cbf045 100644 --- a/develop/doc/html/design/pixel_iterator.html +++ b/develop/doc/html/design/pixel_iterator.html @@ -372,8 +372,8 @@ but not MemoryBased \ No newline at end of file diff --git a/develop/doc/html/design/pixel_locator.html b/develop/doc/html/design/pixel_locator.html index 5611a5c6d..098b6738c 100644 --- a/develop/doc/html/design/pixel_locator.html +++ b/develop/doc/html/design/pixel_locator.html @@ -358,8 +358,8 @@ using the x-iterators directly.

\ No newline at end of file diff --git a/develop/doc/html/design/point.html b/develop/doc/html/design/point.html index 7cc1d1c04..7d494e8ef 100644 --- a/develop/doc/html/design/point.html +++ b/develop/doc/html/design/point.html @@ -134,8 +134,8 @@ coordinate type.

\ No newline at end of file diff --git a/develop/doc/html/design/technicalities.html b/develop/doc/html/design/technicalities.html index 00dfc4b58..3fae521c2 100644 --- a/develop/doc/html/design/technicalities.html +++ b/develop/doc/html/design/technicalities.html @@ -159,8 +159,8 @@ suggesting the above solution.

\ No newline at end of file diff --git a/develop/doc/html/genindex.html b/develop/doc/html/genindex.html index 8c77a4d2e..5a02ec05a 100644 --- a/develop/doc/html/genindex.html +++ b/develop/doc/html/genindex.html @@ -75,8 +75,8 @@ \ No newline at end of file diff --git a/develop/doc/html/image_processing/affine-region-detectors.html b/develop/doc/html/image_processing/affine-region-detectors.html index 0086f5887..75ae4034c 100644 --- a/develop/doc/html/image_processing/affine-region-detectors.html +++ b/develop/doc/html/image_processing/affine-region-detectors.html @@ -162,8 +162,8 @@ detector.” In Alvey vision conference, vol. 15, no. 50, pp. 10-5244. \ No newline at end of file diff --git a/develop/doc/html/image_processing/basics.html b/develop/doc/html/image_processing/basics.html index 5ef795cea..79f4e083a 100644 --- a/develop/doc/html/image_processing/basics.html +++ b/develop/doc/html/image_processing/basics.html @@ -123,8 +123,8 @@ gets sharper depending on it’s sigma value.

\ No newline at end of file diff --git a/develop/doc/html/image_processing/index.html b/develop/doc/html/image_processing/index.html index 7a45fec16..ca8edebe7 100644 --- a/develop/doc/html/image_processing/index.html +++ b/develop/doc/html/image_processing/index.html @@ -99,8 +99,8 @@ features, structures and algorithms, for image processing and analysis.

\ No newline at end of file diff --git a/develop/doc/html/image_processing/overview.html b/develop/doc/html/image_processing/overview.html index 36e077e0d..4ca077f64 100644 --- a/develop/doc/html/image_processing/overview.html +++ b/develop/doc/html/image_processing/overview.html @@ -88,8 +88,8 @@ projects run in frame of the Google Summer of Code 2019:

\ No newline at end of file diff --git a/develop/doc/html/index.html b/develop/doc/html/index.html index c5696bc45..fa8f191df 100644 --- a/develop/doc/html/index.html +++ b/develop/doc/html/index.html @@ -178,8 +178,8 @@ Blurring images (requires the optional Numeric extension)

\ No newline at end of file diff --git a/develop/doc/html/installation.html b/develop/doc/html/installation.html index 9d1c62abb..7f1165d32 100644 --- a/develop/doc/html/installation.html +++ b/develop/doc/html/installation.html @@ -90,8 +90,8 @@ where to find Boost and GIL headers should be sufficient for most projects.

\ No newline at end of file diff --git a/develop/doc/html/io.html b/develop/doc/html/io.html index d719c29e4..cefb64a1e 100644 --- a/develop/doc/html/io.html +++ b/develop/doc/html/io.html @@ -736,8 +736,8 @@ to enable the tests:

\ No newline at end of file diff --git a/develop/doc/html/naming.html b/develop/doc/html/naming.html index deec601f9..5a4f3beb2 100644 --- a/develop/doc/html/naming.html +++ b/develop/doc/html/naming.html @@ -114,8 +114,8 @@ pixel.

\ No newline at end of file diff --git a/develop/doc/html/numeric.html b/develop/doc/html/numeric.html index e787235d3..d4433977c 100644 --- a/develop/doc/html/numeric.html +++ b/develop/doc/html/numeric.html @@ -79,8 +79,8 @@ \ No newline at end of file diff --git a/develop/doc/html/search.html b/develop/doc/html/search.html index 784b4a437..67586897f 100644 --- a/develop/doc/html/search.html +++ b/develop/doc/html/search.html @@ -83,8 +83,8 @@ \ No newline at end of file diff --git a/develop/doc/html/toolbox.html b/develop/doc/html/toolbox.html index 1c4585eae..0bc888f2f 100644 --- a/develop/doc/html/toolbox.html +++ b/develop/doc/html/toolbox.html @@ -128,8 +128,8 @@ made suggestions for improvements.

\ No newline at end of file diff --git a/develop/doc/html/tutorial/gradient.html b/develop/doc/html/tutorial/gradient.html index 6871dec60..9e3edb6d3 100644 --- a/develop/doc/html/tutorial/gradient.html +++ b/develop/doc/html/tutorial/gradient.html @@ -953,8 +953,8 @@ code with different compilers.

\ No newline at end of file diff --git a/develop/doc/html/tutorial/histogram.html b/develop/doc/html/tutorial/histogram.html index e1bb0d5cf..d1cee60ca 100644 --- a/develop/doc/html/tutorial/histogram.html +++ b/develop/doc/html/tutorial/histogram.html @@ -171,8 +171,8 @@ memory is allocated and no images are copied.

\ No newline at end of file diff --git a/develop/doc/html/tutorial/video.html b/develop/doc/html/tutorial/video.html index 047cc7aa5..58e5eded9 100644 --- a/develop/doc/html/tutorial/video.html +++ b/develop/doc/html/tutorial/video.html @@ -82,8 +82,8 @@ \ No newline at end of file