@@ -2691,7 +2691,7 @@ def conditional_prop(prop, default_prop)
2691
2691
2692
2692
def triggers_db_xml
2693
2693
%Q{
2694
- <database>
2694
+ <database xmlns="http://marklogic.com/xdmp/database" >
2695
2695
<database-name>@ml.triggers-db</database-name>
2696
2696
<forests>
2697
2697
<forest-id name="@ml.triggers-db"/>
@@ -2702,7 +2702,7 @@ def triggers_db_xml
2702
2702
2703
2703
def triggers_assignment
2704
2704
%Q{
2705
- <assignment>
2705
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2706
2706
<forest-name>@ml.triggers-db</forest-name>
2707
2707
</assignment>
2708
2708
}
@@ -2711,7 +2711,7 @@ def triggers_assignment
2711
2711
def xdbc_server
2712
2712
xdbc_auth_method = conditional_prop ( 'ml.xdbc-authentication-method' , 'ml.authentication-method' )
2713
2713
%Q{
2714
- <xdbc-server>
2714
+ <xdbc-server xmlns="http://marklogic.com/xdmp/group" >
2715
2715
<xdbc-server-name>@ml.app-name-xcc</xdbc-server-name>
2716
2716
<port>@ml.xcc-port</port>
2717
2717
<database name="@ml.content-db"/>
@@ -2724,7 +2724,7 @@ def xdbc_server
2724
2724
def odbc_server
2725
2725
odbc_auth_method = conditional_prop ( 'ml.odbc-authentication-method' , 'ml.authentication-method' )
2726
2726
%Q{
2727
- <odbc-server>
2727
+ <odbc-server xmlns="http://marklogic.com/xdmp/group" >
2728
2728
<odbc-server-name>@ml.app-name-odbc</odbc-server-name>
2729
2729
<port>@ml.odbc-port</port>
2730
2730
<database name="@ml.content-db"/>
@@ -2736,7 +2736,7 @@ def odbc_server
2736
2736
2737
2737
def schemas_db_xml
2738
2738
%Q{
2739
- <database>
2739
+ <database xmlns="http://marklogic.com/xdmp/database" >
2740
2740
<database-name>@ml.schemas-db</database-name>
2741
2741
<forests>
2742
2742
<forest-id name="@ml.schemas-db"/>
@@ -2747,15 +2747,15 @@ def schemas_db_xml
2747
2747
2748
2748
def schemas_assignment
2749
2749
%Q{
2750
- <assignment>
2750
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2751
2751
<forest-name>@ml.schemas-db</forest-name>
2752
2752
</assignment>
2753
2753
}
2754
2754
end
2755
2755
2756
2756
def test_content_db_xml
2757
2757
%Q{
2758
- <database import="@ml.content-db">
2758
+ <database import="@ml.content-db" xmlns="http://marklogic.com/xdmp/database" >
2759
2759
<database-name>@ml.test-content-db</database-name>
2760
2760
<forests>
2761
2761
<forest-id name="@ml.test-content-db"/>
@@ -2766,7 +2766,7 @@ def test_content_db_xml
2766
2766
2767
2767
def test_content_db_assignment
2768
2768
%Q{
2769
- <assignment>
2769
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2770
2770
<forest-name>@ml.test-content-db</forest-name>
2771
2771
</assignment>
2772
2772
}
@@ -2779,7 +2779,7 @@ def test_appserver
2779
2779
test_default_user = conditional_prop ( 'ml.test-default-user' , 'ml.default-user' )
2780
2780
2781
2781
%Q{
2782
- <http-server import="@ml.app-name">
2782
+ <http-server import="@ml.app-name" xmlns="http://marklogic.com/xdmp/group" >
2783
2783
<http-server-name>@ml.app-name-test</http-server-name>
2784
2784
<port>@ml.test-port</port>
2785
2785
<database name="@ml.test-content-db"/>
@@ -2792,7 +2792,7 @@ def test_appserver
2792
2792
2793
2793
def test_modules_db_xml
2794
2794
%Q{
2795
- <database import="@ml.modules-db">
2795
+ <database import="@ml.modules-db" xmlns="http://marklogic.com/xdmp/database" >
2796
2796
<database-name>@ml.test-modules-db</database-name>
2797
2797
<forests>
2798
2798
<forest-id name="@ml.test-modules-db"/>
@@ -2803,7 +2803,7 @@ def test_modules_db_xml
2803
2803
2804
2804
def test_user_xml
2805
2805
%Q{
2806
- <user>
2806
+ <user xmlns="http://marklogic.com/xdmp/security" >
2807
2807
<user-name>${test-user}</user-name>
2808
2808
<description>A user for the ${app-name} unit tests</description>
2809
2809
<password>${test-user-password}</password>
@@ -2818,7 +2818,7 @@ def test_user_xml
2818
2818
2819
2819
def test_modules_db_assignment
2820
2820
%Q{
2821
- <assignment>
2821
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2822
2822
<forest-name>@ml.test-modules-db</forest-name>
2823
2823
</assignment>
2824
2824
}
@@ -2839,7 +2839,7 @@ def rest_appserver
2839
2839
end
2840
2840
2841
2841
%Q{
2842
- <http-server import="@ml.app-name">
2842
+ <http-server import="@ml.app-name" xmlns="http://marklogic.com/xdmp/group" >
2843
2843
<http-server-name>@ml.app-name-rest</http-server-name>
2844
2844
<port>@ml.rest-port</port>
2845
2845
<database name="@ml.content-db"/>
@@ -2857,7 +2857,7 @@ def rest_modules_db_xml
2857
2857
rest_modules_db = conditional_prop ( 'ml.rest-modules-db' , 'ml.modules-db' )
2858
2858
2859
2859
%Q{
2860
- <database>
2860
+ <database xmlns="http://marklogic.com/xdmp/database" >
2861
2861
<database-name>#{ rest_modules_db } </database-name>
2862
2862
<forests>
2863
2863
<forest-id name="#{ rest_modules_db } "/>
@@ -2870,15 +2870,15 @@ def rest_modules_db_assignment
2870
2870
rest_modules_db = conditional_prop ( 'ml.rest-modules-db' , 'ml.modules-db' )
2871
2871
2872
2872
%Q{
2873
- <assignment>
2873
+ <assignment xmlns="http://marklogic.com/xdmp/assignments" >
2874
2874
<forest-name>#{ rest_modules_db } </forest-name>
2875
2875
</assignment>
2876
2876
}
2877
2877
end
2878
2878
2879
2879
def ssl_certificate_xml
2880
2880
%Q{
2881
- <certificate>
2881
+ <certificate xmlns="http://marklogic.com/xdmp/pki" >
2882
2882
<name>@ml.ssl-certificate-template</name>
2883
2883
<countryName>@ml.ssl-certificate-countryName</countryName>
2884
2884
<stateOrProvinceName>@ml.ssl-certificate-stateOrProvinceName</stateOrProvinceName>
0 commit comments