Created
August 2, 2012 22:36
-
-
Save ebertti/3241461 to your computer and use it in GitHub Desktop.
Sample of xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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