-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #397 from OpenDataServices/cove-1366-org-file-orde…
…ring-no-gha-change sort_xml: Handle extensions in the schema xsd correctly when sorting
- Loading branch information
Showing
8 changed files
with
909 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env python | ||
import flattentool.cli | ||
|
||
flattentool.cli.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<iati-organisations version="@generated-datetime"> | ||
<!--XML generated by flatten-tool--> | ||
<iati-organisation default-currency="USD" last-updated-datetime="2022-05-24T07:35:54.240000+00:00" xml:lang="en"> | ||
<organisation-identifier>XE-EXAMPLE-ORG</organisation-identifier> | ||
<name> | ||
<narrative>Example Org</narrative> | ||
</name> | ||
<reporting-org ref="XE-EXAMPLE-ORG" type="40"> | ||
<narrative>Example Org</narrative> | ||
</reporting-org> | ||
<total-budget status="2"> | ||
<period-start iso-date="2016-01-01"/> | ||
<period-end iso-date="2016-12-31"/> | ||
<value currency="USD" value-date="2016-01-01">100000</value> | ||
</total-budget> | ||
<total-budget status="2"> | ||
<period-start iso-date="2017-01-01"/> | ||
<period-end iso-date="2017-12-31"/> | ||
<value currency="USD" value-date="2017-01-01">200000</value> | ||
</total-budget> | ||
<total-budget status="1"> | ||
<period-start iso-date="2018-01-01"/> | ||
<period-end iso-date="2018-12-31"/> | ||
<value currency="USD" value-date="2018-01-01">300000</value> | ||
</total-budget> | ||
<total-budget status="1"> | ||
<period-start iso-date="2019-01-01"/> | ||
<period-end iso-date="2019-12-31"/> | ||
<value currency="USD" value-date="2019-01-01">400000</value> | ||
</total-budget> | ||
<total-budget status="1"> | ||
<period-start iso-date="2020-01-01"/> | ||
<period-end iso-date="2020-12-31"/> | ||
<value currency="USD" value-date="2020-01-01">300000</value> | ||
</total-budget> | ||
<total-budget status="1"> | ||
<period-start iso-date="2021-01-01"/> | ||
<period-end iso-date="2021-12-31"/> | ||
<value currency="USD" value-date="2021-01-01">200000</value> | ||
</total-budget> | ||
<total-expenditure> | ||
<period-start iso-date="2015-01-01"/> | ||
<period-end iso-date="2015-12-31"/> | ||
<value currency="USD" value-date="2015-01-01">100000</value> | ||
</total-expenditure> | ||
<total-expenditure> | ||
<period-start iso-date="2016-01-01"/> | ||
<period-end iso-date="2016-12-31"/> | ||
<value currency="USD" value-date="2016-01-01">100000</value> | ||
</total-expenditure> | ||
<total-expenditure> | ||
<period-start iso-date="2017-01-01"/> | ||
<period-end iso-date="2017-12-31"/> | ||
<value currency="USD" value-date="2017-01-01">100000</value> | ||
</total-expenditure> | ||
<document-link format="application/pdf" url="http://example.org/document.pdf"> | ||
<title> | ||
<narrative xml:lang="en">Example Org document</narrative> | ||
</title> | ||
<category code="B02"/> | ||
<language code="en"/> | ||
<document-date iso-date="2018-01-01"/> | ||
<recipient-country code="SS"/> | ||
</document-link> | ||
</iati-organisation> | ||
</iati-organisations> |
Binary file added
BIN
+14.8 KB
...ool/tests/fixtures/xlsx/IATI CoVE #organisation #broken-docs #template #public #demo.xlsx
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters