yahoo_site_explorer 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +34 -6
- data/Rakefile +2 -1
- data/VERSION.yml +4 -0
- data/lib/yahoo_site_explorer.rb +77 -2
- data/lib/yahoo_site_explorer/api.rb +25 -5
- data/lib/yahoo_site_explorer/backlinks.rb +40 -7
- data/lib/yahoo_site_explorer/page_data.rb +50 -0
- data/lib/yahoo_site_explorer/result.rb +16 -0
- data/lib/yahoo_site_explorer/results_container.rb +53 -0
- data/test/integrations/yahoo_site_explorer_test.rb +125 -4
- data/test/mocks/inlink_data.rb +543 -0
- data/test/mocks/page_data.rb +542 -0
- data/test/units/inlink_data_test.rb +30 -2
- data/test/units/page_data_test.rb +48 -0
- data/yahoo_site_explorer.gemspec +11 -4
- metadata +10 -3
- data/VERSION +0 -1
| @@ -0,0 +1,542 @@ | |
| 1 | 
            +
            def mock_page_data_successful_response_set_1
         | 
| 2 | 
            +
            <<-RESPONSE
         | 
| 3 | 
            +
            HTTP/1.1 200 OK
         | 
| 4 | 
            +
            Date: Tue, 09 Jun 2009 21:20:14 GMT
         | 
| 5 | 
            +
            P3P: policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
         | 
| 6 | 
            +
            Cache-Control: private
         | 
| 7 | 
            +
            Connection: close
         | 
| 8 | 
            +
            Transfer-Encoding: chunked
         | 
| 9 | 
            +
            Content-Type: text/xml; charset=utf-8
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            <?xml version='1.0' encoding='UTF-8'?>
         | 
| 12 | 
            +
            <ResultSet
         | 
| 13 | 
            +
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         | 
| 14 | 
            +
                xmlns="urn:yahoo:srch"
         | 
| 15 | 
            +
                xsi:schemaLocation="urn:yahoo:srch http://api.search.yahoo.com/SiteExplorerService/V1/PageDataResponse.xsd"
         | 
| 16 | 
            +
                totalResultsAvailable="99"
         | 
| 17 | 
            +
                firstResultPosition="1"
         | 
| 18 | 
            +
                totalResultsReturned="50">
         | 
| 19 | 
            +
                    <Result>
         | 
| 20 | 
            +
                    <Title>Site Explorer - Yahoo! Site Explorer</Title>
         | 
| 21 | 
            +
                    <Url>http://siteexplorer.search.yahoo.com/</Url>
         | 
| 22 | 
            +
                    <ClickUrl>http://siteexplorer.search.yahoo.com/</ClickUrl>
         | 
| 23 | 
            +
                </Result>
         | 
| 24 | 
            +
                <Result>
         | 
| 25 | 
            +
                    <Title>Yahoo! Video Search</Title>
         | 
| 26 | 
            +
                    <Url>http://video.search.yahoo.com/</Url>
         | 
| 27 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/</ClickUrl>
         | 
| 28 | 
            +
                </Result>
         | 
| 29 | 
            +
                <Result>
         | 
| 30 | 
            +
                    <Title>My Web Beta from Yahoo! Search</Title>
         | 
| 31 | 
            +
                    <Url>http://myweb2.search.yahoo.com/</Url>
         | 
| 32 | 
            +
                    <ClickUrl>http://myweb2.search.yahoo.com/</ClickUrl>
         | 
| 33 | 
            +
                </Result>
         | 
| 34 | 
            +
                <Result>
         | 
| 35 | 
            +
                    <Title>Site Explorer - Yahoo! Site Explorer</Title>
         | 
| 36 | 
            +
                    <Url>https://siteexplorer.search.yahoo.com/</Url>
         | 
| 37 | 
            +
                    <ClickUrl>https://siteexplorer.search.yahoo.com/</ClickUrl>
         | 
| 38 | 
            +
                </Result>
         | 
| 39 | 
            +
                <Result>
         | 
| 40 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 41 | 
            +
                    <Url>http://images.search.yahoo.com/</Url>
         | 
| 42 | 
            +
                    <ClickUrl>http://images.search.yahoo.com/</ClickUrl>
         | 
| 43 | 
            +
                </Result>
         | 
| 44 | 
            +
                <Result>
         | 
| 45 | 
            +
                    <Title>Site Explorer - Submit</Title>
         | 
| 46 | 
            +
                    <Url>https://siteexplorer.search.yahoo.com/submit</Url>
         | 
| 47 | 
            +
                    <ClickUrl>https://siteexplorer.search.yahoo.com/submit</ClickUrl>
         | 
| 48 | 
            +
                </Result>
         | 
| 49 | 
            +
                <Result>
         | 
| 50 | 
            +
                    <Title>Yahoo! Search for Creative Commons</Title>
         | 
| 51 | 
            +
                    <Url>http://search.yahoo.com/cc</Url>
         | 
| 52 | 
            +
                    <ClickUrl>http://search.yahoo.com/cc</ClickUrl>
         | 
| 53 | 
            +
                </Result>
         | 
| 54 | 
            +
                <Result>
         | 
| 55 | 
            +
                    <Title>Yahoo! Search - Image Search</Title>
         | 
| 56 | 
            +
                    <Url>http://images.search.yahoo.com/images/view</Url>
         | 
| 57 | 
            +
                    <ClickUrl>http://images.search.yahoo.com/images/view</ClickUrl>
         | 
| 58 | 
            +
                </Result>
         | 
