Skip to content

Commit ca1e191

Browse files
author
MapServer deploybot
committed
update with results of commit MapServer/MapServer-documentation@993420b
1 parent b892abc commit ca1e191

File tree

513 files changed

+1072
-1077
lines changed

Some content is hidden

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

513 files changed

+1072
-1077
lines changed

MIGRATION_GUIDE.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1432,8 +1432,8 @@ <h3>Navigation</h3>
14321432
</div>
14331433
<div class="footer" role="contentinfo">
14341434
&#169; <a href="copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
1435-
Last updated on 2025-02-10.
1436-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
1435+
Last updated on 2025-02-24.
1436+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
14371437
</div>
14381438
</body>
14391439
</html>

_modules/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ <h3>Navigation</h3>
159159
</div>
160160
<div class="footer" role="contentinfo">
161161
&#169; <a href="../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
162-
Last updated on 2025-02-10.
163-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
162+
Last updated on 2025-02-24.
163+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
164164
</div>
165165
</body>
166166
</html>

_modules/mapscript/mapscript.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5576,8 +5576,8 @@ <h3>Navigation</h3>
55765576
</div>
55775577
<div class="footer" role="contentinfo">
55785578
&#169; <a href="../../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
5579-
Last updated on 2025-02-10.
5580-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
5579+
Last updated on 2025-02-24.
5580+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
55815581
</div>
55825582
</body>
55835583
</html>

_static/basic.css

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -741,14 +741,6 @@ abbr, acronym {
741741
cursor: help;
742742
}
743743

744-
.translated {
745-
background-color: rgba(207, 255, 207, 0.2)
746-
}
747-
748-
.untranslated {
749-
background-color: rgba(255, 207, 207, 0.2)
750-
}
751-
752744
/* -- code displays --------------------------------------------------------- */
753745

754746
pre {

_static/searchtools.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -513,9 +513,11 @@ const Search = {
513513
// perform the search on the required terms
514514
searchTerms.forEach((word) => {
515515
const files = [];
516+
// find documents, if any, containing the query word in their text/title term indices
517+
// use Object.hasOwnProperty to avoid mismatching against prototype properties
516518
const arr = [
517-
{ files: terms[word], score: Scorer.term },
518-
{ files: titleTerms[word], score: Scorer.title },
519+
{ files: terms.hasOwnProperty(word) ? terms[word] : undefined, score: Scorer.term },
520+
{ files: titleTerms.hasOwnProperty(word) ? titleTerms[word] : undefined, score: Scorer.title },
519521
];
520522
// add support for partial matches
521523
if (word.length > 2) {
@@ -547,8 +549,9 @@ const Search = {
547549

548550
// set score for the word in each file
549551
recordFiles.forEach((file) => {
550-
if (!scoreMap.has(file)) scoreMap.set(file, {});
551-
scoreMap.get(file)[word] = record.score;
552+
if (!scoreMap.has(file)) scoreMap.set(file, new Map());
553+
const fileScores = scoreMap.get(file);
554+
fileScores.set(word, record.score);
552555
});
553556
});
554557

@@ -587,7 +590,7 @@ const Search = {
587590
break;
588591

589592
// select one (max) score for the file.
590-
const score = Math.max(...wordList.map((w) => scoreMap.get(file)[w]));
593+
const score = Math.max(...wordList.map((w) => scoreMap.get(file).get(w)));
591594
// add result to the result list
592595
results.push([
593596
docNames[file],

about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,8 +244,8 @@ <h3>Navigation</h3>
244244
</div>
245245
<div class="footer" role="contentinfo">
246246
&#169; <a href="copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
247-
Last updated on 2025-02-10.
248-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
247+
Last updated on 2025-02-24.
248+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
249249
</div>
250250
</body>
251251
</html>

announcements/2021-03-30-limit-mapfile-access.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ <h3>Navigation</h3>
183183
</div>
184184
<div class="footer" role="contentinfo">
185185
&#169; <a href="../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
186-
Last updated on 2025-02-10.
187-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
186+
Last updated on 2025-02-24.
187+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
188188
</div>
189189
</body>
190190
</html>

announcements/2021-06-11-community-condolences.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ <h3>Navigation</h3>
195195
</div>
196196
<div class="footer" role="contentinfo">
197197
&#169; <a href="../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
198-
Last updated on 2025-02-10.
199-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
198+
Last updated on 2025-02-24.
199+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
200200
</div>
201201
</body>
202202
</html>

announcements/announcements_archive.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -657,8 +657,8 @@ <h3>Navigation</h3>
657657
</div>
658658
<div class="footer" role="contentinfo">
659659
&#169; <a href="../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
660-
Last updated on 2025-02-10.
661-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
660+
Last updated on 2025-02-24.
661+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
662662
</div>
663663
</body>
664664
</html>

announcements/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ <h3>Navigation</h3>
168168
</div>
169169
<div class="footer" role="contentinfo">
170170
&#169; <a href="../copyright.html">Copyright</a> 2025, Open Source Geospatial Foundation.
171-
Last updated on 2025-02-10.
172-
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.1.3.
171+
Last updated on 2025-02-24.
172+
Created using <a href="https://www.sphinx-doc.org/">Sphinx</a> 8.2.1.
173173
</div>
174174
</body>
175175
</html>

0 commit comments

Comments
 (0)