Skip to content

Commit

Permalink
Minor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
interkosmos committed Aug 6, 2024
1 parent 412a753 commit 541713a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions guide/guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3040,12 +3040,6 @@ $ cd sqlite/
$ ./configure
....

You may want to disable Tcl if it is not installed locally:

....
$ ./configure --disable-tcl
....

Install SQLite 3 and test the command-line utility:

....
Expand Down
2 changes: 1 addition & 1 deletion src/dm_geojson.f90
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ subroutine dm_geojson_feature_point(geojson, type, lon, lat, alt, data)
!! "data": {
!! "id": "dummy-node",
!! "name": "Dummy Node",
!! "meta": "dummy description"
!! "meta": "dummy description",
!! "x": 0.0,
!! "y": 0.0,
!! "z": 0.0,
Expand Down
2 changes: 1 addition & 1 deletion src/dm_mime.f90
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ module dm_mime
character(len=*), parameter, public :: MIME_ATOM = 'application/atom+xml'
character(len=*), parameter, public :: MIME_CSS = 'text/css'
character(len=*), parameter, public :: MIME_CSV = 'text/comma-separated-values'
character(len=*), parameter, public :: MIME_GEOJSON = 'application/geo+json'
character(len=*), parameter, public :: MIME_FORM = 'application/x-www-form-urlencoded'
character(len=*), parameter, public :: MIME_FORM_DATA = 'multipart/form-data'
character(len=*), parameter, public :: MIME_GEOJSON = 'application/geo+json'
character(len=*), parameter, public :: MIME_GIF = 'image/gif'
character(len=*), parameter, public :: MIME_HTML = 'text/html'
character(len=*), parameter, public :: MIME_JS = 'application/javascript'
Expand Down

0 comments on commit 541713a

Please sign in to comment.