diff options
| author | Horus3 | 2014-02-24 16:42:14 +0100 |
|---|---|---|
| committer | Horus3 | 2014-02-24 16:42:14 +0100 |
| commit | 06f945f27840b53e57795dadbc38e76f7e11ab1c (patch) | |
| tree | 689d5c7f4ffa15460c7e90f47c6a7dd59ce4e8bd /zend/tests/Zend/Gdata/Books | |
| download | random-06f945f27840b53e57795dadbc38e76f7e11ab1c.tar.gz | |
init
Diffstat (limited to 'zend/tests/Zend/Gdata/Books')
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/CollectionEntryTest.php | 48 | ||||
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/CollectionFeedTest.php | 48 | ||||
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/VolumeEntryTest.php | 125 | ||||
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/VolumeFeedTest.php | 108 | ||||
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml | 32 | ||||
| -rw-r--r-- | zend/tests/Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml | 139 |
6 files changed, 500 insertions, 0 deletions
diff --git a/zend/tests/Zend/Gdata/Books/CollectionEntryTest.php b/zend/tests/Zend/Gdata/Books/CollectionEntryTest.php new file mode 100644 index 0000000..d53826a --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/CollectionEntryTest.php @@ -0,0 +1,48 @@ +<?php +/** + * Zend Framework + * + * LICENSE + * + * This source file is subject to the new BSD license that is bundled + * with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://framework.zend.com/license/new-bsd + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@zend.com so we can send you a copy immediately. + * + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id $ + */ + +require_once 'Zend/Gdata/Books.php'; +require_once 'Zend/Gdata/Books/CollectionEntry.php'; + +/** + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @group Zend_Gdata + * @group Zend_Gdata_Books + */ +class Zend_Gdata_Books_CollectionEntryTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() + { + $this->gdata = new Zend_Gdata_Books_CollectionEntry(); + } + + public function testCollectionEntry() + { + $this->assertTrue(true); + } + +} diff --git a/zend/tests/Zend/Gdata/Books/CollectionFeedTest.php b/zend/tests/Zend/Gdata/Books/CollectionFeedTest.php new file mode 100644 index 0000000..b30adee --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/CollectionFeedTest.php @@ -0,0 +1,48 @@ +<?php +/** + * Zend Framework + * + * LICENSE + * + * This source file is subject to the new BSD license that is bundled + * with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://framework.zend.com/license/new-bsd + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@zend.com so we can send you a copy immediately. + * + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id $ + */ + +require_once 'Zend/Gdata/Books.php'; +require_once 'Zend/Gdata/Books/CollectionFeed.php'; + +/** + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @group Zend_Gdata + * @group Zend_Gdata_Books + */ +class Zend_Gdata_Books_CollectionFeedTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() + { + $this->gdata = new Zend_Gdata_Books_CollectionFeed(); + } + + public function testCollectionFeed() + { + $this->assertTrue(true); + } + +} diff --git a/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php b/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php new file mode 100644 index 0000000..8532122 --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/VolumeEntryTest.php @@ -0,0 +1,125 @@ +<?php +/** + * Zend Framework + * + * LICENSE + * + * This source file is subject to the new BSD license that is bundled + * with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://framework.zend.com/license/new-bsd + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@zend.com so we can send you a copy immediately. + * + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id $ + */ + +require_once 'Zend/Gdata/Books/VolumeEntry.php'; +require_once 'Zend/Gdata/Books.php'; + +/** + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @group Zend_Gdata + * @group Zend_Gdata_Books + */ +class Zend_Gdata_Books_VolumeEntryTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() { + $this->entryText = file_get_contents( + 'Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml', + true); + $this->entry = new Zend_Gdata_Books_VolumeEntry(); + } + + private function verifySamplePropertiesAreCorrect ($volumeEntry) { + $this->assertEquals('http://www.google.com/books/feeds/volumes/Mfer_MFwQrkC', + $volumeEntry->id->text); + $this->assertEquals('2008-10-07T15:28:15.000Z', $volumeEntry->updated->text); + $this->assertEquals('http://schemas.google.com/g/2005#kind', $volumeEntry->category[0]->scheme); + $this->assertEquals('http://schemas.google.com/books/2008#volume', $volumeEntry->category[0]->term); + $this->assertEquals('http://bks1.books.google.com/books?id=Mfer_MFwQrkC&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1o90VpMryPI7WKSyIhmAWdC1uDtw&source=gbs_gdata', $volumeEntry->getThumbnailLink()->href); + $this->assertEquals('http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1&source=gbs_gdata', $volumeEntry->getInfoLink()->href); + $this->assertEquals(null, $volumeEntry->getPreviewLink()); + $creators = $volumeEntry->getCreators(); + $this->assertEquals('William Shakespeare', $creators[0]->text); + $titles = $volumeEntry->getTitles(); + $this->assertEquals('Hamlet', $titles[0]->text); + $dates = $volumeEntry->getDates(); + $this->assertEquals('2002-02', $dates[0]->text); + $identifiers = $volumeEntry->getIdentifiers(); + $this->assertEquals('Mfer_MFwQrkC', $identifiers[0]->text); + $this->assertEquals('ISBN:0198320493', $identifiers[1]->text); + $languages = $volumeEntry->getLanguages(); + $this->assertEquals('en', $languages[0]->text); + $formats = $volumeEntry->getFormats(); + $this->assertEquals('178 pages', $formats[0]->text); + $publishers = $volumeEntry->getPublishers(); + $this->assertEquals('Oxford University Press', $publishers[0]->text); + $subjects = $volumeEntry->getSubjects(); + $this->assertEquals('Denmark', $subjects[0]->text); + $this->assertEquals(null, $volumeEntry->getPreviewLink()); + $this->assertEquals('http://www.google.com/books/feeds/users/me/volumes', $volumeEntry->getAnnotationLink()->href); + $this->assertEquals('http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1&source=gbs_gdata', $volumeEntry->getInfoLink()->href); + $this->assertEquals('http://bks1.books.google.com/books?id=Mfer_MFwQrkC&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1o90VpMryPI7WKSyIhmAWdC1uDtw&source=gbs_gdata', $volumeEntry->getThumbnailLink()->href); + $this->assertEquals('Denmark', $subjects[0]->text); + $this->assertEquals('http://schemas.google.com/books/2008#view_partial', $volumeEntry->getViewability()->value); + $this->assertEquals('Mfer_MFwQrkC', $volumeEntry->getVolumeId()); + } + + public function testEmptyEntryShouldHaveNoExtensionElements() { + $this->assertTrue(is_array($this->entry->extensionElements)); + $this->assertEquals(0, count($this->entry->extensionElements)); + } + + public function testEmptyEntryShouldHaveNoExtensionAttributes() { + $this->assertTrue(is_array($this->entry->extensionAttributes)); + $this->assertEquals(0, count($this->entry->extensionAttributes)); + } + + public function testSampleEntryShouldHaveNoExtensionElements() { + $this->entry->transferFromXML($this->entryText); + $this->assertTrue(is_array($this->entry->extensionElements)); + $this->assertEquals(0, count($this->entry->extensionElements)); + } + + public function testSampleEntryShouldHaveNoExtensionAttributes() { + $this->entry->transferFromXML($this->entryText); + $this->assertTrue(is_array($this->entry->extensionAttributes)); + $this->assertEquals(0, count($this->entry->extensionAttributes)); + } + + public function testEmptyVolumeEntryToAndFromStringShouldMatch() { + $entryXml = $this->entry->saveXML(); + $newVolumeEntry = new Zend_Gdata_Books_VolumeEntry(); + $newVolumeEntry->transferFromXML($entryXml); + $newVolumeEntryXml = $newVolumeEntry->saveXML(); + $this->assertEquals($entryXml, $newVolumeEntryXml); + } + + public function testSamplePropertiesAreCorrect () { + $this->entry->transferFromXML($this->entryText); + $this->verifySamplePropertiesAreCorrect($this->entry); + } + + public function testConvertVolumeEntryToAndFromString() { + $this->entry->transferFromXML($this->entryText); + $entryXml = $this->entry->saveXML(); + $newVolumeEntry = new Zend_Gdata_Books_VolumeEntry(); + $newVolumeEntry->transferFromXML($entryXml); + $this->verifySamplePropertiesAreCorrect($newVolumeEntry); + $newVolumeEntryXml = $newVolumeEntry->saveXML(); + $this->assertEquals($entryXml, $newVolumeEntryXml); + } + +} diff --git a/zend/tests/Zend/Gdata/Books/VolumeFeedTest.php b/zend/tests/Zend/Gdata/Books/VolumeFeedTest.php new file mode 100644 index 0000000..423602c --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/VolumeFeedTest.php @@ -0,0 +1,108 @@ +<?php +/** + * Zend Framework + * + * LICENSE + * + * This source file is subject to the new BSD license that is bundled + * with this package in the file LICENSE.txt. + * It is also available through the world-wide-web at this URL: + * http://framework.zend.com/license/new-bsd + * If you did not receive a copy of the license and are unable to + * obtain it through the world-wide-web, please send an email + * to license@zend.com so we can send you a copy immediately. + * + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @version $Id $ + */ + +require_once 'Zend/Gdata/Books/VolumeFeed.php'; +require_once 'Zend/Gdata/Books.php'; + +/** + * @category Zend + * @package Zend_Gdata_Books + * @subpackage UnitTests + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) + * @license http://framework.zend.com/license/new-bsd New BSD License + * @group Zend_Gdata + * @group Zend_Gdata_Books + */ +class Zend_Gdata_Books_VolumeFeedTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() { + $this->feedText = file_get_contents( + 'Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml', + true); + $this->feed = new Zend_Gdata_Books_VolumeFeed(); + } + + private function verifyAllSamplePropertiesAreCorrect ($volumeFeed) { + $this->assertEquals('http://www.google.com/books/feeds/volumes', + $volumeFeed->id->text); + $this->assertEquals('2008-10-07T16:41:52.000Z', $volumeFeed->updated->text); + $this->assertEquals('http://schemas.google.com/g/2005#kind', $volumeFeed->category[0]->scheme); + $this->assertEquals('http://schemas.google.com/books/2008#volume', $volumeFeed->category[0]->term); + $this->assertEquals('text', $volumeFeed->title->type); + $this->assertEquals('Search results for Hamlet', $volumeFeed->title->text);; + $this->assertEquals('self', $volumeFeed->getLink('self')->rel); + $this->assertEquals('application/atom+xml', $volumeFeed->getLink('self')->type); + $this->assertEquals('http://www.google.com/books/feeds/volumes?q=Hamlet&start-index=3&max-results=5', $volumeFeed->getLink('self')->href); + $this->assertEquals('Google Books Search', $volumeFeed->author[0]->name->text); + $this->assertEquals('http://www.google.com', $volumeFeed->author[0]->uri->text); + $this->assertEquals(512, $volumeFeed->totalResults->text); + $this->assertEquals(3, $volumeFeed->startIndex->text); + $this->assertEquals(5, $volumeFeed->itemsPerPage->text); + } + + public function testEmptyEntryShouldHaveNoExtensionElements() { + $this->assertTrue(is_array($this->feed->extensionElements)); + $this->assertEquals(0, count($this->feed->extensionElements)); + } + + public function testEmptyEntryShouldHaveNoExtensionAttributes() { + $this->assertTrue(is_array($this->feed->extensionAttributes)); + $this->assertEquals(0, count($this->feed->extensionAttributes)); + } + + public function testSampleEntryShouldHaveNoExtensionElements() { + $this->feed->transferFromXML($this->feedText); + $this->assertTrue(is_array($this->feed->extensionElements)); + $this->assertEquals(0, count($this->feed->extensionElements)); + } + + public function testSampleEntryShouldHaveNoExtensionAttributes() { + $this->feed->transferFromXML($this->feedText); + $this->assertTrue(is_array($this->feed->extensionAttributes)); + $this->assertEquals(0, count($this->feed->extensionAttributes)); + } + + public function testEmptyVolumeFeedToAndFromStringShouldMatch() { + $entryXml = $this->feed->saveXML(); + $newVolumeFeed = new Zend_Gdata_Books_VolumeFeed(); + $newVolumeFeed->transferFromXML($entryXml); + $newVolumeFeedXml = $newVolumeFeed->saveXML(); + $this->assertEquals($entryXml, $newVolumeFeedXml); + } + + public function testSamplePropertiesAreCorrect () { + $this->feed->transferFromXML($this->feedText); + $this->verifyAllSamplePropertiesAreCorrect($this->feed); + } + + public function testConvertVolumeFeedToAndFromString() { + $this->feed->transferFromXML($this->feedText); + $entryXml = $this->feed->saveXML(); + $newVolumeFeed = new Zend_Gdata_Books_VolumeFeed(); + $newVolumeFeed->transferFromXML($entryXml); + $this->verifyAllSamplePropertiesAreCorrect($newVolumeFeed); + $newVolumeFeedXml = $newVolumeFeed->saveXML(); + $this->assertEquals($entryXml, $newVolumeFeedXml); + } + +} diff --git a/zend/tests/Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml b/zend/tests/Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml new file mode 100644 index 0000000..0b6cd95 --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/_files/VolumeEntryDataSample1.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gbs="http://schemas.google.com/books/2008" xmlns:dc="http://purl.org/dc/terms" xmlns:gd="http://schemas.google.com/g/2005"> + <id>http://www.google.com/books/feeds/volumes/Mfer_MFwQrkC</id> + <updated>2008-10-07T15:28:15.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Hamlet</title> + <link rel="http://schemas.google.com/books/2008/thumbnail" type="image/jpeg" href="http://bks1.books.google.com/books?id=Mfer_MFwQrkC&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1o90VpMryPI7WKSyIhmAWdC1uDtw&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=Mfer_MFwQrkC&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/Mfer_MFwQrkC"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#embeddable"/> + <gd:rating min="1" max="5" average="4.00"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_partial"/> + <gbs:review type="text">Bad review...</gbs:review> + <dc:creator>William Shakespeare</dc:creator> + <dc:creator>Roma Gill</dc:creator> + <dc:date>2002-02</dc:date> + <dc:description>Featuring the images of some of the world's most famous stage and film actors, these additions to the all-new Oxford School Shakespeare introduce--and enthrall--young people to one of the greatest writers of all time. This season brings revised editions of five of the Bard's most famous plays--As You Like It, Othello, Hamlet, Love's Labour Lost and The Taming of the Shrew. Designed specifically for students unfamiliar with Shakespeare's rich literary legacy, these new editions present Shakespeare's sometimes-intimidating Middle English in a way that is easy-to-read and engaging for ages twelve and up. The notes and introductions have been completely revised, allowing unprecedented clarity and accessibility. Featuring new covers and new illustrations--including photos from recent productions of Shakespeare's plays from around the world--Oxford School Shakespeare brings all the pleasure of these literary treasures to life.</dc:description> + <dc:format>178 pages</dc:format> + <dc:identifier>Mfer_MFwQrkC</dc:identifier> + <dc:identifier>ISBN:0198320493</dc:identifier> + <dc:language>en</dc:language> + <dc:publisher>Oxford University Press</dc:publisher> + <dc:subject>Denmark</dc:subject> + <dc:subject>Hamlet (Legendary character)/ Drama</dc:subject> + <dc:subject>Murder victims' families/ Drama</dc:subject> + <dc:subject>Juvenile Nonfiction / Drama</dc:subject> + <dc:subject>Drama / English, Irish, Scottish, Welsh</dc:subject> + <dc:subject>Drama / Shakespeare</dc:subject> + <dc:title>Hamlet</dc:title> +</entry> diff --git a/zend/tests/Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml b/zend/tests/Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml new file mode 100644 index 0000000..5f17aaa --- /dev/null +++ b/zend/tests/Zend/Gdata/Books/_files/VolumeFeedDataSample1.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8"?> +<feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:gbs="http://schemas.google.com/books/2008" xmlns:dc="http://purl.org/dc/terms" xmlns:gd="http://schemas.google.com/g/2005"> + <id>http://www.google.com/books/feeds/volumes</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Search results for Hamlet</title> + <link rel="alternate" type="text/html" href="http://www.google.com"/> + <link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes?q=Hamlet&start-index=3&max-results=5"/> + <link rel="previous" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes?q=Hamlet&start-index=1&max-results=5"/> + <link rel="next" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes?q=Hamlet&start-index=8&max-results=5"/> + <author> + <name>Google Books Search</name> + <uri>http://www.google.com</uri> + </author> + <generator version="beta">Google Book Search data API</generator> + <openSearch:totalResults>512</openSearch:totalResults> + <openSearch:startIndex>3</openSearch:startIndex> + <openSearch:itemsPerPage>5</openSearch:itemsPerPage> + <entry> + <id>http://www.google.com/books/feeds/volumes/aCI_v2-QH04C</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Hamlet</title> + <link rel="http://schemas.google.com/books/2008/thumbnail" type="image/jpeg" href="http://bks5.books.google.com/books?id=aCI_v2-QH04C&printsec=frontcover&img=1&zoom=5&sig=ACfU3U0hzA5WuX9ycsuiMYHnFC_52g2uSQ&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=aCI_v2-QH04C&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/preview" type="text/html" href="http://books.google.com/books?id=aCI_v2-QH04C&printsec=frontcover&dq=Hamlet&ie=ISO-8859-1&sig=ACfU3U2Y_WCBPl33EgHiwDjc-epagCyfUQ&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=aCI_v2-QH04C&dq=Hamlet&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/aCI_v2-QH04C"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#embeddable"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_partial"/> + <dc:creator>William Shakespeare</dc:creator> + <dc:creator>Barbara Mowat</dc:creator> + <dc:creator>Paul Werstine</dc:creator> + <dc:date>2003-07-01</dc:date> + <dc:description>Each edition includes:• Freshly edited text based on the best early printed version of the play• Full explanatory notes conveniently placed on pages facing...</dc:description> + <dc:format>400 pages</dc:format> + <dc:identifier>aCI_v2-QH04C</dc:identifier> + <dc:identifier>ISBN:074347712X</dc:identifier> + <dc:publisher>Washington Square Press</dc:publisher> + <dc:subject>Fiction</dc:subject> + <dc:title>Hamlet</dc:title> + <dc:title>Prince of Denmark</dc:title> + </entry> + <entry> + <id>http://www.google.com/books/feeds/volumes/VBoVAAAAYAAJ</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Hamlet</title> + <link rel="http://schemas.google.com/books/2008/thumbnail" type="image/jpeg" href="http://bks6.books.google.com/books?id=VBoVAAAAYAAJ&printsec=frontcover&img=1&zoom=5&sig=ACfU3U35P7EolTO0Anl72daruQ1LnQaNNQ&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=VBoVAAAAYAAJ&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/preview" type="text/html" href="http://books.google.com/books?id=VBoVAAAAYAAJ&printsec=frontcover&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=VBoVAAAAYAAJ&dq=Hamlet&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/VBoVAAAAYAAJ"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#embeddable"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_all_pages"/> + <dc:creator>William Shakespeare</dc:creator> + <dc:creator>George Pierce Baker</dc:creator> + <dc:date>1913</dc:date> + <dc:format>219 pages</dc:format> + <dc:identifier>VBoVAAAAYAAJ</dc:identifier> + <dc:identifier>HARVARD:32044100887074</dc:identifier> + <dc:subject>Hamlet (Legendary character)</dc:subject> + <dc:title>Hamlet</dc:title> + <dc:title>Prince of Denmark</dc:title> + </entry> + <entry> + <id>http://www.google.com/books/feeds/volumes/S5YvAgAACAAJ</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Hamlet</title> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=S5YvAgAACAAJ&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/preview" type="text/html" href="http://books.google.com/books?id=S5YvAgAACAAJ&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=S5YvAgAACAAJ&dq=Hamlet&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/S5YvAgAACAAJ"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#not_embeddable"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_no_pages"/> + <dc:creator>William Shakespeare</dc:creator> + <dc:date>1995-05-01</dc:date> + <dc:description>Among Shakespeare&#39;s plays, &quot;Hamlet&quot; is considered by many hismasterpiece.</dc:description> + <dc:identifier>S5YvAgAACAAJ</dc:identifier> + <dc:identifier>ISBN:0811468259</dc:identifier> + <dc:publisher>Heinemann/Raintree</dc:publisher> + <dc:subject>Juvenile Fiction</dc:subject> + <dc:title>Hamlet</dc:title> + </entry> + <entry> + <id>http://www.google.com/books/feeds/volumes/Hxk3SFdOJr4C</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Hamlet</title> + <link rel="http://schemas.google.com/books/2008/thumbnail" type="image/jpeg" href="http://bks7.books.google.com/books?id=Hxk3SFdOJr4C&printsec=frontcover&img=1&zoom=5&sig=ACfU3U01kEvsaU9Xwylt1L1LRcm90LN5Uw&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=Hxk3SFdOJr4C&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/preview" type="text/html" href="http://books.google.com/books?id=Hxk3SFdOJr4C&printsec=frontcover&dq=Hamlet&ie=ISO-8859-1&sig=ACfU3U03yzRV9AE_v9QFehA7JEQQN-cMIg&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=Hxk3SFdOJr4C&dq=Hamlet&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/Hxk3SFdOJr4C"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#embeddable"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_partial"/> + <dc:creator>William Shakespeare</dc:creator> + <dc:creator>Alan Durband</dc:creator> + <dc:date>1987-05-01</dc:date> + <dc:description>The significance of the plays is reinforced by sections discussing Shakespeare&#39;s life, works and theatre.</dc:description> + <dc:format>336 pages</dc:format> + <dc:identifier>Hxk3SFdOJr4C</dc:identifier> + <dc:identifier>ISBN:0748703462</dc:identifier> + <dc:publisher>Nelson Thornes Ltd</dc:publisher> + <dc:subject>Drama</dc:subject> + <dc:title>Hamlet</dc:title> + <dc:title>Shakespeare Made Easy</dc:title> + </entry> + <entry> + <id>http://www.google.com/books/feeds/volumes/lZE0AAAAMAAJ</id> + <updated>2008-10-07T16:41:52.000Z</updated> + <category scheme="http://schemas.google.com/g/2005#kind" term="http://schemas.google.com/books/2008#volume"/> + <title type="text">Julius Caesar</title> + <link rel="http://schemas.google.com/books/2008/thumbnail" type="image/jpeg" href="http://bks8.books.google.com/books?id=lZE0AAAAMAAJ&printsec=frontcover&img=1&zoom=5&sig=ACfU3U1wZVOn_xoKk7kHn4apYEK_1GmZDg&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/info" type="text/html" href="http://books.google.com/books?id=lZE0AAAAMAAJ&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/preview" type="text/html" href="http://books.google.com/books?id=lZE0AAAAMAAJ&printsec=frontcover&dq=Hamlet&ie=ISO-8859-1&source=gbs_gdata"/> + <link rel="http://schemas.google.com/books/2008/annotation" type="application/atom+xml" href="http://www.google.com/books/feeds/users/me/volumes"/> + <link rel="alternate" type="text/html" href="http://books.google.com/books?id=lZE0AAAAMAAJ&dq=Hamlet&ie=ISO-8859-1"/> + <link rel="self" type="application/atom+xml" href="http://www.google.com/books/feeds/volumes/lZE0AAAAMAAJ"/> + <gbs:embeddability value="http://schemas.google.com/books/2008#embeddable"/> + <gbs:viewability value="http://schemas.google.com/books/2008#view_all_pages"/> + <dc:creator>William Shakespeare</dc:creator> + <dc:creator>Samuel Thurber</dc:creator> + <dc:creator>Arthur Wilson Verity</dc:creator> + <dc:date>1895</dc:date> + <dc:description>Tan leather binding, gold-embossed, with gilt pattern insert and coat of arms on cover.</dc:description> + <dc:format>123 pages</dc:format> + <dc:identifier>lZE0AAAAMAAJ</dc:identifier> + <dc:identifier>UOM:39015063516275</dc:identifier> + <dc:subject>Conspiracies</dc:subject> + <dc:title>Julius Caesar</dc:title> + </entry> +</feed> |