| 59 | 
            +
                <Result>
         | 
| 60 | 
            +
                    <Title>Yahoo! Search - Búsqueda en la Web</Title>
         | 
| 61 | 
            +
                    <Url>http://es.search.yahoo.com/</Url>
         | 
| 62 | 
            +
                    <ClickUrl>http://es.search.yahoo.com/</ClickUrl>
         | 
| 63 | 
            +
                </Result>
         | 
| 64 | 
            +
                <Result>
         | 
| 65 | 
            +
                    <Title>Yahoo! Search</Title>
         | 
| 66 | 
            +
                    <Url>http://search.yahoo.com/</Url>
         | 
| 67 | 
            +
                    <ClickUrl>http://search.yahoo.com/</ClickUrl>
         | 
| 68 | 
            +
                </Result>
         | 
| 69 | 
            +
                <Result>
         | 
| 70 | 
            +
                    <Title>Yahoo! 搜尋</Title>
         | 
| 71 | 
            +
                    <Url>http://hk.search.yahoo.com/</Url>
         | 
| 72 | 
            +
                    <ClickUrl>http://hk.search.yahoo.com/</ClickUrl>
         | 
| 73 | 
            +
                </Result>
         | 
| 74 | 
            +
                <Result>
         | 
| 75 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 76 | 
            +
                    <Url>http://search.yahoo.com/web</Url>
         | 
| 77 | 
            +
                    <ClickUrl>http://search.yahoo.com/web</ClickUrl>
         | 
| 78 | 
            +
                </Result>
         | 
| 79 | 
            +
                <Result>
         | 
| 80 | 
            +
                    <Title>Yahoo! News Search</Title>
         | 
| 81 | 
            +
                    <Url>http://news.search.yahoo.com/</Url>
         | 
| 82 | 
            +
                    <ClickUrl>http://news.search.yahoo.com/</ClickUrl>
         | 
| 83 | 
            +
                </Result>
         | 
| 84 | 
            +
                <Result>
         | 
| 85 | 
            +
                    <Title>Yahoo! Canada Search</Title>
         | 
| 86 | 
            +
                    <Url>http://ca.search.yahoo.com/</Url>
         | 
| 87 | 
            +
                    <ClickUrl>http://ca.search.yahoo.com/</ClickUrl>
         | 
| 88 | 
            +
                </Result>
         | 
| 89 | 
            +
                <Result>
         | 
| 90 | 
            +
                    <Title>Yahoo! More Search Services and Tools</Title>
         | 
| 91 | 
            +
                    <Url>http://tools.search.yahoo.com/more/</Url>
         | 
| 92 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/more/</ClickUrl>
         | 
| 93 | 
            +
                </Result>
         | 
| 94 | 
            +
                <Result>
         | 
| 95 | 
            +
                    <Title>Advanced News Search</Title>
         | 
| 96 | 
            +
                    <Url>http://news.search.yahoo.com/news/advanced</Url>
         | 
| 97 | 
            +
                    <ClickUrl>http://news.search.yahoo.com/news/advanced</ClickUrl>
         | 
| 98 | 
            +
                </Result>
         | 
| 99 | 
            +
                <Result>
         | 
| 100 | 
            +
                    <Title>Media RSS</Title>
         | 
| 101 | 
            +
                    <Url>http://video.search.yahoo.com/mrss</Url>
         | 
| 102 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/mrss</ClickUrl>
         | 
| 103 | 
            +
                </Result>
         | 
| 104 | 
            +
                <Result>
         | 
| 105 | 
            +
                    <Title>Yahoo! Search - Búsqueda Web</Title>
         | 
| 106 | 
            +
                    <Url>http://mx.search.yahoo.com/</Url>
         | 
| 107 | 
            +
                    <ClickUrl>http://mx.search.yahoo.com/</ClickUrl>
         | 
| 108 | 
            +
                </Result>
         | 
| 109 | 
            +
                <Result>
         | 
| 110 | 
            +
                    <Title>Yahoo! Search - Búsqueda Web</Title>
         | 
| 111 | 
            +
                    <Url>http://ar.search.yahoo.com/</Url>
         | 
| 112 | 
            +
                    <ClickUrl>http://ar.search.yahoo.com/</ClickUrl>
         | 
| 113 | 
            +
                </Result>
         | 
| 114 | 
            +
                <Result>
         | 
| 115 | 
            +
                    <Title>Yahoo! Search - Get health tips, look up tricky words, and more.</Title>
         | 
| 116 | 
            +
                    <Url>http://tools.search.yahoo.com/shortcuts/</Url>
         | 
| 117 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/shortcuts/</ClickUrl>
         | 
| 118 | 
            +
                </Result>
         | 
| 119 | 
            +
                <Result>
         | 
| 120 | 
            +
                    <Title>Yahoo!: Submit Your Site</Title>
         | 
| 121 | 
            +
                    <Url>http://search.yahoo.com/info/submit.html</Url>
         | 
| 122 | 
            +
                    <ClickUrl>http://search.yahoo.com/info/submit.html</ClickUrl>
         | 
| 123 | 
            +
                </Result>
         | 
| 124 | 
            +
                <Result>
         | 
| 125 | 
            +
                    <Title>Site Explorer - Submit</Title>
         | 
| 126 | 
            +
                    <Url>http://siteexplorer.search.yahoo.com/submit</Url>
         | 
| 127 | 
            +
                    <ClickUrl>http://siteexplorer.search.yahoo.com/submit</ClickUrl>
         | 
| 128 | 
            +
                </Result>
         | 
