# HG changeset patch # User František Kučera # Date 1432481737 -7200 # Node ID 03d8492e2ca8c995ad1261f8c189d0c4cae9a226 # Parent 7a2f535017e4eab36dafdf51725e0be31d8feb33 Schemas and XSL for new 'driver' configuration option diff -r 7a2f535017e4 -r 03d8492e2ca8 xml/config.rnc --- a/xml/config.rnc Mon May 18 00:36:23 2015 +0200 +++ b/xml/config.rnc Sun May 24 17:35:37 2015 +0200 @@ -24,6 +24,7 @@ element url { text }, element userName { text }?, element password { text }?, + element driver { text }?, element property { attribute name { text }, text diff -r 7a2f535017e4 -r 03d8492e2ca8 xml/config.xml --- a/xml/config.xml Mon May 18 00:36:23 2015 +0200 +++ b/xml/config.xml Sun May 24 17:35:37 2015 +0200 @@ -9,6 +9,7 @@ jdbc:postgresql://localhost:5432/database_name dbuser dbpass + org.postgresql.Driver @@ -16,6 +17,7 @@ jdbc:mysql://localhost:3306/database_name dbuser dbpass + com.mysql.jdbc.Driver diff -r 7a2f535017e4 -r 03d8492e2ca8 xml/config.xsd --- a/xml/config.xsd Mon May 18 00:36:23 2015 +0200 +++ b/xml/config.xsd Sun May 24 17:35:37 2015 +0200 @@ -39,6 +39,7 @@ + @@ -48,6 +49,7 @@ + diff -r 7a2f535017e4 -r 03d8492e2ca8 xml/config.xsl --- a/xml/config.xsl Mon May 18 00:36:23 2015 +0200 +++ b/xml/config.xsl Sun May 24 17:35:37 2015 +0200 @@ -103,6 +103,13 @@ li { padding: 0px; } + + .notes { + font-size: 66%; + } + .notes p { + margin-bottom: 0px; + } @@ -126,6 +133,7 @@ name username url + JDBC driver properties @@ -135,6 +143,7 @@ +
@@ -144,7 +153,13 @@

no databases are configured

-

(passwords are hidden in this output)

+
+

Notes:

+
    +
  • passwords are hidden in this output
  • +
  • JDBC drivers are not mandatory – not needed in SQL-DK, but sometimes useful when jdbc-dk-driver is used in other applications to load SQL-DK's database connections
  • +
+

Output formatters