Guest User

Untitled

a guest
Oct 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <etd_ms:thesis xmlns:etd_ms="http://www.ndltd.org/standards/metadata/etdms/1.0/"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.ndltd.org/standards/metadata/etdms/1.0/ http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd">
  5. <etd_ms:title>Aspects of negritude in the works of two Harlem renaissance authors : Claude McKay and Langston Hughes</etd_ms:title>
  6. <etd_ms:creator>Charles, Asselin</etd_ms:creator>
  7. <etd_ms:subject/>
  8. <etd_ms:publisher>Concordia University</etd_ms:publisher>
  9. <etd_ms:contributor role="advisor">Butovsky, M</etd_ms:contributor>
  10. <etd_ms:date>1980</etd_ms:date>
  11. <etd_ms:type>Electronic Thesis or Dissertation</etd_ms:type>
  12. <etd_ms:identifier>TC-QMG-1</etd_ms:identifier>
  13. <etd_ms:format>text</etd_ms:format>
  14. <etd_ms:identifier>https://spectrum.library.concordia.ca/1/1/MK49585.pdf</etd_ms:identifier>
  15. <etd_ms:language>en</etd_ms:language>
  16. <etd_ms:degree>
  17. <etd_ms:name>M.A.</etd_ms:name>
  18. <etd_ms:level>masters</etd_ms:level>
  19. <etd_ms:discipline>Dept. of English</etd_ms:discipline>
  20. <etd_ms:grantor>Concordia University</etd_ms:grantor>
  21. </etd_ms:degree>
  22. </etd_ms:thesis>
  23.  
  24. <?xml version="1.0" encoding="utf-8"?>
  25. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  26.  
  27. <xsl:output indent="yes" method="xml" encoding="utf-8" omit-xml-declaration="no"/>
  28.  
  29. <!-- Stylesheet to remove all namespaces from a document -->
  30. <!-- NOTE: this will lead to attribute name clash, if an element contains
  31. two attributes with same local name but different namespace prefix -->
  32. <!-- Nodes that cannot have a namespace are copied as such -->
  33.  
  34. <!-- template to copy elements -->
  35. <xsl:template match="*">
  36. <xsl:element name="{local-name()}">
  37. <xsl:apply-templates select="@* | node()"/>
  38. </xsl:element>
  39. </xsl:template>
  40.  
  41. <!-- template to copy attributes -->
  42. <xsl:template match="@*">
  43. <xsl:attribute name="{local-name()}">
  44. <xsl:value-of select="."/>
  45. </xsl:attribute>
  46. </xsl:template>
  47.  
  48. <!-- template to copy the rest of the nodes -->
  49. <xsl:template match="comment() | text() | processing-instruction()">
  50. <xsl:copy/>
  51. </xsl:template>
  52.  
  53. </xsl:stylesheet>
  54.  
  55. <?xml version="1.0" encoding="UTF-8"?>
  56. <thesis xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  57. xsi:schemaLocation="http://www.ndltd.org/standards/metadata/etdms/1.0/ http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd">
  58. <title>Aspects of negritude in the works of two Harlem renaissance authors : Claude McKay and Langston Hughes</title>
  59. <creator>Charles, Asselin</creator>
  60. <subject/>
  61. <publisher>Concordia University</publisher>
  62. <contributor role="advisor">Butovsky, M</contributor>
  63. <date>1980</date>
  64. <type>Electronic Thesis or Dissertation</type>
  65. <identifier>TC-QMG-1</identifier>
  66. <format>text</format>
  67. <identifier>https://spectrum.library.concordia.ca/1/1/MK49585.pdf</identifier>
  68. <language>en</language>
  69. <degree>
  70. <name>M.A.</name>
  71. <level>masters</level>
  72. <discipline>Dept. of English</discipline>
  73. <grantor>Concordia University</grantor>
  74. </degree>
  75. </thesis>
  76.  
  77. <thesis xmlns="http://www.ndltd.org/standards/metadata/etdms/1.0/"
  78. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  79. xsi:schemaLocation="http://www.ndltd.org/standards/metadata/etdms/1.0/ http://www.ndltd.org/standards/metadata/etdms/1.0/etdms.xsd">
  80.  
  81. <xsl:element name="{local-name()}">
  82.  
  83. <xsl:element name="{local-name()}" namespace="http://www.ndltd.org/standards/metadata/etdms/1.0/">
Add Comment
Please, Sign In to add comment