Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <core>
  2. <address>
  3. <postalZipCode>90017</postalZipCode>
  4. <updateSource>xxxxxx</updateSource>
  5. <city>LOS ANGELES</city>
  6. <stateProvince>CA</stateProvince>
  7. <type>MAILING</type>
  8. <line1>818 WEST SEVENTH STREET</line1>
  9. </address>
  10. <address>
  11. <postalZipCode>95014</postalZipCode>
  12. <updateSource>xxxxxx</updateSource>
  13. <city>CUPERTINO</city>
  14. <stateProvince>CA</stateProvince>
  15. <type>PRIMARY</type>
  16. <line1>1234 XYZ STREET</line1>
  17. </address>
  18. <memberId>0</memberId>
  19. </core>
  20.  
  21. <xsl:template match="core">
  22. <xsl:if test="memberId['0'] and address/type['MAILING']">
  23. <fo:table-row>
  24. <fo:table-cell><fo:block /></fo:table-cell>
  25. <fo:table-cell xsl:use-attribute-sets="data">
  26. <fo:block>Line 1</fo:block>
  27. </fo:table-cell>
  28. <fo:table-cell xsl:use-attribute-sets="data">
  29. <fo:block><xsl:value-of select="address/line1/text()"/>
  30. </fo:block>
  31. </fo:table-cell>
  32. </fo:table-row>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement