1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
<!--
Description: multiple feed contributors
Expect: not bozo and feed['contributors'][0] == {'name': 'Contributor 1', 'email': 'me@example.com', 'href': 'http://example.com/'} and feed['contributors'][1] == {'name': 'Contributor 2', 'email': 'you@example.com', 'href': 'http://two.example.com/'}
-->
<feed version="0.3" xmlns="http://purl.org/atom/ns#">
<contributor>
<name>Contributor 1</name>
<email>me@example.com</email>
<url>http://example.com/</url>
</contributor>
<contributor>
<name>Contributor 2</name>
<email>you@example.com</email>
<url>http://two.example.com/</url>
</contributor>
</feed>
|