| 129 | 
            +
                <Result>
         | 
| 130 | 
            +
                    <Title>Y!Q Search</Title>
         | 
| 131 | 
            +
                    <Url>http://yq.search.yahoo.com/</Url>
         | 
| 132 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/</ClickUrl>
         | 
| 133 | 
            +
                </Result>
         | 
| 134 | 
            +
                <Result>
         | 
| 135 | 
            +
                    <Title>Yahoo! Search - Research products before you buy them. Save money, too.</Title>
         | 
| 136 | 
            +
                    <Url>http://tools.search.yahoo.com/newsearch/category.php?category=shopping</Url>
         | 
| 137 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/newsearch/category.php?category=shopping</ClickUrl>
         | 
| 138 | 
            +
                </Result>
         | 
| 139 | 
            +
                <Result>
         | 
| 140 | 
            +
                    <Title>Yahoo! Search - Búsqueda Web</Title>
         | 
| 141 | 
            +
                    <Url>http://espanol.search.yahoo.com/</Url>
         | 
| 142 | 
            +
                    <ClickUrl>http://espanol.search.yahoo.com/</ClickUrl>
         | 
| 143 | 
            +
                </Result>
         | 
| 144 | 
            +
                <Result>
         | 
| 145 | 
            +
                    <Title>Yahoo! 2005 Top Searches</Title>
         | 
| 146 | 
            +
                    <Url>http://tools.search.yahoo.com/top2005/</Url>
         | 
| 147 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/top2005/</ClickUrl>
         | 
| 148 | 
            +
                </Result>
         | 
| 149 | 
            +
                <Result>
         | 
| 150 | 
            +
                    <Title>Yahoo! Advanced Web Search</Title>
         | 
| 151 | 
            +
                    <Url>http://search.yahoo.com/web/advanced</Url>
         | 
| 152 | 
            +
                    <ClickUrl>http://search.yahoo.com/web/advanced</ClickUrl>
         | 
| 153 | 
            +
                </Result>
         | 
| 154 | 
            +
                <Result>
         | 
| 155 | 
            +
                    <Title>Yahoo! 搜尋</Title>
         | 
| 156 | 
            +
                    <Url>http://hk.search.yahoo.com/images/view</Url>
         | 
| 157 | 
            +
                    <ClickUrl>http://hk.search.yahoo.com/images/view</ClickUrl>
         | 
| 158 | 
            +
                </Result>
         | 
| 159 | 
            +
                <Result>
         | 
| 160 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 161 | 
            +
                    <Url>http://sg.search.yahoo.com/</Url>
         | 
| 162 | 
            +
                    <ClickUrl>http://sg.search.yahoo.com/</ClickUrl>
         | 
| 163 | 
            +
                </Result>
         | 
| 164 | 
            +
                <Result>
         | 
| 165 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 166 | 
            +
                    <Url>http://new.search.yahoo.com/</Url>
         | 
| 167 | 
            +
                    <ClickUrl>http://new.search.yahoo.com/</ClickUrl>
         | 
| 168 | 
            +
                </Result>
         | 
| 169 | 
            +
                <Result>
         | 
| 170 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 171 | 
            +
                    <Url>http://ca.search.yahoo.com/images/view</Url>
         | 
| 172 | 
            +
                    <ClickUrl>http://ca.search.yahoo.com/images/view</ClickUrl>
         | 
| 173 | 
            +
                </Result>
         | 
| 174 | 
            +
                <Result>
         | 
| 175 | 
            +
                    <Title>Yahoo! Search Gallery</Title>
         | 
| 176 | 
            +
                    <Url>http://gallery.search.yahoo.com/</Url>
         | 
| 177 | 
            +
                    <ClickUrl>http://gallery.search.yahoo.com/</ClickUrl>
         | 
| 178 | 
            +
                </Result>
         | 
| 179 | 
            +
                <Result>
         | 
| 180 | 
            +
                    <Title>Yahoo! Search para imágenes</Title>
         | 
| 181 | 
            +
                    <Url>http://mx.search.yahoo.com/images/view</Url>
         | 
| 182 | 
            +
                    <ClickUrl>http://mx.search.yahoo.com/images/view</ClickUrl>
         | 
| 183 | 
            +
                </Result>
         | 
| 184 | 
            +
                <Result>
         | 
| 185 | 
            +
                    <Title>Y!Q Beta</Title>
         | 
| 186 | 
            +
                    <Url>http://yq.search.yahoo.com/splash/start.html</Url>
         | 
| 187 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/splash/start.html</ClickUrl>
         | 
| 188 | 
            +
                </Result>
         | 
| 189 | 
            +
                <Result>
         | 
| 190 | 
            +
                    <Title>api.<b>search</b>.<b>yahoo.com</b>/webservices/register_application</Title>
         | 
| 191 | 
            +
                    <Url>http://api.search.yahoo.com/webservices/register_application</Url>
         | 
| 192 | 
            +
                    <ClickUrl>http://api.search.yahoo.com/webservices/register_application</ClickUrl>
         | 
| 193 | 
            +
                </Result>
         | 
| 194 | 
            +
                <Result>
         | 
| 195 | 
            +
                    <Title>Yahoo! Babel Fish - Text Translation and Web Page Translation</Title>
         | 
| 196 | 
            +
                    <Url>http://tools.search.yahoo.com/language</Url>
         | 
| 197 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/language</ClickUrl>
         | 
| 198 | 
            +
                </Result>
         | 
| 199 | 
            +
                <Result>
         | 
| 200 | 
            +
                    <Title>For Yahoo! Searchers</Title>
         | 
