<?xml version="1.0"?>

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:output method = "xml" indent="no" omit-xml-declaration="yes"/>

  <xsl:template match="/">
    <result>
      <xsl:attribute name="foo" namespace="http://some-ns/">bar</xsl:attribute>
      <xsl:attribute name="x:foo" xmlns:x="http://some-ns/">baz</xsl:attribute>
      <xsl:attribute name="y:bar" xmlns:y="http://some-ns/">baz</xsl:attribute>
      <xsl:attribute name="z:yow" xmlns:z="http://some-ns/">baz</xsl:attribute>
      <xsl:attribute name="a:mumble" xmlns:a="http://some-ns/">baz</xsl:attribute>
      <xsl:attribute name="b:zip" xmlns:b="http://some-ns/">baz</xsl:attribute>
      <xsl:attribute name="c:zap" xmlns:c="http://some-ns/">baz</xsl:attribute>
   </result>
 </xsl:template>
    
</xsl:stylesheet>
