forked from pkclsoft/XML-to-NSDictionary
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Perry
authored and
David Perry
committed
May 7, 2011
1 parent
1aa2163
commit b7e5ad9
Showing
3 changed files
with
114 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ | |
|
||
@interface XMLReaderTests : SenTestCase | ||
{ | ||
@private | ||
|
||
} | ||
|
||
|
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?xml version="1.0"?> | ||
<?xml-stylesheet href="catalog.xsl" type="text/xsl"?> | ||
<!DOCTYPE catalog SYSTEM "catalog.dtd"> | ||
<catalog> | ||
<product description="Cardigan Sweater" product_image="cardigan.jpg"> | ||
<catalog_item gender="Men's"> | ||
<item_number>QWZ5671</item_number> | ||
<price>39.95</price> | ||
<size description="Medium"> | ||
<color_swatch image="red_cardigan.jpg">Red</color_swatch> | ||
<color_swatch image="burgundy_cardigan.jpg">Burgundy</color_swatch> | ||
</size> | ||
<size description="Large"> | ||
<color_swatch image="red_cardigan.jpg">Red</color_swatch> | ||
<color_swatch image="burgundy_cardigan.jpg">Burgundy</color_swatch> | ||
</size> | ||
</catalog_item> | ||
<catalog_item gender="Women's"> | ||
<item_number>RRX9856</item_number> | ||
<price>42.50</price> | ||
<size description="Small"> | ||
<color_swatch image="red_cardigan.jpg">Red</color_swatch> | ||
<color_swatch image="navy_cardigan.jpg">Navy</color_swatch> | ||
<color_swatch image="burgundy_cardigan.jpg">Burgundy</color_swatch> | ||
</size> | ||
<size description="Medium"> | ||
<color_swatch image="red_cardigan.jpg">Red</color_swatch> | ||
<color_swatch image="navy_cardigan.jpg">Navy</color_swatch> | ||
<color_swatch image="burgundy_cardigan.jpg">Burgundy</color_swatch> | ||
<color_swatch image="black_cardigan.jpg">Black</color_swatch> | ||
</size> | ||
<size description="Large"> | ||
<color_swatch image="navy_cardigan.jpg">Navy</color_swatch> | ||
<color_swatch image="black_cardigan.jpg">Black</color_swatch> | ||
</size> | ||
<size description="Extra Large"> | ||
<color_swatch image="burgundy_cardigan.jpg">Burgundy</color_swatch> | ||
<color_swatch image="black_cardigan.jpg">Black</color_swatch> | ||
</size> | ||
</catalog_item> | ||
</product> | ||
</catalog> |