Skip to content

Commit 2c6d7e4

Browse files
committed
Updated 152 doc to reinclude survey123
1 parent e0d8d6a commit 2c6d7e4

93 files changed

Lines changed: 16734 additions & 4309 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apidoc/html/_sources/arcgis.apps.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ Submodules
2525
:maxdepth: 3
2626

2727
arcgis.apps.workforce
28-
arcgis.apps.storymap
28+
arcgis.apps.storymap
29+
arcgis.apps.survey123

apidoc/html/_sources/arcgis.apps.storymap.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ JournalStoryMap
88
.. autoclass:: arcgis.apps.storymap.JournalStoryMap
99
:members:
1010
:undoc-members:
11-
:show-inheritance:
11+
:show-inheritance:
12+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
arcgis\.apps\.survey123 module
2+
==============================
3+
4+
.. automodule:: arcgis.apps.survey123
5+
6+
SurveyManager
7+
----------------
8+
.. autoclass:: arcgis.apps.survey123.SurveyManager
9+
:members:
10+
:undoc-members:
11+
:show-inheritance:
12+
13+
Survey
14+
----------------
15+
.. autoclass:: arcgis.apps.survey123.Survey
16+
:members:
17+
:undoc-members:
18+
:show-inheritance:
19+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
arcgis.learn module
2+
====================
3+
4+
.. automodule:: arcgis.learn
5+
6+
detect_objects
7+
--------------
8+
.. automethod:: arcgis.learn.detect_objects
9+
10+
classify_pixels
11+
--------------
12+
.. automethod:: arcgis.learn.classify_pixels
13+
14+
15+
export_training_data
16+
---------------
17+
.. automethod:: arcgis.learn.export_training_data
18+
19+
20+
list_models
21+
---------------
22+
.. automethod:: arcgis.learn.list_models
23+
24+
25+
Model
26+
------
27+
.. autoclass:: arcgis.learn.Model
28+
:members:
29+
:undoc-members:
30+

apidoc/html/_static/basic.css

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -82,9 +82,21 @@ div.sphinxsidebar input {
8282
}
8383

8484
div.sphinxsidebar #searchbox input[type="text"] {
85-
width: 170px;
85+
float: left;
86+
width: 80%;
87+
padding: 0.25em;
88+
box-sizing: border-box;
89+
}
90+
91+
div.sphinxsidebar #searchbox input[type="submit"] {
92+
float: left;
93+
width: 20%;
94+
border-left: none;
95+
padding: 0.25em;
96+
box-sizing: border-box;
8697
}
8798