| 201 | 
            +
                    <Url>http://tools.search.yahoo.com/about/forsearchers.html</Url>
         | 
| 202 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/about/forsearchers.html</ClickUrl>
         | 
| 203 | 
            +
                </Result>
         | 
| 204 | 
            +
                <Result>
         | 
| 205 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 206 | 
            +
                    <Url>http://us.yhs.search.yahoo.com/</Url>
         | 
| 207 | 
            +
                    <ClickUrl>http://us.yhs.search.yahoo.com/</ClickUrl>
         | 
| 208 | 
            +
                </Result>
         | 
| 209 | 
            +
                <Result>
         | 
| 210 | 
            +
                    <Title>Yahoo! Toolbar - Never miss a new email with Yahoo! Toolbar.</Title>
         | 
| 211 | 
            +
                    <Url>http://tools.search.yahoo.com/toolbar/features/mail/</Url>
         | 
| 212 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/toolbar/features/mail/</ClickUrl>
         | 
| 213 | 
            +
                </Result>
         | 
| 214 | 
            +
                <Result>
         | 
| 215 | 
            +
                    <Title>yq.search.yahoo.com</Title>
         | 
| 216 | 
            +
                    <Url>http://yq.search.yahoo.com/yq/search</Url>
         | 
| 217 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/yq/search</ClickUrl>
         | 
| 218 | 
            +
                </Result>
         | 
| 219 | 
            +
                <Result>
         | 
| 220 | 
            +
                    <Title>...search.yahoo.com/video<wbr>/play</Title>
         | 
| 221 | 
            +
                    <Url>http://video.search.yahoo.com/video/play</Url>
         | 
| 222 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/video/play</ClickUrl>
         | 
| 223 | 
            +
                </Result>
         | 
| 224 | 
            +
                <Result>
         | 
| 225 | 
            +
                    <Title>search.yahoo.com/mrss/submit</Title>
         | 
| 226 | 
            +
                    <Url>http://video.search.yahoo.com/mrss/submit</Url>
         | 
| 227 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/mrss/submit</ClickUrl>
         | 
| 228 | 
            +
                </Result>
         | 
| 229 | 
            +
                <Result>
         | 
| 230 | 
            +
                    <Title>Yahoo! Music</Title>
         | 
| 231 | 
            +
                    <Url>http://audio.search.yahoo.com/audio</Url>
         | 
| 232 | 
            +
                    <ClickUrl>http://audio.search.yahoo.com/audio</ClickUrl>
         | 
| 233 | 
            +
                </Result>
         | 
| 234 | 
            +
                <Result>
         | 
| 235 | 
            +
                    <Title>Yahoo! Advanced Web Search</Title>
         | 
| 236 | 
            +
                    <Url>http://search.yahoo.com/web/advanced?ei=UTF-8</Url>
         | 
| 237 | 
            +
                    <ClickUrl>http://search.yahoo.com/web/advanced?ei=UTF-8</ClickUrl>
         | 
| 238 | 
            +
                </Result>
         | 
| 239 | 
            +
                <Result>
         | 
| 240 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 241 | 
            +
                    <Url>http://ar.search.yahoo.com/images/view</Url>
         | 
| 242 | 
            +
                    <ClickUrl>http://ar.search.yahoo.com/images/view</ClickUrl>
         | 
| 243 | 
            +
                </Result>
         | 
| 244 | 
            +
                <Result>
         | 
| 245 | 
            +
                    <Title>Site Explorer - Search Results</Title>
         | 
| 246 | 
            +
                    <Url>http://siteexplorer.search.yahoo.com/advsearch</Url>
         | 
| 247 | 
            +
                    <ClickUrl>http://siteexplorer.search.yahoo.com/advsearch</ClickUrl>
         | 
| 248 | 
            +
                </Result>
         | 
| 249 | 
            +
                <Result>
         | 
| 250 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 251 | 
            +
                    <Url>http://us.search.yahoo.com/</Url>
         | 
| 252 | 
            +
                    <ClickUrl>http://us.search.yahoo.com/</ClickUrl>
         | 
| 253 | 
            +
                </Result>
         | 
| 254 | 
            +
                <Result>
         | 
| 255 | 
            +
                    <Title>Anmelden bei Yahoo!</Title>
         | 
| 256 | 
            +
                    <Url>http://de.myweb2.search.yahoo.com/</Url>
         | 
| 257 | 
            +
                    <ClickUrl>http://de.myweb2.search.yahoo.com/</ClickUrl>
         | 
| 258 | 
            +
                </Result>
         | 
| 259 | 
            +
                <Result>
         | 
| 260 | 
            +
                    <Title>Yahoo! Search opens up</Title>
         | 
| 261 | 
            +
                    <Url>http://tools.search.yahoo.com/newsearch/open.html</Url>
         | 
| 262 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/newsearch/open.html</ClickUrl>
         | 
| 263 | 
            +
                </Result>
         | 
| 264 | 
            +
                <Result>
         | 
| 265 | 
            +
                    <Title>Yahoo! SearchScan</Title>
         | 
| 266 | 
            +
                    <Url>http://tools.search.yahoo.com/newsearch/searchscan</Url>
         | 
| 267 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/newsearch/searchscan</ClickUrl>
         | 
| 268 | 
            +
                </Result>
         | 
| 269 | 
            +
            </ResultSet>
         | 
| 270 | 
            +
            <!-- fe02.sitex.search.ac2.yahoo.com uncompressed/chunked Tue Jun  9 14:20:14 PDT 2009 -->
         | 
