typo fixes
This commit is contained in:
parent
9a7999fcb5
commit
d3ecf73326
|
@ -108,7 +108,7 @@ with section("format"):
|
|||
autosort = False
|
||||
|
||||
# By default, if cmake-format cannot successfully fit everything into the
|
||||
# desired linewidth it will apply the last, most agressive attempt that it
|
||||
# desired linewidth it will apply the last, most aggressive attempt that it
|
||||
# made. If this flag is True, however, cmake-format will print error, exit
|
||||
# with non-zero status code, and write-out nothing
|
||||
require_valid_layout = False
|
||||
|
@ -146,7 +146,7 @@ with section("markup"):
|
|||
ruler_pattern = '^\\s*[^\\w\\s]{3}.*[^\\w\\s]{3}$'
|
||||
|
||||
# If a comment line matches starts with this pattern then it is explicitly a
|
||||
# trailing comment for the preceeding argument. Default is '#<'
|
||||
# trailing comment for the preceding argument. Default is '#<'
|
||||
explicit_trailing_pattern = '#<'
|
||||
|
||||
# If a comment line starts with at least this many consecutive hash
|
||||
|
|
|
@ -11,7 +11,7 @@ Our current policy for anyone wanting to report a security related issue is just
|
|||
to use the [public issue tracker](https://github.com/OSGeo/gdal/issues/new) for it.
|
||||
However please refrain from publicly posting exploits with harmful consequences (data destruction,
|
||||
etc.). Only people with the github handles from the [Project Steering Committee](https://gdal.org/community/index.html#project-steering-committee)
|
||||
(or people that they would explictly allow) are allowed to ask you privately for
|
||||
(or people that they would explicitly allow) are allowed to ask you privately for
|
||||
such dangerous reproducers if that was needed.
|
||||
|
||||
Note also that we have [listed a number of potential security issues](https://trac.osgeo.org/gdal/wiki/SecurityIssues)
|
||||
|
|
|
@ -47,7 +47,7 @@ pytestmark = pytest.mark.require_driver('DAAS')
|
|||
@pytest.fixture(autouse=True, scope='module')
|
||||
def startup_and_cleanup():
|
||||
|
||||
# Unset environment variables that influence the driver behaviour
|
||||
# Unset environment variables that influence the driver behavior
|
||||
daas_vars = {}
|
||||
for var in ('GDAL_DAAS_API_KEY', 'GDAL_DAAS_CLIENT_ID', 'GDAL_DAAS_AUTH_URL', 'GDAL_DAAS_ACCESS_TOKEN'):
|
||||
daas_vars[var] = gdal.GetConfigOption(var)
|
||||
|
|
|
@ -42,7 +42,7 @@ if (DOXYGEN_FOUND)
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/ReplaceStr.cmake
|
||||
MAIN_DEPENDENCY ${TARGET_HTML_DIR}/header.html
|
||||
WORKING_DIRECTORY ${TARGET_HTML_DIR})
|
||||
# generate Brazillian document
|
||||
# generate Brazilian document
|
||||
set(GDAL_DOXYGEN_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}")
|
||||
set(GDAL_DOXYGEN_PROJECT_NAME "BR")
|
||||
set(GDAL_DOXYGEN_LANGUAGE "Brazilian")
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# RST -- idrist RASTER driver refered from ogr_idrisi
|
||||
# RST -- idrist RASTER driver referred from ogr_idrisi
|
||||
add_gdal_driver(
|
||||
TARGET gdal_IDRISI
|
||||
SOURCES IdrisiDataset.cpp idrisi.h
|
||||
BUILTIN) # because OGR IDRISI depedent on us
|
||||
BUILTIN) # because OGR IDRISI dependent on us
|
||||
gdal_standard_includes(gdal_IDRISI)
|
||||
|
||||
gdal_target_link_libraries(TARGET gdal_IDRISI LIBRARIES PROJ::PROJ)
|
||||
|
|
|
@ -9,7 +9,7 @@ option(BUILD_DOCS "Build documents" ON)
|
|||
# This option is to build drivers as plugins, for drivers that have external
|
||||
# dependencies, that are not parf of GDAL core dependencies
|
||||
# Examples are netCDF, HDF4, Oracle, PDF, etc.
|
||||
# This global setting can be overriden at the driver level with
|
||||
# This global setting can be overridden at the driver level with
|
||||
# GDAL_ENABLE_FRMT_{foo}_PLUGIN or OGR_ENABLE_{foo}_PLUGIN variables.
|
||||
option(GDAL_ENABLE_PLUGINS "Set ON to build drivers that have non-core external dependencies as plugin" OFF)
|
||||
|
||||
|
@ -367,7 +367,7 @@ target_include_directories(${GDAL_LIB_TARGET_NAME} PUBLIC
|
|||
$<INSTALL_INTERFACE:${GDAL_INSTALL_INCLUDEDIR}>)
|
||||
|
||||
|
||||
# MSVC spefific resource preparation
|
||||
# MSVC specific resource preparation
|
||||
if (MSVC)
|
||||
target_sources(${GDAL_LIB_TARGET_NAME} PRIVATE gcore/Version.rc)
|
||||
source_group("Resource Files" FILES gcore/Version.rc)
|
||||
|
@ -490,7 +490,7 @@ install(
|
|||
FRAMEWORK DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
||||
|
||||
if (UNIX AND NOT GDAL_ENABLE_MACOSX_FRAMEWORK)
|
||||
# Genarate GdalConfig.cmake and GdalConfigVersion.cmake
|
||||
# Generate GdalConfig.cmake and GdalConfigVersion.cmake
|
||||
export(EXPORT gdal-export
|
||||
NAMESPACE GDAL::
|
||||
FILE gdal-export.cmake)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# reffered from DWG driver
|
||||
# referred from DWG driver
|
||||
add_gdal_driver(
|
||||
TARGET ogr_DXF
|
||||
SOURCES ogr_autocad_services.h
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# FIXME currently only version 7 is suppoted
|
||||
# FIXME currently only version 7 is supported
|
||||
set(GRASS_VERSION 7)
|
||||
add_gdal_driver(TARGET ogr_GRASS SOURCES ogrgrass.h ogrgrassdatasource.cpp ogrgrassdriver.cpp ogrgrasslayer.cpp)
|
||||
gdal_standard_includes(ogr_GRASS)
|
||||
|
|
|
@ -19,7 +19,7 @@ add_gdal_driver(
|
|||
ogrili2datasource.cpp
|
||||
imdreader.h
|
||||
imdreader.cpp
|
||||
BUILTIN) # FIXME: could be PLUGIN_CAPABLE NO_DEPS if there was a global GDALRegisterMe() entry poit
|
||||
BUILTIN) # FIXME: could be PLUGIN_CAPABLE NO_DEPS if there was a global GDALRegisterMe() entry point
|
||||
gdal_standard_includes(ogr_ILI)
|
||||
|
||||
if (GDAL_USE_XERCESC)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# reffered from ogr_MVT
|
||||
# referred from ogr_MVT
|
||||
add_gdal_driver(
|
||||
TARGET ogr_OSM
|
||||
SOURCES ogrosmdatasource.cpp ogrosmdriver.cpp ogrosmlayer.cpp osm_parser.cpp
|
||||
|
|
Loading…
Reference in New Issue