99+
88100
img {
89101
border: 0;
90102
max-width: 100%;
@@ -199,6 +211,11 @@ table.modindextable td {
199211

200212
/* -- general body styles --------------------------------------------------- */
201213

214+
div.body {
215+
min-width: 450px;
216+
max-width: 800px;
217+
}
218+
202219
div.body p, div.body dd, div.body li, div.body blockquote {
203220
-moz-hyphens: auto;
204221
-ms-hyphens: auto;
@@ -332,6 +349,11 @@ table.docutils {
332349
border-collapse: collapse;
333350
}
334351

352+
table.align-center {
353+
margin-left: auto;
354+
margin-right: auto;
355+
}
356+
335357
table caption span.caption-number {
336358
font-style: italic;
337359
}
@@ -445,10 +467,14 @@ dd {
445467
margin-left: 30px;
446468
}
447469

448-
dt:target, .highlighted {
470+
dt:target, span.highlighted {
449471
background-color: #fbe54e;
450472
}
451473

474+
rect.highlighted {
475+
fill: #fbe54e;
476+
}
477+
452478
dl.glossary dt {
453479
font-weight: bold;
454480
font-size: 1.1em;

apidoc/html/_static/css/badge_only.css

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apidoc/html/_static/css/theme.css

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apidoc/html/_static/doctools.js

Lines changed: 43 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx JavaScript utilities for all documentation.
66
*
7-
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/
@@ -45,7 +45,7 @@ jQuery.urlencode = encodeURIComponent;
4545
* it will always return arrays of strings for the value parts.
4646
*/
4747
jQuery.getQueryParameters = function(s) {
48-
if (typeof s == 'undefined')
48+
if (typeof s === 'undefined')
4949
s = document.location.search;
5050
var parts = s.substr(s.indexOf('?') + 1).split('&');
5151
var result = {};
@@ -66,29 +66,55 @@ jQuery.getQueryParameters = function(s) {
6666
* span elements with the given class name.
6767
*/
6868
jQuery.fn.highlightText = function(text, className) {
69-
function highlight(node) {
70-
if (node.nodeType == 3) {
69+
function highlight(node, addItems) {
70+
if (node.nodeType === 3) {
7171
var val = node.nodeValue;
7272
var pos = val.toLowerCase().indexOf(text);
73-
if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) {
74-
var span = document.createElement("span");
75-
span.className = className;
73+
if (pos >= 0 &&
74+
!jQuery(node.parentNode).hasClass(className) &&
75+
!jQuery(node.parentNode).hasClass("nohighlight")) {
76+
var span;
77+
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg");
78+
if (isInSVG) {
79+
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan");
80+
} else {
81+
span = document.createElement("span");
82+
span.className = className;
83+
}
7684
span.appendChild(document.createTextNode(val.substr(pos, text.length)));
7785
node.parentNode.insertBefore(span, node.parentNode.insertBefore(
7886
document.createTextNode(val.substr(pos + text.length)),
7987
node.nextSibling));
8088
node.nodeValue = val.substr(0, pos);
89+
if (isInSVG) {
90+
var bbox = span.getBBox();
91+
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect");
92+
rect.x.baseVal.value = bbox.x;
93+
rect.y.baseVal.value = bbox.y;
94+
rect.width.baseVal.value = bbox.width;
95+
rect.height.baseVal.value = bbox.height;
96+
rect.setAttribute('class', className);
97+
var parentOfText = node.parentNode.parentNode;
98+
addItems.push({
99+
"parent": node.parentNode,
100+
"target": rect});
101+
}
81102
}
82103
}
83104
else if (!jQuery(node).is("button, select, textarea")) {
84105
jQuery.each(node.childNodes, function() {
85-
highlight(this);
106+
highlight(this, addItems);
86107
});
87108
}
88109
}
89-
return this.each(function() {
90-
highlight(this);
110+
var addItems = [];
111+
var result = this.each(function() {
112+
highlight(this, addItems);
91113
});
114+
for (var i = 0; i < addItems.length; ++i) {
115+
jQuery(addItems[i].parent).before(addItems[i].target);
116+
}
117+
return result;
92118
};
93119

94120
/*
@@ -131,21 +157,21 @@ var Documentation = {
131157
* i18n support
132158
*/
133159
TRANSLATIONS : {},
134-
PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; },
160+
PLURAL_EXPR : function(n) { return n === 1 ? 0 : 1; },
135161
LOCALE : 'unknown',
136162

137163
// gettext and ngettext don't access this so that the functions
138164
// can safely bound to a different name (_ = Documentation.gettext)
139165
gettext : function(string) {
140166
var translated = Documentation.TRANSLATIONS[string];
141-
if (typeof translated == 'undefined')
167+
if (typeof translated === 'undefined')
142168
return string;
143-
return (typeof translated == 'string') ? translated : translated[0];
169+
return (typeof translated === 'string') ? translated : translated[0];
144170
},
145171

146172
ngettext : function(singular, plural, n) {
147173
var translated = Documentation.TRANSLATIONS[singular];
148-
if (typeof translated == 'undefined')
174+
if (typeof translated === 'undefined')
149175
return (n == 1) ? singular : plural;
150176
return translated[Documentation.PLURALEXPR(n)];
151177
},
@@ -180,7 +206,7 @@ var Documentation = {
180206
* see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075
181207
*/
182208
fixFirefoxAnchorBug : function() {
183-
if (document.location.hash)
209+
if (document.location.hash && $.browser.mozilla)
184210
window.setTimeout(function() {
185211
document.location.href += '';
186212
}, 10);
@@ -216,7 +242,7 @@ var Documentation = {
216242
var src = $(this).attr('src');
217243
var idnum = $(this).attr('id').substr(7);
218244
$('tr.cg-' + idnum).toggle();
219-
if (src.substr(-9) == 'minus.png')
245+
if (src.substr(-9) === 'minus.png')
220246
$(this).attr('src', src.substr(0, src.length-9) + 'plus.png');
221247
else
222248
$(this).attr('src', src.substr(0, src.length-8) + 'minus.png');
@@ -248,7 +274,7 @@ var Documentation = {
248274
var path = document.location.pathname;
249275
var parts = path.split(/\//);
250276
$.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() {
251-
if (this == '..')
277+
if (this === '..')
252278
parts.pop();
253279
});
254280
var url = parts.join('/');
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
var DOCUMENTATION_OPTIONS = {
2+
URL_ROOT: '',
3+
VERSION: '1.5.2',
4+
LANGUAGE: 'None',
5+
COLLAPSE_INDEX: false,
6+
FILE_SUFFIX: '.html',
7+
HAS_SOURCE: true,
8+
SOURCELINK_SUFFIX: '.txt'
9+
};
250 KB
Binary file not shown.

0 commit comments

Comments
 (0)