Skip to content

Instantly share code, notes, and snippets.

@ebertti
Created August 2, 2012 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebertti/3241461 to your computer and use it in GitHub Desktop.
Save ebertti/3241461 to your computer and use it in GitHub Desktop.
Sample of xml
<!-- just a sample of xml FIXED -->
<brand>
<code type="null"/>
<name>Intel</nome_produto>
<products type="list">
<product> <!-- my fix is here -->
<price type="null"/>
<model>Core 2 Duo</model>
<disponibilidade type="boolean">False</disponibilidade>
</product> <!-- my fix is here -->
</products>
</brand>
<!-- just a sample of xml original with tastypie -->
<object>
<code type="null"/>
<name>Intel</nome_produto>
<products type="list">
<object> <!-- my fix is here -->
<price type="null"/>
<model>Core 2 Duo</model>
<disponibilidade type="boolean">False</disponibilidade>
</object> <!-- my fix is here -->
</products>
</object>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment