MCPcopy Index your code
hub / github.com/MapServer/MapServer / msOWSGetSchemasLocation

Function msOWSGetSchemasLocation

mapows.c:738–748  ·  view source on GitHub ↗

msOWSGetSchemasLocation() ** ** schemas location is the root of the web tree where all WFS-related ** schemas can be found on this server. These URLs must exist in order ** to validate xml. ** ** Use value of "ows_schemas_location" metadata, if not set then ** return ".." as a default */

Source from the content-addressed store, hash-verified

736** return ".." as a default
737*/
738const char *msOWSGetSchemasLocation(mapObj *map)
739{
740 const char *schemas_location;
741
742 schemas_location = msLookupHashTable(&(map->web.metadata),
743 "ows_schemas_location");
744 if (schemas_location == NULL)
745 schemas_location = OWS_DEFAULT_SCHEMAS_LOCATION;
746
747 return schemas_location;
748}
749
750/* msOWSGetLanguage()
751**

Callers 15

msSLDGenerateSLDFunction · 0.85
msWCSExceptionFunction · 0.85
msWCSGetCapabilitiesFunction · 0.85
msWCSDescribeCoverageFunction · 0.85
msWCSPrepareNamespaces20Function · 0.85
msWCSException20Function · 0.85
msWFSException11Function · 0.85
msWFSGetCapabilities11Function · 0.85
msWMSExceptionFunction · 0.85

Calls 1

msLookupHashTableFunction · 0.85

Tested by

no test coverage detected