| 271 | 
            +
            <!-- ws05.search.re2.yahoo.com uncompressed/chunked Tue Jun  9 14:20:14 PDT 2009 -->
         | 
| 272 | 
            +
            RESPONSE
         | 
| 273 | 
            +
            end
         | 
| 274 | 
            +
             | 
| 275 | 
            +
            def mock_page_data_successful_response_set_2
         | 
| 276 | 
            +
            <<-RESPONSE
         | 
| 277 | 
            +
            HTTP/1.1 200 OK
         | 
| 278 | 
            +
            Date: Tue, 09 Jun 2009 21:21:40 GMT
         | 
| 279 | 
            +
            P3P: policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV"
         | 
| 280 | 
            +
            Cache-Control: private
         | 
| 281 | 
            +
            Connection: close
         | 
| 282 | 
            +
            Transfer-Encoding: chunked
         | 
| 283 | 
            +
            Content-Type: text/xml; charset=utf-8
         | 
| 284 | 
            +
             | 
| 285 | 
            +
            <?xml version='1.0' encoding='UTF-8'?>
         | 
| 286 | 
            +
            <ResultSet
         | 
| 287 | 
            +
                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         | 
| 288 | 
            +
                xmlns="urn:yahoo:srch"
         | 
| 289 | 
            +
                xsi:schemaLocation="urn:yahoo:srch http://api.search.yahoo.com/SiteExplorerService/V1/PageDataResponse.xsd"
         | 
| 290 | 
            +
                totalResultsAvailable="99"
         | 
| 291 | 
            +
                firstResultPosition="51"
         | 
| 292 | 
            +
                totalResultsReturned="49">
         | 
| 293 | 
            +
                    <Result>
         | 
| 294 | 
            +
                    <Title>Media RSS</Title>
         | 
| 295 | 
            +
                    <Url>http://video.search.yahoo.com/mrss/mrss</Url>
         | 
| 296 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/mrss/mrss</ClickUrl>
         | 
| 297 | 
            +
                </Result>
         | 
| 298 | 
            +
                <Result>
         | 
| 299 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 300 | 
            +
                    <Url>http://sg.search.yahoo.com/images/view</Url>
         | 
| 301 | 
            +
                    <ClickUrl>http://sg.search.yahoo.com/images/view</ClickUrl>
         | 
| 302 | 
            +
                </Result>
         | 
| 303 | 
            +
                <Result>
         | 
| 304 | 
            +
                    <Title>Developer Tool</Title>
         | 
| 305 | 
            +
                    <Url>http://developer.search.yahoo.com/</Url>
         | 
| 306 | 
            +
                    <ClickUrl>http://developer.search.yahoo.com/</ClickUrl>
         | 
| 307 | 
            +
                </Result>
         | 
| 308 | 
            +
                <Result>
         | 
| 309 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 310 | 
            +
                    <Url>http://uk.search.yahoo.com/images</Url>
         | 
| 311 | 
            +
                    <ClickUrl>http://uk.search.yahoo.com/images</ClickUrl>
         | 
| 312 | 
            +
                </Result>
         | 
| 313 | 
            +
                <Result>
         | 
| 314 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 315 | 
            +
                    <Url>http://malaysia.search.yahoo.com/</Url>
         | 
| 316 | 
            +
                    <ClickUrl>http://malaysia.search.yahoo.com/</ClickUrl>
         | 
| 317 | 
            +
                </Result>
         | 
| 318 | 
            +
                <Result>
         | 
| 319 | 
            +
                    <Title>Y!Q Beta</Title>
         | 
| 320 | 
            +
                    <Url>http://yq.search.yahoo.com/publisher/index.html</Url>
         | 
| 321 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/publisher/index.html</ClickUrl>
         | 
| 322 | 
            +
                </Result>
         | 
| 323 | 
            +
                <Result>
         | 
| 324 | 
            +
                    <Title>Yahoo! Search - Get health tips, look up tricky words, and more.</Title>
         | 
| 325 | 
            +
                    <Url>http://tools.search.yahoo.com/shortcuts/?fr=oni_on_mail&</Url>
         | 
| 326 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/shortcuts/?fr=oni_on_mail&</ClickUrl>
         | 
| 327 | 
            +
                </Result>
         | 
| 328 | 
            +
                <Result>
         | 
| 329 | 
            +
                    <Title>Yahoo! Search Preferences</Title>
         | 
| 330 | 
            +
                    <Url>http://search.yahoo.com/preferences/preferences</Url>
         | 
| 331 | 
            +
                    <ClickUrl>http://search.yahoo.com/preferences/preferences</ClickUrl>
         | 
| 332 | 
            +
                </Result>
         | 
| 333 | 
            +
                <Result>
         | 
| 334 | 
            +
                    <Title>Yahoo! Recherche</Title>
         | 
| 335 | 
            +
                    <Url>http://qc.search.yahoo.com/</Url>
         | 
| 336 | 
            +
                    <ClickUrl>http://qc.search.yahoo.com/</ClickUrl>
         | 
| 337 | 
            +
                </Result>
         | 
| 338 | 
            +
                <Result>
         | 
| 339 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 340 | 
            +
                    <Url>http://ph.search.yahoo.com/</Url>
         | 
| 341 | 
            +
                    <ClickUrl>http://ph.search.yahoo.com/</ClickUrl>
         | 
| 342 | 
            +
                </Result>
         | 
| 343 | 
            +
                <Result>
         | 
| 344 | 
            +
                    <Title>Yahoo! Search Assist</Title>
         | 
