summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-03-21 23:08:20 +0000
committerCarl Hetherington <cth@carlh.net>2018-03-21 23:08:20 +0000
commit8c852cbececaa94e7efbb0e8508484e073b06c67 (patch)
tree132c7da6266475034144703f108d3e43f73fe3cf /src/dcp.cc
parent03246708c1ee9c5331eac7d058627655939e30d1 (diff)
Put xmlns:dsig on Signer and Signature rather than on the whole
CPL/PKL as a certain large distribution company's checkers don't like having multiple namespaces: "XML root element can contain only one namespace"
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 7b4f9bda..e56547e3 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -321,10 +321,6 @@ DCP::write_pkl (string file, Standard standard, string pkl_uuid, XMLMetadata met
pkl = doc.create_root_node("PackingList", pkl_smpte_ns);
}
- if (signer) {
- pkl->set_namespace_declaration ("http://www.w3.org/2000/09/xmldsig#", "dsig");
- }
-
pkl->add_child("Id")->add_child_text ("urn:uuid:" + pkl_uuid);
pkl->add_child("AnnotationText")->add_child_text (metadata.annotation_text);
pkl->add_child("IssueDate")->add_child_text (metadata.issue_date);