Module: kamailio Branch: master Commit: 58057e9c78971ee215b508f912e94f79bc57f247 URL: https://github.com/kamailio/kamailio/commit/58057e9c78971ee215b508f912e94f79...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2025-06-10T13:52:34+02:00
lib/srdb1: fix schema Makefile after e0dd39618fae2004cd1ab44758ca323376935e2e
diff --git a/doc/stylesheets/dbschema_k/xsl/mongodb.xsl b/doc/stylesheets/dbschema_k/xsl/db_mongodb.xsl similarity index 100% rename from doc/stylesheets/dbschema_k/xsl/mongodb.xsl rename to doc/stylesheets/dbschema_k/xsl/db_mongodb.xsl diff --git a/doc/stylesheets/dbschema_k/xsl/mysql.xsl b/doc/stylesheets/dbschema_k/xsl/db_mysql.xsl similarity index 100% rename from doc/stylesheets/dbschema_k/xsl/mysql.xsl rename to doc/stylesheets/dbschema_k/xsl/db_mysql.xsl diff --git a/doc/stylesheets/dbschema_k/xsl/oracle.xsl b/doc/stylesheets/dbschema_k/xsl/db_oracle.xsl similarity index 100% rename from doc/stylesheets/dbschema_k/xsl/oracle.xsl rename to doc/stylesheets/dbschema_k/xsl/db_oracle.xsl diff --git a/doc/stylesheets/dbschema_k/xsl/postgres.xsl b/doc/stylesheets/dbschema_k/xsl/db_postgres.xsl similarity index 100% rename from doc/stylesheets/dbschema_k/xsl/postgres.xsl rename to doc/stylesheets/dbschema_k/xsl/db_postgres.xsl diff --git a/doc/stylesheets/dbschema_k/xsl/dbtext.xsl b/doc/stylesheets/dbschema_k/xsl/db_text.xsl similarity index 100% rename from doc/stylesheets/dbschema_k/xsl/dbtext.xsl rename to doc/stylesheets/dbschema_k/xsl/db_text.xsl
---
Modified: src/lib/srdb1/schema/Makefile
---
Diff: https://github.com/kamailio/kamailio/commit/58057e9c78971ee215b508f912e94f79... Patch: https://github.com/kamailio/kamailio/commit/58057e9c78971ee215b508f912e94f79...
---
diff --git a/src/lib/srdb1/schema/Makefile b/src/lib/srdb1/schema/Makefile index b057387c703..b76b485e402 100644 --- a/src/lib/srdb1/schema/Makefile +++ b/src/lib/srdb1/schema/Makefile @@ -17,13 +17,13 @@ PI_FRAMEWORK_TABLE_XSL = $(STYLESHEETS)/pi_framework_table.xsl PI_FRAMEWORK_MOD_XSL = $(STYLESHEETS)/pi_framework_mod.xsl
# Stylesheet used to generate MySQL database schema -MYSQL_XSL = $(STYLESHEETS)/mysql.xsl +MYSQL_XSL = $(STYLESHEETS)/db_mysql.xsl
# Stylesheet used to generate Postgres database schema -POSTGRES_XSL = $(STYLESHEETS)/postgres.xsl +POSTGRES_XSL = $(STYLESHEETS)/db_postgres.xsl
# Stylesheet used to generate dbtext database schema -DBTEXT_XSL = $(STYLESHEETS)/dbtext.xsl +DBTEXT_XSL = $(STYLESHEETS)/db_text.xsl
# Stylesheet used to generate berkeley database schema DB_BERKELEY_XSL = $(STYLESHEETS)/db_berkeley.xsl @@ -32,10 +32,10 @@ DB_BERKELEY_XSL = $(STYLESHEETS)/db_berkeley.xsl DB_SQLITE_XSL = $(STYLESHEETS)/db_sqlite.xsl
# Stylesheet used to generate oracle database schema -ORACLE_XSL = $(STYLESHEETS)/oracle.xsl +ORACLE_XSL = $(STYLESHEETS)/db_oracle.xsl
# Stylesheet used to generate mongodb database schema -MONGODB_XSL = $(STYLESHEETS)/mongodb.xsl +MONGODB_XSL = $(STYLESHEETS)/db_mongodb.xsl
# Stylesheet used to generate Redis database schema DB_REDIS_XSL = $(STYLESHEETS)/db_redis.xsl