| 345 | 
            +
                    <Url>http://tools.search.yahoo.com/newsearch/searchassist</Url>
         | 
| 346 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/newsearch/searchassist</ClickUrl>
         | 
| 347 | 
            +
                </Result>
         | 
| 348 | 
            +
                <Result>
         | 
| 349 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 350 | 
            +
                    <Url>http://au.search.yahoo.com/</Url>
         | 
| 351 | 
            +
                    <ClickUrl>http://au.search.yahoo.com/</ClickUrl>
         | 
| 352 | 
            +
                </Result>
         | 
| 353 | 
            +
                <Result>
         | 
| 354 | 
            +
                    <Title>Yahoo! Search images</Title>
         | 
| 355 | 
            +
                    <Url>http://fr.images.search.yahoo.com/</Url>
         | 
| 356 | 
            +
                    <ClickUrl>http://fr.images.search.yahoo.com/</ClickUrl>
         | 
| 357 | 
            +
                </Result>
         | 
| 358 | 
            +
                <Result>
         | 
| 359 | 
            +
                    <Title>Yahoo! Search images</Title>
         | 
| 360 | 
            +
                    <Url>http://fr.images.search.yahoo.com/images/view</Url>
         | 
| 361 | 
            +
                    <ClickUrl>http://fr.images.search.yahoo.com/images/view</ClickUrl>
         | 
| 362 | 
            +
                </Result>
         | 
| 363 | 
            +
                <Result>
         | 
| 364 | 
            +
                    <Title>Yahoo! Search images</Title>
         | 
| 365 | 
            +
                    <Url>http://fr.images.search.yahoo.com/images/view_fr</Url>
         | 
| 366 | 
            +
                    <ClickUrl>http://fr.images.search.yahoo.com/images/view_fr</ClickUrl>
         | 
| 367 | 
            +
                </Result>
         | 
| 368 | 
            +
                <Result>
         | 
| 369 | 
            +
                    <Title>Y!Q Beta For Publishers</Title>
         | 
| 370 | 
            +
                    <Url>http://yq.search.yahoo.com/splash/embed.html</Url>
         | 
| 371 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/splash/embed.html</ClickUrl>
         | 
| 372 | 
            +
                </Result>
         | 
| 373 | 
            +
                <Result>
         | 
| 374 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 375 | 
            +
                    <Url>http://asia.search.yahoo.com/</Url>
         | 
| 376 | 
            +
                    <ClickUrl>http://asia.search.yahoo.com/</ClickUrl>
         | 
| 377 | 
            +
                </Result>
         | 
| 378 | 
            +
                <Result>
         | 
| 379 | 
            +
                    <Title>Yahoo! Open Shortcuts - Learn More</Title>
         | 
| 380 | 
            +
                    <Url>http://search.yahoo.com/osc/help</Url>
         | 
| 381 | 
            +
                    <ClickUrl>http://search.yahoo.com/osc/help</ClickUrl>
         | 
| 382 | 
            +
                </Result>
         | 
| 383 | 
            +
                <Result>
         | 
| 384 | 
            +
                    <Title>Top Yahoo! Searches 2004</Title>
         | 
| 385 | 
            +
                    <Url>http://tools.search.yahoo.com/top2004/</Url>
         | 
| 386 | 
            +
                    <ClickUrl>http://tools.search.yahoo.com/top2004/</ClickUrl>
         | 
| 387 | 
            +
                </Result>
         | 
| 388 | 
            +
                <Result>
         | 
| 389 | 
            +
                    <Title>Yahoo! Search Imagens</Title>
         | 
| 390 | 
            +
                    <Url>http://cade.images.search.yahoo.com/images/view</Url>
         | 
| 391 | 
            +
                    <ClickUrl>http://cade.images.search.yahoo.com/images/view</ClickUrl>
         | 
| 392 | 
            +
                </Result>
         | 
| 393 | 
            +
                <Result>
         | 
| 394 | 
            +
                    <Title>Y! Search</Title>
         | 
| 395 | 
            +
                    <Url>http://search.yahoo.com/i</Url>
         | 
| 396 | 
            +
                    <ClickUrl>http://search.yahoo.com/i</ClickUrl>
         | 
| 397 | 
            +
                </Result>
         | 
| 398 | 
            +
                <Result>
         | 
| 399 | 
            +
                    <Title>Yahoo! Advanced Directory Search</Title>
         | 
| 400 | 
            +
                    <Url>http://search.yahoo.com/dir/advanced</Url>
         | 
| 401 | 
            +
                    <ClickUrl>http://search.yahoo.com/dir/advanced</ClickUrl>
         | 
| 402 | 
            +
                </Result>
         | 
| 403 | 
            +
                <Result>
         | 
| 404 | 
            +
                    <Title>Yahoo! Search - Pencarian Web</Title>
         | 
| 405 | 
            +
                    <Url>http://id.search.yahoo.com/</Url>
         | 
| 406 | 
            +
                    <ClickUrl>http://id.search.yahoo.com/</ClickUrl>
         | 
| 407 | 
            +
                </Result>
         | 
| 408 | 
            +
                <Result>
         | 
| 409 | 
            +
                    <Title>Yahoo! Search para imágenes</Title>
         | 
| 410 | 
            +
                    <Url>http://mx.images.search.yahoo.com/</Url>
         | 
| 411 | 
            +
                    <ClickUrl>http://mx.images.search.yahoo.com/</ClickUrl>
         | 
| 412 | 
            +
                </Result>
         | 
