Skip to content

Commit

Permalink
Bumps version to 0.7.0, resolves #14, resolves #16
Browse files Browse the repository at this point in the history
docs: updates GitHub pages documentation
test: adds GitHub actions for test automation
  • Loading branch information
mitchos committed Jul 30, 2021
1 parent 9eabb9f commit 1a07478
Show file tree
Hide file tree
Showing 35 changed files with 258 additions and 122 deletions.
2 changes: 2 additions & 0 deletions docs/_sources/zs/zia/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ This package covers the ZIA interface.
sandbox
security
session
ssl
traffic
url_categories
url_filters
users

.. automodule:: pyzscaler.zia
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '0.6.0',
VERSION: '0.7.0',
LANGUAGE: 'None',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
40 changes: 20 additions & 20 deletions docs/_static/jquery-3.5.1.js
Original file line number Diff line number Diff line change
Expand Up @@ -2015,8 +2015,8 @@
(diff = nodeIndex = 0) || start.pop())) {

if ((ofType ?
node.nodeName.toLowerCase() === name :
node.nodeType === 1) &&
node.nodeName.toLowerCase() === name :
node.nodeType === 1) &&
++diff) {

// Cache the index of each encountered element
Expand Down Expand Up @@ -2651,10 +2651,10 @@
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 === " " ? "*" : ""})
// 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)),
Expand Down Expand Up @@ -6792,19 +6792,19 @@
// 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") ||
// 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" ||
// 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") &&
// 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) {
Expand Down Expand Up @@ -8718,7 +8718,7 @@
if (!onlyHandlers && !event.isDefaultPrevented()) {

if ((!special._default ||
special._default.apply(eventPath.pop(), data) === false) &&
special._default.apply(eventPath.pop(), data) === false) &&
acceptData(elem)) {

// Call a native DOM method on the target with the same name as the event.
Expand Down Expand Up @@ -10706,8 +10706,8 @@
});

jQuery.each(("blur focus focusin focusout resize scroll click dblclick " +
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
"change select submit keydown keypress keyup contextmenu").split(" "),
"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " +
"change select submit keydown keypress keyup contextmenu").split(" "),
function (_i, name) {

// Handle event binding
Expand Down
2 changes: 1 addition & 1 deletion docs/_static/underscore-1.13.1.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1a07478

Please sign in to comment.