Skip to content

Commit e7eecb9

Browse files
committed
add initial spelling wordlist
1 parent d13b63c commit e7eecb9

16 files changed

Lines changed: 278 additions & 53 deletions

File tree

conf.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,20 @@ def __getattr__(cls, name):
131131
# set filename used by spelling extension
132132
spelling_word_list_filename='spelling_wordlist.dict'
133133

134+
# spelling extension options
135+
# --------------------------
136+
137+
# set filename used by spelling extension
138+
spelling_word_list_filename='spelling_wordlist.dict'
139+
140+
# ignore changelogs and RFCs
141+
spelling_exclude_patterns = [
142+
'development/changelog/*',
143+
'development/changelog/mapcache/*',
144+
'development/changelog/tinyows/*',
145+
'development/rfc/*'
146+
]
147+
134148
# Options for HTML output
135149
# -----------------------
136150

en/development/documentation.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:Contact: hobu.inc at gmail.com
99
:Author: Jeff McKenna
1010
:Contact: jmckenna at gatewaygeomatics.com
11-
:Last Updated: 2026-03-23
11+
:Last Updated: 2026-03-28
1212

1313
.. contents:: Table of Contents
1414
:depth: 4
@@ -457,7 +457,7 @@ Please for both parameter, keep the alphabetical order to kept them readable.
457457

458458
**Structure of the i18n files in the MapServer-documentation root directory**
459459

460-
The structure you need to make all the transaltion process is like below (an
460+
The structure you need to make all the translation process is like below (an
461461
excerpt to give you the main required structure)
462462

463463
::

en/development/tests/autotest.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:Contact: warmerdam at pobox.com
99
:Author: Jeff McKenna
1010
:Contact: jmckenna at gatewaygeomatics.com
11-
:Last Updated: 2024-06-20
11+
:Last Updated: 2026-03-28
1212

1313
.. contents:: Table of Contents
1414
:depth: 2
@@ -245,7 +245,7 @@ REQUIRES - Handling Build Options
245245

246246
Because MapServer can be built with many possible extensions, such as support
247247
for OGR, GDAL, and PROJ.4, it is desirable to have the testsuite automatically
248-
detect which tests should be run based on the configuratio of MapServer. This
248+
detect which tests should be run based on the configuration of MapServer. This
249249
is accomplished by capturing the version output of "map2img -v" and using the
250250
various keys in that to decide which tests can be run. A directory can have a
251251
file called "all_require.txt" with a "REQUIRES:" line indicating components

en/input/vector/kml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
Keyhole Markup Language (KML) is an XML-based language for managing the
1212
display of 3D geospatial data. KML is a standard maintained by the Open
13-
Geospatial Consoritum (OGC).
13+
Geospatial Consortium (OGC).
1414

1515
Links to KML-Related Information
1616
--------------------------------

en/input/vector/oracle.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:Author: Bart van den Eijnden
88
:Author: Jeff McKenna
99
:Contact: jmckenna at gatewaygeomatics.com
10-
:Last Updated: 2021-05-05
10+
:Last Updated: 2026-03-28
1111

1212
.. contents:: Table of Contents
1313
:depth: 4
@@ -344,7 +344,7 @@ Syntax for your MAP file:
344344

345345
.. note::
346346
Make sure you set the wms_extent METADATA for the LAYER, as otherwise the
347-
"Getcapabilities" request takes a lot of time.
347+
"getCapabilities" request takes a lot of time.
348348

349349
What MapServer Components are related to Oracle Spatial access
350350
--------------------------------------------------------------

en/installation/oracle.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ Testing & Error handling
207207
........................
208208

209209
So you are fine now. Load the mapfile in your application and try it. If
210-
everything goes well: Great, if not, possibly this ugly error-emssage occurs
211-
(this one cmae by querying MapServer through the WMS interface as a
212-
GetMap-request):
210+
everything goes well: great, if not, possibly this ugly error message occurs
211+
(this one was made by querying MapServer through the WMS interface as a
212+
GetMap request):
213213

214214
::
215215

en/installation/win32.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Interim Builds title. The absolute latest copy of the source code can be
139139
obtained from :ref:`git`; however, the GitHub repository does not contain several
140140
important source files (maplexer.c, mapparser.c and
141141
mapparser.h) normally generated on unix, so if possible, using a nightly
142-
snaphot is substantially easier than working directly from :ref:`git`.
142+
snapshot is substantially easier than working directly from :ref:`git`.
143143

144144
**Required Libraries**
145145
----------------------

en/mapcache/caches.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ Blank Tile Detection
331331
MapCache's SQLite caches support the detection and storage of blank (i.e. uniform
332332
color) tiles, and will store a quadruplet of the rgba color component in the data
333333
blob instead of the compressed image data itself. That quadruplet will be
334-
transformed on-the-fly to a 1-bit palleted PNG before being returned to the client.
334+
transformed on-the-fly to a 1-bit paletted PNG before being returned to the client.
335335

