[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1123-g4e3cb0699
git at osgeo.org
git at osgeo.org
Wed Jul 5 01:28:45 PDT 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".
The branch, master has been updated
via 4e3cb069937695cc5d4e658bdb4662da3ac75365 (commit)
from 01254db7360f5f79302f290538964ea4f8e65505 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4e3cb069937695cc5d4e658bdb4662da3ac75365
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Jul 5 10:00:07 2023 +0200
Convert gif files to png, to avoid build-time conversion
Closes #5432
diff --git a/.gitignore b/.gitignore
index 63647a7f6..3c7c08329 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,13 +23,16 @@ config.guess
config.sub
config.status
configure
-de9i*.png
doc/*.html
doc/images
doc/html/images/generator
doc/html/images/Makefile
+
+# PNG images under doc/html/images
+# should be either symlinks or generated
+# files, so we ignore them
doc/html/images/*.png
-doc/html/images/*.gif
+
doc/html/*.html
doc/html/docbook.css
doc/Makefile
@@ -174,7 +177,6 @@ sfcgal/*.sql
sfcgal/sfcgal_upgrade.sql.in
*.so
*.dylib
-st_*.png
.svn
topology/Makefile
topology/test/Makefile
diff --git a/doc/html/images/static/st_crosses-math.gif b/doc/html/images/static/st_crosses-math.gif
deleted file mode 100644
index 306d119c9..000000000
Binary files a/doc/html/images/static/st_crosses-math.gif and /dev/null differ
diff --git a/doc/html/images/static/st_crosses-math.png b/doc/html/images/static/st_crosses-math.png
new file mode 100644
index 000000000..52ddb5a2f
Binary files /dev/null and b/doc/html/images/static/st_crosses-math.png differ
diff --git a/doc/html/images/static/st_touches-math.gif b/doc/html/images/static/st_touches-math.gif
deleted file mode 100644
index d22a58121..000000000
Binary files a/doc/html/images/static/st_touches-math.gif and /dev/null differ
diff --git a/doc/html/images/static/st_touches-math.png b/doc/html/images/static/st_touches-math.png
new file mode 100644
index 000000000..dd59a4556
Binary files /dev/null and b/doc/html/images/static/st_touches-math.png differ
diff --git a/doc/reference_relationship.xml b/doc/reference_relationship.xml
index a21f484b3..7fdcc8009 100644
--- a/doc/reference_relationship.xml
+++ b/doc/reference_relationship.xml
@@ -622,7 +622,7 @@ SELECT ST_Covers(geog_poly, geog_pt) As poly_covers_pt,
<informalfigure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/st_crosses-math.gif" />
+ <imagedata fileref="images/st_crosses-math.png" />
</imageobject>
</mediaobject>
</informalfigure>
@@ -1697,7 +1697,7 @@ SELECT pat.name AS relationship, pat.val AS pattern,
<informalfigure>
<mediaobject>
<imageobject>
- <imagedata fileref="images/st_touches-math.gif" />
+ <imagedata fileref="images/st_touches-math.png" />
</imageobject>
</mediaobject>
</informalfigure>
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 8 +++++---
doc/html/images/static/st_crosses-math.gif | Bin 1923 -> 0 bytes
doc/html/images/static/st_crosses-math.png | Bin 0 -> 1906 bytes
doc/html/images/static/st_touches-math.gif | Bin 769 -> 0 bytes
doc/html/images/static/st_touches-math.png | Bin 0 -> 947 bytes
doc/reference_relationship.xml | 4 ++--
6 files changed, 7 insertions(+), 5 deletions(-)
delete mode 100644 doc/html/images/static/st_crosses-math.gif
create mode 100644 doc/html/images/static/st_crosses-math.png
delete mode 100644 doc/html/images/static/st_touches-math.gif
create mode 100644 doc/html/images/static/st_touches-math.png
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list