| 413 | 
            +
                <Result>
         | 
| 414 | 
            +
                    <Title>Yahoo! Search - Open Shortcuts</Title>
         | 
| 415 | 
            +
                    <Url>http://shortcuts.search.yahoo.com/</Url>
         | 
| 416 | 
            +
                    <ClickUrl>http://shortcuts.search.yahoo.com/</ClickUrl>
         | 
| 417 | 
            +
                </Result>
         | 
| 418 | 
            +
                <Result>
         | 
| 419 | 
            +
                    <Title>advanced search</Title>
         | 
| 420 | 
            +
                    <Url>http://video.search.yahoo.com/video/advanced</Url>
         | 
| 421 | 
            +
                    <ClickUrl>http://video.search.yahoo.com/video/advanced</ClickUrl>
         | 
| 422 | 
            +
                </Result>
         | 
| 423 | 
            +
                <Result>
         | 
| 424 | 
            +
                    <Title>Yahoo! Search à ̧?à ̧£à ̧°à¹?à ̧?à ̧"à¹?à ̧?à ̧¢</Title>
         | 
| 425 | 
            +
                    <Url>http://th.search.yahoo.com/</Url>
         | 
| 426 | 
            +
                    <ClickUrl>http://th.search.yahoo.com/</ClickUrl>
         | 
| 427 | 
            +
                </Result>
         | 
| 428 | 
            +
                <Result>
         | 
| 429 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 430 | 
            +
                    <Url>http://uk.images.search.yahoo.com/</Url>
         | 
| 431 | 
            +
                    <ClickUrl>http://uk.images.search.yahoo.com/</ClickUrl>
         | 
| 432 | 
            +
                </Result>
         | 
| 433 | 
            +
                <Result>
         | 
| 434 | 
            +
                    <Title>Site Explorer - badge</Title>
         | 
| 435 | 
            +
                    <Url>http://siteexplorer.search.yahoo.com/badge</Url>
         | 
| 436 | 
            +
                    <ClickUrl>http://siteexplorer.search.yahoo.com/badge</ClickUrl>
         | 
| 437 | 
            +
                </Result>
         | 
| 438 | 
            +
                <Result>
         | 
| 439 | 
            +
                    <Title>Y!Q Beta For Publishers</Title>
         | 
| 440 | 
            +
                    <Url>http://yq.search.yahoo.com/publisher/embed.html</Url>
         | 
| 441 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/publisher/embed.html</ClickUrl>
         | 
| 442 | 
            +
                </Result>
         | 
| 443 | 
            +
                <Result>
         | 
| 444 | 
            +
                    <Title>Yahoo! Search - Búsqueda Web</Title>
         | 
| 445 | 
            +
                    <Url>http://mx.search.yahoo.com/video/view</Url>
         | 
| 446 | 
            +
                    <ClickUrl>http://mx.search.yahoo.com/video/view</ClickUrl>
         | 
| 447 | 
            +
                </Result>
         | 
| 448 | 
            +
                <Result>
         | 
| 449 | 
            +
                    <Title>Created with Camtasia Studio 5</Title>
         | 
| 450 | 
            +
                    <Url>http://fe.shortcuts.search.yahoo.com/wordpress/tutorial.html</Url>
         | 
| 451 | 
            +
                    <ClickUrl>http://fe.shortcuts.search.yahoo.com/wordpress/tutorial.html</ClickUrl>
         | 
| 452 | 
            +
                </Result>
         | 
| 453 | 
            +
                <Result>
         | 
| 454 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 455 | 
            +
                    <Url>http://au.images.search.yahoo.com/images/view</Url>
         | 
| 456 | 
            +
                    <ClickUrl>http://au.images.search.yahoo.com/images/view</ClickUrl>
         | 
| 457 | 
            +
                </Result>
         | 
| 458 | 
            +
                <Result>
         | 
| 459 | 
            +
                    <Title>Yahoo! Búsqueda de imágenes</Title>
         | 
| 460 | 
            +
                    <Url>http://es.images.search.yahoo.com/</Url>
         | 
| 461 | 
            +
                    <ClickUrl>http://es.images.search.yahoo.com/</ClickUrl>
         | 
| 462 | 
            +
                </Result>
         | 
| 463 | 
            +
                <Result>
         | 
| 464 | 
            +
                    <Title>ca.<b>search</b>.<b>yahoo.com</b>/video/view</Title>
         | 
| 465 | 
            +
                    <Url>http://ca.search.yahoo.com/video/view</Url>
         | 
| 466 | 
            +
                    <ClickUrl>http://ca.search.yahoo.com/video/view</ClickUrl>
         | 
| 467 | 
            +
                </Result>
         | 
| 468 | 
            +
                <Result>
         | 
| 469 | 
            +
                    <Title>Site Explorer - badge</Title>
         | 
| 470 | 
            +
                    <Url>https://siteexplorer.search.yahoo.com/badge</Url>
         | 
| 471 | 
            +
                    <ClickUrl>https://siteexplorer.search.yahoo.com/badge</ClickUrl>
         | 
| 472 | 
            +
                </Result>
         | 
| 473 | 
            +
                <Result>
         | 
| 474 | 
            +
                    <Title>Yahoo! Search Preferences</Title>
         | 
| 475 | 
            +
                    <Url>http://search.yahoo.com/preferences/preferences?page=sm</Url>
         | 
| 476 | 
            +
                    <ClickUrl>http://search.yahoo.com/preferences/preferences?page=sm</ClickUrl>
         | 
| 477 | 
            +
                </Result>
         | 
