-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documents are free to define a local prefix for a given namespace so parsing should not hard-code a specific prefix (e.g. "dc" for Dublin Core). This commit records all configured namespaces during the initial parse and uses these namespaces to instantiate the appropriate extensions as they are encountered.
- Loading branch information
1 parent
7f4c387
commit 91c0c03
Showing
6 changed files
with
129 additions
and
74 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
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
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,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dublincore="http://purl.org/dc/elements/1.1/"> | ||
<channel> | ||
<dublincore:contributor>Contributor 1</dublincore:contributor> | ||
<dublincore:contributor>Contributor 2</dublincore:contributor> | ||
<dublincore:coverage>Coverage</dublincore:coverage> | ||
<dublincore:creator>Creator</dublincore:creator> | ||
<dublincore:date>2016-08-27</dublincore:date> | ||
<dublincore:description>Description</dublincore:description> | ||
<dublincore:format>text/plain</dublincore:format> | ||
<dublincore:identifier>Identifier</dublincore:identifier> | ||
<dublincore:language>en-US</dublincore:language> | ||
<dublincore:publisher>Publisher</dublincore:publisher> | ||
<dublincore:relation>Relation</dublincore:relation> | ||
<dublincore:rights>Company</dublincore:rights> | ||
<dublincore:source>Source</dublincore:source> | ||
<dublincore:subject>Subject</dublincore:subject> | ||
<dublincore:title>Title</dublincore:title> | ||
<dublincore:type>Type</dublincore:type> | ||
<item> | ||
<dublincore:contributor>Contributor 1</dublincore:contributor> | ||
<dublincore:contributor>Contributor 2</dublincore:contributor> | ||
<dublincore:coverage>Coverage</dublincore:coverage> | ||
<dublincore:creator>Creator</dublincore:creator> | ||
<dublincore:date>2016-08-27</dublincore:date> | ||
<dublincore:description>Description</dublincore:description> | ||
<dublincore:format>text/plain</dublincore:format> | ||
<dublincore:identifier>Identifier</dublincore:identifier> | ||
<dublincore:language>en-US</dublincore:language> | ||
<dublincore:publisher>Publisher</dublincore:publisher> | ||
<dublincore:relation>Relation</dublincore:relation> | ||
<dublincore:rights>Company</dublincore:rights> | ||
<dublincore:source>Source</dublincore:source> | ||
<dublincore:subject>Subject</dublincore:subject> | ||
<dublincore:title>Title</dublincore:title> | ||
<dublincore:type>Type</dublincore:type> | ||
</item> | ||
</channel> | ||
</rss> |
Oops, something went wrong.