From 815f9a5dc32fffc7643acaff0beeca06e3657c7a Mon Sep 17 00:00:00 2001
From: James Wallace <92064306+jwallace94@users.noreply.github.com>
Date: Wed, 1 Jul 2026 10:24:17 +1000
Subject: [PATCH] Added commenting missing from some of the GA customisations
---
pygeoapi/provider/oracle.py | 1 +
pygeoapi/templates/_base.html | 2 ++
pygeoapi/templates/collections/items/index.html | 2 ++
pygeoapi/templates/collections/items/item.html | 1 +
pygeoapi/templates/collections/schema.html | 1 +
5 files changed, 7 insertions(+)
diff --git a/pygeoapi/provider/oracle.py b/pygeoapi/provider/oracle.py
index ff708b279..fdd880284 100644
--- a/pygeoapi/provider/oracle.py
+++ b/pygeoapi/provider/oracle.py
@@ -938,6 +938,7 @@ def _get_previous(self, cursor, identifier):
:returns: feature id
"""
+ #GA Customisation - Correction to the SQL logic for retrieving the previous record (DAT-1039)
sql = f"SELECT * \
FROM ( \
SELECT {self.id_field} AS id \
diff --git a/pygeoapi/templates/_base.html b/pygeoapi/templates/_base.html
index e61566aca..3a5435cd4 100644
--- a/pygeoapi/templates/_base.html
+++ b/pygeoapi/templates/_base.html
@@ -43,6 +43,7 @@