336336

337337
.. code-block:: xml
@@ -589,7 +589,7 @@ You can add multiple <server> entries.
589589
To limit the memory used by blank tiles inside the memcache instance, you
590590
may enable blank tile detection, in which case a `#rgba` quadruplet will
591591
be stored to the cache instead of the actual image data. MapCache will convert
592-
that on-the-fly to a 1-bit palleted PNG image before returning it to the client.
592+
that on-the-fly to a 1-bit paletted PNG image before returning it to the client.
593593

594594

595595
.. code-block:: xml

en/mapcache/formats.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PNG Format
4242
--------------------------------------------------------------------------------
4343

4444
The PNG format creates PNG images, with optional quantization (reduction of
45-
the number of colors to create an 8-bit palleted PNG).
45+
the number of colors to create an 8-bit paletted PNG).
4646

4747
.. code-block:: xml
4848

@@ -56,7 +56,7 @@ the number of colors to create an 8-bit palleted PNG).
5656
zlib compression.
5757
- *colors*: Number of colors to use for quantization. Omit this key to
5858
produce 24 or 32 bit RGB/RGBA PNGs, or set to a value between 2 and 256
59-
to create an 8-bit palleted PNG. The quantization step is destructive:
59+
to create an 8-bit paletted PNG. The quantization step is destructive:
6060
There is no guarantee that pixels will not have a noticeable shift in color
6161
in the case when the tile contains many colors.
6262

en/mapcache/install.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ functionalities:
6969
run MapCache as an Apache module
7070
- **gdal / geos**: *libgdal1-dev* *libgeos-dev*. Needed to enable advanced seeding
7171
options (for only seeding tiles that intersect a given geographical feature)
72-
- **sqlite**: *libsqlite3-dev*. For enabling the SQLite backend storages
73-
- **tiff**: *libtiff4-dev*. For enabling the TIFF backend storages
74-
- **berkeley db** *libdb4.8-dev* : For enabling the Berkeley DB backend storages
75-
- **lmdb** *liblmdb-dev* : For enabling the Lightning Memory-Mapped Database backend storages
72+
- **sqlite**: *libsqlite3-dev*. For enabling the SQLite backend storage
73+
- **tiff**: *libtiff4-dev*. For enabling the TIFF backend storage
74+
- **berkeley db** *libdb4.8-dev* : For enabling the Berkeley DB backend storage
75+
- **lmdb** *liblmdb-dev* : For enabling the Lightning Memory-Mapped Database backend storage
7676
(available since MapCache 1.14.0 release)
7777

7878
.. note::
@@ -540,7 +540,7 @@ Here is a list of supported options that can be enabled/disabled at build.
540540

541541
When writing TIFF files, MapCache can also optionally add georeferencing
542542
information if compiled with libtiff support. GeoTiff writing does not
543-
produce the full tags needed for defining which preojection the grid is
543+
produce the full tags needed for defining which projection the grid is
544544
in, but will only produce those defining the pixel scale and the tiepoints
545545
(i.e. the equivalent information found in the accompanying .tfw files).
546546

@@ -638,8 +638,8 @@ Optional:
638638
MapCache as an Apache module
639639
- **GDAL / GEOS**: Needed to enable advanced seeding options (for only
640640
seeding tiles that intersect a given geographical feature)
641-
- **SQLITE**: For enabling the SQLite backend storages
642-
- **TIFF**: For enabling the TIFF backend storages
641+
- **SQLITE**: For enabling the SQLite backend storage
642+
- **TIFF**: For enabling the TIFF backend storage
643643

644644
Configure Your Makefile
645645
-----------------------

0 commit comments

Comments
 (0)