Skip to content

Commit 26723fb

Browse files
authored
Merge pull request #178 from OpenDataServices/177-xml-metadata
[#177] Fix broken link in XML metadata
2 parents 40b40c1 + 9e4c0ff commit 26723fb

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

prefix_finder/frontend/views.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,18 @@ def make_xml_codelist(use_branch="master"):
561561
root = ET.Element("codelist")
562562
meta = ET.SubElement(root, "metadata")
563563
ET.SubElement(ET.SubElement(meta, "name"),"narrative").text = "Organization Identifier Lists"
564-
ET.SubElement(ET.SubElement(meta, "description"),"narrative").text = "Organization identifier lists and their code. These can be used as the prefix for an organization identifier. For general guidance about constructing Organization Identifiers, please see http://iatistandard.org/organization-identifiers/ This list was formerly maintained by the IATI Secretariat as the Organization Registration Agency codelist. This version is maintained by the Identify-Org project, of which IATI is a member. New code requests should be made via Identify-org.net"
564+
ET.SubElement(ET.SubElement(meta, "description"),"narrative").text = """
565+
Organization identifier lists and their code. These can be used as the
566+
prefix for an organization identifier. For general guidance about
567+
constructing Organization Identifiers, please see
568+
http://iatistandard.org/202/guidance/how-to-publish/iati-organisation-identifiers/
569+
570+
This list was formerly maintained by the IATI Secretariat as the
571+
Organization Registration Agency codelist. This version is maintained
572+
by the org-id.guide project, of which IATI is a member. New code
573+
requests should be made via
574+
http://docs.org-id.guide/en/latest/contribute/
575+
"""
565576
items = ET.SubElement(root, "codelist-items")
566577

567578
for entry in org_id_dict[use_branch].values():

0 commit comments

Comments
 (0)