@@ -2666,7 +2666,7 @@ def conditional_prop(prop, default_prop)
2666
2666
2667
2667
def triggers_db_xml
2668
2668
%Q{
2669
- <database>
2669
+ <database xmlns="http://marklogic.com/xdmp/database" >
2670
2670
<database-name>@ml.triggers-db</database-name>
2671
2671
<forests>
2672
2672
<forest-id name="@ml.triggers-db"/>
@@ -2677,7 +2677,7 @@ def triggers_db_xml
2677
2677
2678
2678
def triggers_assignment
2679
2679
%Q{
2680
- <assignment>
2680
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2681
2681
<forest-name>@ml.triggers-db</forest-name>
2682
2682
</assignment>
2683
2683
}
@@ -2686,7 +2686,7 @@ def triggers_assignment
2686
2686
def xdbc_server
2687
2687
xdbc_auth_method = conditional_prop ( 'ml.xdbc-authentication-method' , 'ml.authentication-method' )
2688
2688
%Q{
2689
- <xdbc-server>
2689
+ <xdbc-server xmlns="http://marklogic.com/xdmp/group" >
2690
2690
<xdbc-server-name>@ml.app-name-xcc</xdbc-server-name>
2691
2691
<port>@ml.xcc-port</port>
2692
2692
<database name="@ml.content-db"/>
@@ -2699,7 +2699,7 @@ def xdbc_server
2699
2699
def odbc_server
2700
2700
odbc_auth_method = conditional_prop ( 'ml.odbc-authentication-method' , 'ml.authentication-method' )
2701
2701
%Q{
2702
- <odbc-server>
2702
+ <odbc-server xmlns="http://marklogic.com/xdmp/group" >
2703
2703
<odbc-server-name>@ml.app-name-odbc</odbc-server-name>
2704
2704
<port>@ml.odbc-port</port>
2705
2705
<database name="@ml.content-db"/>
@@ -2711,7 +2711,7 @@ def odbc_server
2711
2711
2712
2712
def schemas_db_xml
2713
2713
%Q{
2714
- <database>
2714
+ <database xmlns="http://marklogic.com/xdmp/database" >
2715
2715
<database-name>@ml.schemas-db</database-name>
2716
2716
<forests>
2717
2717
<forest-id name="@ml.schemas-db"/>
@@ -2722,15 +2722,15 @@ def schemas_db_xml
2722
2722
2723
2723
def schemas_assignment
2724
2724
%Q{
2725
- <assignment>
2725
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2726
2726
<forest-name>@ml.schemas-db</forest-name>
2727
2727
</assignment>
2728
2728
}
2729
2729
end
2730
2730
2731
2731
def test_content_db_xml
2732
2732
%Q{
2733
- <database import="@ml.content-db">
2733
+ <database import="@ml.content-db" xmlns="http://marklogic.com/xdmp/database" >
2734
2734
<database-name>@ml.test-content-db</database-name>
2735
2735
<forests>
2736
2736
<forest-id name="@ml.test-content-db"/>
@@ -2741,7 +2741,7 @@ def test_content_db_xml
2741
2741
2742
2742
def test_content_db_assignment
2743
2743
%Q{
2744
- <assignment>
2744
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2745
2745
<forest-name>@ml.test-content-db</forest-name>
2746
2746
</assignment>
2747
2747
}
@@ -2754,7 +2754,7 @@ def test_appserver
2754
2754
test_default_user = conditional_prop ( 'ml.test-default-user' , 'ml.default-user' )
2755
2755
2756
2756
%Q{
2757
- <http-server import="@ml.app-name">
2757
+ <http-server import="@ml.app-name" xmlns="http://marklogic.com/xdmp/group" >
2758
2758
<http-server-name>@ml.app-name-test</http-server-name>
2759
2759
<port>@ml.test-port</port>
2760
2760
<database name="@ml.test-content-db"/>
@@ -2767,7 +2767,7 @@ def test_appserver
2767
2767
2768
2768
def test_modules_db_xml
2769
2769
%Q{
2770
- <database import="@ml.modules-db">
2770
+ <database import="@ml.modules-db" xmlns="http://marklogic.com/xdmp/database" >
2771
2771
<database-name>@ml.test-modules-db</database-name>
2772
2772
<forests>
2773
2773
<forest-id name="@ml.test-modules-db"/>
@@ -2778,7 +2778,7 @@ def test_modules_db_xml
2778
2778
2779
2779
def test_user_xml
2780
2780
%Q{
2781
- <user>
2781
+ <user xmlns="http://marklogic.com/xdmp/security" >
2782
2782
<user-name>${test-user}</user-name>
2783
2783
<description>A user for the ${app-name} unit tests</description>
2784
2784
<password>${test-user-password}</password>
@@ -2793,7 +2793,7 @@ def test_user_xml
2793
2793
2794
2794
def test_modules_db_assignment
2795
2795
%Q{
2796
- <assignment>
2796
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2797
2797
<forest-name>@ml.test-modules-db</forest-name>
2798
2798
</assignment>
2799
2799
}
@@ -2814,7 +2814,7 @@ def rest_appserver
2814
2814
end
2815
2815
2816
2816
%Q{
2817
- <http-server import="@ml.app-name">
2817
+ <http-server import="@ml.app-name" xmlns="http://marklogic.com/xdmp/group" >
2818
2818
<http-server-name>@ml.app-name-rest</http-server-name>
2819
2819
<port>@ml.rest-port</port>
2820
2820
<database name="@ml.content-db"/>
@@ -2832,7 +2832,7 @@ def rest_modules_db_xml
2832
2832
rest_modules_db = conditional_prop ( 'ml.rest-modules-db' , 'ml.modules-db' )
2833
2833
2834
2834
%Q{
2835
- <database>
2835
+ <database xmlns="http://marklogic.com/xdmp/database" >
2836
2836
<database-name>#{ rest_modules_db } </database-name>
2837
2837
<forests>
2838
2838
<forest-id name="#{ rest_modules_db } "/>
@@ -2845,15 +2845,15 @@ def rest_modules_db_assignment
2845
2845
rest_modules_db = conditional_prop ( 'ml.rest-modules-db' , 'ml.modules-db' )
2846
2846
2847
2847
%Q{
2848
- <assignment>
2848
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2849
2849
<forest-name>#{ rest_modules_db } </forest-name>
2850
2850
</assignment>
2851
2851
}
2852
2852
end
2853
2853
2854
2854
def ssl_certificate_xml
2855
2855
%Q{
2856
- <certificate>
2856
+ <certificate xmlns="http://marklogic.com/xdmp/pki" >
2857
2857
<name>@ml.ssl-certificate-template</name>
2858
2858
<countryName>@ml.ssl-certificate-countryName</countryName>
2859
2859
<stateOrProvinceName>@ml.ssl-certificate-stateOrProvinceName</stateOrProvinceName>
0 commit comments