| 478 | 
            +
                <Result>
         | 
| 479 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 480 | 
            +
                    <Url>http://un.yhs.search.yahoo.com/</Url>
         | 
| 481 | 
            +
                    <ClickUrl>http://un.yhs.search.yahoo.com/</ClickUrl>
         | 
| 482 | 
            +
                </Result>
         | 
| 483 | 
            +
                <Result>
         | 
| 484 | 
            +
                    <Title>Yahoo! Maps, Driving Directions, and Traffic</Title>
         | 
| 485 | 
            +
                    <Url>http://search.yahoo.com/maps</Url>
         | 
| 486 | 
            +
                    <ClickUrl>http://search.yahoo.com/maps</ClickUrl>
         | 
| 487 | 
            +
                </Result>
         | 
| 488 | 
            +
                <Result>
         | 
| 489 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 490 | 
            +
                    <Url>http://search.yahoo.com/?fr=ad-mailsig-home</Url>
         | 
| 491 | 
            +
                    <ClickUrl>http://search.yahoo.com/?fr=ad-mailsig-home</ClickUrl>
         | 
| 492 | 
            +
                </Result>
         | 
| 493 | 
            +
                <Result>
         | 
| 494 | 
            +
                    <Title>Y!Q Beta on Firefox</Title>
         | 
| 495 | 
            +
                    <Url>http://yq.search.yahoo.com/splash/firefox.html</Url>
         | 
| 496 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/splash/firefox.html</ClickUrl>
         | 
| 497 | 
            +
                </Result>
         | 
| 498 | 
            +
                <Result>
         | 
| 499 | 
            +
                    <Title>Site Explorer - Submit</Title>
         | 
| 500 | 
            +
                    <Url>http://search.yahoo.com/free/mobile/request</Url>
         | 
| 501 | 
            +
                    <ClickUrl>http://search.yahoo.com/free/mobile/request</ClickUrl>
         | 
| 502 | 
            +
                </Result>
         | 
| 503 | 
            +
                <Result>
         | 
| 504 | 
            +
                    <Title>Yahoo! Image Search</Title>
         | 
| 505 | 
            +
                    <Url>http://ca.images.search.yahoo.com/</Url>
         | 
| 506 | 
            +
                    <ClickUrl>http://ca.images.search.yahoo.com/</ClickUrl>
         | 
| 507 | 
            +
                </Result>
         | 
| 508 | 
            +
                <Result>
         | 
| 509 | 
            +
                    <Title>es.<b>search</b>.<b>yahoo.com</b>/video/view</Title>
         | 
| 510 | 
            +
                    <Url>http://es.search.yahoo.com/video/view</Url>
         | 
| 511 | 
            +
                    <ClickUrl>http://es.search.yahoo.com/video/view</ClickUrl>
         | 
| 512 | 
            +
                </Result>
         | 
| 513 | 
            +
                <Result>
         | 
| 514 | 
            +
                    <Title>Yahoo! Search Video Player - Yahoo! Search Gallery</Title>
         | 
| 515 | 
            +
                    <Url>http://gallery.search.yahoo.com/application?smid=sss</Url>
         | 
| 516 | 
            +
                    <ClickUrl>http://gallery.search.yahoo.com/application?smid=sss</ClickUrl>
         | 
| 517 | 
            +
                </Result>
         | 
| 518 | 
            +
                <Result>
         | 
| 519 | 
            +
                    <Title>Yahoo! Search - Web Search</Title>
         | 
| 520 | 
            +
                    <Url>http://web.search.yahoo.com/</Url>
         | 
| 521 | 
            +
                    <ClickUrl>http://web.search.yahoo.com/</ClickUrl>
         | 
| 522 | 
            +
                </Result>
         | 
| 523 | 
            +
                <Result>
         | 
| 524 | 
            +
                    <Title>Yahoo! Search - Búsqueda Web</Title>
         | 
| 525 | 
            +
                    <Url>http://ar.search.yahoo.com/video/view</Url>
         | 
| 526 | 
            +
                    <ClickUrl>http://ar.search.yahoo.com/video/view</ClickUrl>
         | 
| 527 | 
            +
                </Result>
         | 
| 528 | 
            +
                <Result>
         | 
| 529 | 
            +
                    <Title>Yahoo! Shortcuts</Title>
         | 
| 530 | 
            +
                    <Url>http://fe.shortcuts.search.yahoo.com/</Url>
         | 
| 531 | 
            +
                    <ClickUrl>http://fe.shortcuts.search.yahoo.com/</ClickUrl>
         | 
| 532 | 
            +
                </Result>
         | 
| 533 | 
            +
                <Result>
         | 
| 534 | 
            +
                    <Title>Y!Q Beta Demobar</Title>
         | 
| 535 | 
            +
                    <Url>http://yq.search.yahoo.com/splash/demobar.html</Url>
         | 
| 536 | 
            +
                    <ClickUrl>http://yq.search.yahoo.com/splash/demobar.html</ClickUrl>
         | 
| 537 | 
            +
                </Result>
         | 
| 538 | 
            +
            </ResultSet>
         | 
| 539 | 
            +
            <!-- fe01.sitex.search.ac2.yahoo.com uncompressed/chunked Tue Jun  9 14:21:40 PDT 2009 -->
         | 
| 540 | 
            +
            <!-- ws07.search.re2.yahoo.com uncompressed/chunked Tue Jun  9 14:21:40 PDT 2009 -->
         | 
| 541 | 
            +
            RESPONSE
         | 
| 542 | 
            +
            end
         |