alexa 0.6.3 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,37 +0,0 @@
1
- require "helper"
2
-
3
- describe Alexa::API::SitesLinkingIn do
4
- it "raises argument error when url not present" do
5
- assert_raises Alexa::ArgumentError, /url/ do
6
- Alexa::API::SitesLinkingIn.new(:access_key_id => "fake", :secret_access_key => "fake").fetch
7
- end
8
- end
9
-
10
- describe "parsing xml" do
11
- before do
12
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("sites_linking_in/github_count_3.txt"))
13
- @sites_linking_in = Alexa::API::SitesLinkingIn.new(:access_key_id => "fake", :secret_access_key => "fake")
14
- @sites_linking_in.fetch(:url => "github.com", :count => 3)
15
- end
16
-
17
- it "returns sites" do
18
- assert_equal 3, @sites_linking_in.sites.size
19
- end
20
-
21
- it "has Title attribute on single site" do
22
- assert_equal "google.com", @sites_linking_in.sites.first["Title"]
23
- end
24
-
25
- it "has Url attribute on single site" do
26
- assert_equal "code.google.com:80/a/eclipselabs.org/p/m2eclipse-android-integration", @sites_linking_in.sites.first["Url"]
27
- end
28
-
29
- it "has success status code" do
30
- assert_equal "Success", @sites_linking_in.status_code
31
- end
32
-
33
- it "has request id" do
34
- assert_equal "abb553a3-035f-8d12-f353-40532a087b52", @sites_linking_in.request_id
35
- end
36
- end
37
- end
@@ -1,58 +0,0 @@
1
- require "helper"
2
-
3
- describe Alexa::API::TrafficHistory do
4
- it "raises argument error when url not present" do
5
- assert_raises Alexa::ArgumentError, /url/ do
6
- Alexa::API::TrafficHistory.new(:access_key_id => "fake", :secret_access_key => "fake").fetch
7
- end
8
- end
9
-
10
- it "defaults start to be in range to current time" do
11
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(:body => "ok")
12
- @traffic_history = Alexa::API::TrafficHistory.new(:access_key_id => "fake", :secret_access_key => "fake")
13
- @traffic_history.fetch(:url => "github.com", :range => 14)
14
-
15
- # 14 days ago
16
- assert_in_delta (Time.now - 3600 * 24 * 14).to_i, @traffic_history.arguments[:start].to_i, 1
17
- end
18
-
19
- describe "parsing xml" do
20
- before do
21
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("traffic_history/github.txt"))
22
- @traffic_history = Alexa::API::TrafficHistory.new(:access_key_id => "fake", :secret_access_key => "fake")
23
- @traffic_history.fetch(:url => "github.com")
24
- end
25
-
26
- it "returns site" do
27
- assert_equal "github.com", @traffic_history.site
28
- end
29
-
30
- it "returns range" do
31
- assert_equal 28, @traffic_history.range
32
- end
33
-
34
- it "returns start" do
35
- assert_equal "2012-07-11", @traffic_history.start
36
- end
37
-
38
- it "returns data" do
39
- assert_equal 28, @traffic_history.data.size
40
- end
41
-
42
- it "has success status code" do
43
- assert_equal "Success", @traffic_history.status_code
44
- end
45
-
46
- it "has request id" do
47
- assert_equal "617614fc-46a3-a105-a7ab-80a17f117bcf", @traffic_history.request_id
48
- end
49
- end
50
-
51
- it "has error status code" do
52
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("traffic_history/alexa_error.txt"))
53
- traffic_history = Alexa::API::TrafficHistory.new(:access_key_id => "fake", :secret_access_key => "fake")
54
- traffic_history.fetch(:url => "amazon.com")
55
-
56
- assert_equal "AlexaError", traffic_history.status_code
57
- end
58
- end
@@ -1,130 +0,0 @@
1
- require "helper"
2
-
3
- describe Alexa::API::UrlInfo do
4
- it "raises argument error when url not present" do
5
- assert_raises Alexa::ArgumentError, /url/ do
6
- Alexa::API::UrlInfo.new(:access_key_id => "fake", :secret_access_key => "fake").fetch
7
- end
8
- end
9
-
10
- it "allows to pass single attribute as response_group" do
11
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(:body => "ok")
12
- @url_info = Alexa::API::UrlInfo.new(:access_key_id => "fake", :secret_access_key => "fake")
13
- @url_info.fetch(:url => "github.com", :response_group => "rank")
14
-
15
- assert_equal ["rank"], @url_info.arguments[:response_group]
16
- end
17
-
18
- describe "parsing xml returned by options rank, links_in_count, site_data" do
19
- before do
20
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("url_info/custom-response-group.txt"))
21
- @url_info = Alexa::API::UrlInfo.new(:access_key_id => "fake", :secret_access_key => "fake")
22
- @url_info.fetch(:url => "github.com", :response_group => ["rank", "links_in_count", "site_data"])
23
- end
24
-
25
- it "returns rank" do
26
- assert_equal 493, @url_info.rank
27
- end
28
-
29
- it "returns data url" do
30
- assert_equal "github.com/", @url_info.data_url
31
- end
32
-
33
- it "returns site title" do
34
- assert_equal "GitHub", @url_info.site_title
35
- end
36
-
37
- it "returns site description" do
38
- expected = "Online project hosting using Git. Includes source-code browser, in-line editing, wikis, and ticketing. Free for public open-source code. Commercial closed source hosting is also available."
39
-
40
- assert_equal expected, @url_info.site_description
41
- end
42
-
43
- it "has request id" do
44
- assert_equal "2bc0f070-540f-8fbf-6804-cd6c9241a039", @url_info.request_id
45
- end
46
- end
47
-
48
- describe "with github.com full response group" do
49
- before do
50
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("url_info/github_full.txt"))
51
- @url_info = Alexa::API::UrlInfo.new(:access_key_id => "fake", :secret_access_key => "fake")
52
- @url_info.fetch(:url => "github.com")
53
- end
54
-
55
- it "returns rank" do
56
- assert_equal 551, @url_info.rank
57
- end
58
-
59
- it "returns data url" do
60
- assert_equal "github.com", @url_info.data_url
61
- end
62
-
63
- it "returns site title" do
64
- assert_equal "GitHub", @url_info.site_title
65
- end
66
-
67
- it "returns site description" do
68
- expected = "Online project hosting using Git. Includes source-code browser, in-line editing, wikis, and ticketing. Free for public open-source code. Commercial closed source hosting is also available."
69
- assert_equal expected, @url_info.site_description
70
- end
71
-
72
- it "returns language locale" do
73
- assert_nil @url_info.language_locale
74
- end
75
-
76
- it "returns language encoding" do
77
- assert_nil @url_info.language_encoding
78
- end
79
-
80
- it "returns links in count" do
81
- assert_equal 43819, @url_info.links_in_count
82
- end
83
-
84
- it "returns keywords" do
85
- assert_nil @url_info.keywords
86
- end
87
-
88
- it "returns related links" do
89
- assert_equal 10, @url_info.related_links.size
90
- end
91
-
92
- it "returns speed_median load time" do
93
- assert_equal 1031, @url_info.speed_median_load_time
94
- end
95
-
96
- it "returns speed percentile" do
97
- assert_equal 68, @url_info.speed_percentile
98
- end
99
-
100
- it "returns rank by country" do
101
- assert_equal 19, @url_info.rank_by_country.size
102
- end
103
-
104
- it "returns rank by city" do
105
- assert_equal 163, @url_info.rank_by_city.size
106
- end
107
-
108
- it "returns usage statistics" do
109
- assert_equal 4, @url_info.usage_statistics.size
110
- end
111
-
112
- it "returns categories" do
113
- assert_equal 2, @url_info.categories.size
114
- end
115
-
116
- it "has success status code" do
117
- assert_equal "Success", @url_info.status_code
118
- end
119
- end
120
-
121
- describe "with github.com rank response group" do
122
- it "successfuly connects" do
123
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("url_info/github_rank.txt"))
124
- @url_info = Alexa::API::UrlInfo.new(:access_key_id => "fake", :secret_access_key => "fake")
125
- @url_info.fetch(:url => "github.com", :response_group => ["rank"])
126
-
127
- assert_equal 551, @url_info.rank
128
- end
129
- end
130
- end
@@ -1,65 +0,0 @@
1
- require "helper"
2
-
3
- describe Alexa::Client do
4
- it "raises Argument Error when access_key_id not present" do
5
- assert_raises Alexa::ArgumentError, /access_key_id/ do
6
- Alexa::Client.new(:secret_access_key => "secret")
7
- end
8
- end
9
-
10
- it "raises Argument Error when secret_access_key not present" do
11
- assert_raises Alexa::ArgumentError, /secret_access_key/ do
12
- Alexa::Client.new(:access_key_id => "key")
13
- end
14
- end
15
-
16
- it "fetches UrlInfo results" do
17
- credentials = {:access_key_id => "key", :secret_access_key => "secret"}
18
- client = Alexa::Client.new(credentials)
19
- url_info = stub
20
- Alexa::API::UrlInfo.expects(:new).with(credentials).returns(url_info)
21
- url_info.expects(:fetch).with(:url => "github.com")
22
-
23
- client.url_info(:url => "github.com")
24
- end
25
-
26
- it "fetches SitesLinkingIn results" do
27
- credentials = {:access_key_id => "key", :secret_access_key => "secret"}
28
- client = Alexa::Client.new(credentials)
29
- sites_linking_in = stub
30
- Alexa::API::SitesLinkingIn.expects(:new).with(credentials).returns(sites_linking_in)
31
- sites_linking_in.expects(:fetch).with(:url => "github.com", :count => 15, :start => 2)
32
-
33
- client.sites_linking_in(:url => "github.com", :count => 15, :start => 2)
34
- end
35
-
36
- it "fetches TrafficHistory results" do
37
- credentials = {:access_key_id => "key", :secret_access_key => "secret"}
38
- client = Alexa::Client.new(credentials)
39
- traffic_history = stub
40
- Alexa::API::TrafficHistory.expects(:new).with(credentials).returns(traffic_history)
41
- traffic_history.expects(:fetch).with(:url => "github.com", :range => 15)
42
-
43
- client.traffic_history(:url => "github.com", :range => 15)
44
- end
45
-
46
- it "fetches CategoryBrowse results" do
47
- credentials = {:access_key_id => "key", :secret_access_key => "secret"}
48
- client = Alexa::Client.new(credentials)
49
- category_browse = stub
50
- Alexa::API::CategoryBrowse.expects(:new).with(credentials).returns(category_browse)
51
- category_browse.expects(:fetch).with(:path => "Top/Games/Card_Games")
52
-
53
- client.category_browse(:path => "Top/Games/Card_Games")
54
- end
55
-
56
- it "fetches CategoryListings results" do
57
- credentials = {:access_key_id => "key", :secret_access_key => "secret"}
58
- client = Alexa::Client.new(credentials)
59
- category_listings = stub
60
- Alexa::API::CategoryListings.expects(:new).with(credentials).returns(category_listings)
61
- category_listings.expects(:fetch).with(:path => "Top/Games/Card_Games")
62
-
63
- client.category_listings(:path => "Top/Games/Card_Games")
64
- end
65
- end
@@ -1,46 +0,0 @@
1
- require "helper"
2
-
3
- describe Alexa::Connection do
4
- it "calculates signature" do
5
- connection = Alexa::Connection.new(:access_key_id => "fake", :secret_access_key => "fake")
6
- connection.stubs(:timestamp).returns("2012-08-08T20:58:32.000Z")
7
-
8
- assert_equal "3uaSV1s7uJUtIDivvM8mzPkNxq+Za8jAFCDnQOvjRH4=", connection.signature
9
- end
10
-
11
- it "normalizes non string params value" do
12
- connection = Alexa::Connection.new(:access_key_id => "fake", :secret_access_key => "fake")
13
- connection.stubs(:timestamp).returns("2012-08-08T20:58:32.000Z")
14
- connection.params = {:custom_value => 3}
15
-
16
- expected = "AWSAccessKeyId=fake&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2012-08-08T20%3A58%3A32.000Z&Version=2005-07-11&custom_value=3"
17
- assert_equal expected, connection.query
18
- end
19
-
20
- it "encodes space character" do
21
- connection = Alexa::Connection.new(:access_key_id => "fake", :secret_access_key => "fake")
22
- connection.stubs(:timestamp).returns("2012-08-08T20:58:32.000Z")
23
- connection.params = {:custom_value => "two beers"}
24
-
25
- expected = "AWSAccessKeyId=fake&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2012-08-08T20%3A58%3A32.000Z&Version=2005-07-11&custom_value=two%20beers"
26
- assert_equal expected, connection.query
27
- end
28
-
29
- it "raises error when unathorized" do
30
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("unathorized.txt"))
31
- connection = Alexa::Connection.new(:access_key_id => "wrong", :secret_access_key => "wrong")
32
-
33
- assert_raises Alexa::ResponseError do
34
- connection.get
35
- end
36
- end
37
-
38
- it "raises error when forbidden" do
39
- stub_request(:get, %r{http://awis.amazonaws.com}).to_return(fixture("forbidden.txt"))
40
- connection = Alexa::Connection.new(:access_key_id => "wrong", :secret_access_key => "wrong")
41
-
42
- assert_raises Alexa::ResponseError do
43
- connection.get
44
- end
45
- end
46
- end
@@ -1,8 +0,0 @@
1
- HTTP/1.1 400 Bad Request
2
- Server: Apache-Coyote/1.1
3
- Transfer-Encoding: chunked
4
- Date: Wed, 08 Aug 2012 14:13:34 GMT
5
- nnCoection: close
6
-
7
- <?xml version="1.0"?>
8
- <Response><Errors><Error><Code>RequestExpired</Code><Message>Request has expired. Timestamp date is 2012-08-08T13:42:07.000Z</Message></Error></Errors><RequestID>4c767d23-e305-010f-8fab-f5c6293d6a0e</RequestID></Response>
@@ -1,480 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: Apache-Coyote/1.1
3
- Content-Type: text/xml
4
- Transfer-Encoding: chunked
5
- Date: Wed, 08 Aug 2012 16:53:56 GMT
6
-
7
- <?xml version="1.0"?>
8
- <aws:CategoryBrowseResponse xmlns:aws="http://alexa.amazonaws.com/doc/2005-07-11/"><aws:Response xmlns:aws="http://awis.amazonaws.com/doc/2005-07-11"><aws:OperationRequest><aws:RequestId>c8bec6fe-84f3-9a8e-7444-47f86c64d74b</aws:RequestId></aws:OperationRequest><aws:CategoryBrowseResult><aws:Alexa>
9
-
10
- <aws:CategoryBrowse>
11
- <aws:Categories>
12
- <aws:Category>
13
- <aws:Path>Top/Games/Card_Games/Combining</aws:Path>
14
- <aws:Title>Combining</aws:Title>
15
- <aws:SubCategoryCount>8</aws:SubCategoryCount>
16
- <aws:TotalListingCount>33</aws:TotalListingCount>
17
- <aws:Description>Sites about card games in where winning, or scoring points, involves combining cards in various ways.</aws:Description>
18
- </aws:Category>
19
- <aws:Category>
20
- <aws:Path>Top/Games/Card_Games/Comparing</aws:Path>
21
- <aws:Title>Comparing</aws:Title>
22
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
23
- <aws:TotalListingCount>2</aws:TotalListingCount>
24
- <aws:Description>Sites devoted to card games where winning or losing depends on comparing one card or combinations of cards with another.</aws:Description>
25
- </aws:Category>
26
- <aws:Category>
27
- <aws:Path>Top/Games/Card_Games/Developers_and_Publishers</aws:Path>
28
- <aws:Title>Developers and Publishers</aws:Title>
29
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
30
- <aws:TotalListingCount>10</aws:TotalListingCount>
31
- <aws:Description>Sites devoted to developers and publishers of special deck propriety card games, as well as inventors of fifty-two card standard deck games.</aws:Description>
32
- </aws:Category>
33
- <aws:Category>
34
- <aws:Path>Top/Games/Card_Games/Guides</aws:Path>
35
- <aws:Title>Guides</aws:Title>
36
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
37
- <aws:TotalListingCount>30</aws:TotalListingCount>
38
- <aws:Description>Websites offering rules, strategies, and information for multiple card games.</aws:Description>
39
- </aws:Category>
40
- <aws:Category>
41
- <aws:Path>Top/Games/Card_Games/Shedding_and_Accumulating</aws:Path>
42
- <aws:Title>Shedding and Accumulating</aws:Title>
43
- <aws:SubCategoryCount>8</aws:SubCategoryCount>
44
- <aws:TotalListingCount>26</aws:TotalListingCount>
45
- <aws:Description>Sites devoted to card games where the objective is either to get rid of all your cards or accumulate all the cards.</aws:Description>
46
- </aws:Category>
47
- <aws:Category>
48
- <aws:Path>Top/Games/Card_Games/Special_Decks</aws:Path>
49
- <aws:Title>Special Decks</aws:Title>
50
- <aws:SubCategoryCount>138</aws:SubCategoryCount>
51
- <aws:TotalListingCount>255</aws:TotalListingCount>
52
- <aws:Description>Various card games which require a special pack of cards often promoted and sold by a particular manufacturer. Each game is categorized in a sub-directory, if not the site describes more than one card game.</aws:Description>
53
- </aws:Category>
54
- <aws:Category>
55
- <aws:Path>Top/Games/Card_Games/Standard_Decks</aws:Path>
56
- <aws:Title>Standard Decks</aws:Title>
57
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
58
- <aws:TotalListingCount>0</aws:TotalListingCount>
59
- </aws:Category>
60
- <aws:Category>
61
- <aws:Path>Top/Games/Card_Games/Trick_Capturing</aws:Path>
62
- <aws:Title>Trick Capturing</aws:Title>
63
- <aws:SubCategoryCount>15</aws:SubCategoryCount>
64
- <aws:TotalListingCount>694</aws:TotalListingCount>
65
- <aws:Description>These are trick-taking games in which the aim is to capture cards or avoiding capturing cards. It may be the quantity of cards captured that is important, or it may be that some cards are more valuable than others.</aws:Description>
66
- </aws:Category>
67
- </aws:Categories>
68
- <aws:LanguageCategories>
69
- <aws:Category>
70
- <aws:Path>Top/World/Català/Jocs/De_cartes</aws:Path>
71
- <aws:Title>Catalan</aws:Title>
72
- <aws:SubCategoryCount>3</aws:SubCategoryCount>
73
- <aws:TotalListingCount>9</aws:TotalListingCount>
74
- <aws:Description>Manuals, instruccions, programes de qualsevol joc de cartes.</aws:Description>
75
- </aws:Category>
76
- <aws:Category>
77
- <aws:Path>Top/World/Chinese_Simplified_CN/游戏/牌类游戏</aws:Path>
78
- <aws:Title>Chinese Simplified</aws:Title>
79
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
80
- <aws:TotalListingCount>22</aws:TotalListingCount>
81
- <aws:Description>纸牌游戏,比如使用部分、整副或多副扑克牌的游戏。</aws:Description>
82
- </aws:Category>
83
- <aws:Category>
84
- <aws:Path>Top/World/Česky/Hry/Karetní_hry</aws:Path>
85
- <aws:Title>Czech</aws:Title>
86
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
87
- <aws:TotalListingCount>6</aws:TotalListingCount>
88
- </aws:Category>
89
- <aws:Category>
90
- <aws:Path>Top/World/Dansk/Spil/Kortspil</aws:Path>
91
- <aws:Title>Danish</aws:Title>
92
- <aws:SubCategoryCount>5</aws:SubCategoryCount>
93
- <aws:TotalListingCount>39</aws:TotalListingCount>
94
- <aws:Description>Spil, der spilles med spillekort, hører hjemme her.</aws:Description>
95
- </aws:Category>
96
- <aws:Category>
97
- <aws:Path>Top/World/Nederlands/Spellen/Kaartspellen</aws:Path>
98
- <aws:Title>Dutch</aws:Title>
99
- <aws:SubCategoryCount>5</aws:SubCategoryCount>
100
- <aws:TotalListingCount>139</aws:TotalListingCount>
101
- <aws:Description>Een of ander spel met kaarten.</aws:Description>
102
- </aws:Category>
103
- <aws:Category>
104
- <aws:Path>Top/World/Suomi/Pelit/Korttipelit</aws:Path>
105
- <aws:Title>Finnish</aws:Title>
106
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
107
- <aws:TotalListingCount>5</aws:TotalListingCount>
108
- <aws:Description>Korttipeliaiheisia suomenkielisiä sivustoja.</aws:Description>
109
- </aws:Category>
110
- <aws:Category>
111
- <aws:Path>Top/World/Français/Jeux/Jeux_de_cartes</aws:Path>
112
- <aws:Title>French</aws:Title>
113
- <aws:SubCategoryCount>6</aws:SubCategoryCount>
114
- <aws:TotalListingCount>527</aws:TotalListingCount>
115
- <aws:Description>Les jeux de cartes sont à la mode depuis l'an 1000 environ. On dénombre actuellement deux grandes classes de cartes à jouer (qui sont placées dans les catégories ODP correspondantes) : &lt;ul&gt; &lt;li&gt;Cartes à collectionner : jeux nécessitant l'acquisition d'un grand nombre de cartes pour jouer (exemple typique : Magic); &lt;li&gt;Cartes traditionnelles : jeux nécessitant un nombre de cartes fixes (exemple typique : le poker). &lt;/ul&gt; Lors de votre recherche dans cette catégorie ou l'une des sous-catégories, il est possible que tous les sites web traitant des jeux de cartes ne soient pas affichés. Ces sites sont ceux qui traitent des jeux de cartes mais pas en exclusivité. Ils sont alors indexés dans une catégorie parente comme Jeux. &lt;br&gt; &lt;br&gt;</aws:Description>
116
- </aws:Category>
117
- <aws:Category>
118
- <aws:Path>Top/World/Deutsch/Spiele/Brett-_und_Tischspiele/Kartenspiele</aws:Path>
119
- <aws:Title>German</aws:Title>
120
- <aws:SubCategoryCount>11</aws:SubCategoryCount>
121
- <aws:TotalListingCount>238</aws:TotalListingCount>
122
- <aws:Description>Kartenspiele sind alle Spiele, bei denen das primäre Spielmaterial die Spielkarten sind. Das gilt sowohl für reine Kartenspiele (beinhalten nur Spielkarten) als auch für erweiterte Kartenspiele - beinhalten weitere Spielmaterialien wie z.B Wertungsleiste etc., die allerdings spieltechnisch nur von untergeordneter Bedeutung sind. In den letzten Jahrzehnten des 20.Jh. sind zu den traditionellen und bekannten ("klassischen") Kartenspielen wie z.B. Skat und Bridge eine Fülle von "modernen" Kartenspielen wie z.B. UNO und Magic hinzugekommen.</aws:Description>
123
- </aws:Category>
124
- <aws:Category>
125
- <aws:Path>Top/World/Italiano/Giochi/Carte</aws:Path>
126
- <aws:Title>Italian</aws:Title>
127
- <aws:SubCategoryCount>12</aws:SubCategoryCount>
128
- <aws:TotalListingCount>145</aws:TotalListingCount>
129
- <aws:Description>Siti dedicati ai giochi di carte che utilizzano i mazzi standard da 52 carte o quelli tradizionali e locali di 40. Per i giochi con carte scambiabili e collezionabili vedi: Giochi:Giochi_di_Carte_Collezionabili. Per i giochi online vedi: Giochi:Web.</aws:Description>
130
- </aws:Category>
131
- <aws:Category>
132
- <aws:Path>Top/World/Japanese/ゲーム/テーブルゲーム/カードゲーム</aws:Path>
133
- <aws:Title>Japanese</aws:Title>
134
- <aws:SubCategoryCount>2</aws:SubCategoryCount>
135
- <aws:TotalListingCount>23</aws:TotalListingCount>
136
- <aws:Description>カードゲームに関するサイトを扱います。</aws:Description>
137
- </aws:Category>
138
- <aws:Category>
139
- <aws:Path>Top/World/Korean/게임/카드게임</aws:Path>
140
- <aws:Title>Korean</aws:Title>
141
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
142
- <aws:TotalListingCount>0</aws:TotalListingCount>
143
- </aws:Category>
144
- <aws:Category>
145
- <aws:Path>Top/World/Lietuvių/Žaidimai/Kortų_žaidimai</aws:Path>
146
- <aws:Title>Lietuvių</aws:Title>
147
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
148
- <aws:TotalListingCount>2</aws:TotalListingCount>
149
- <aws:Description>Žaidimai kortomis, jų taisyklės, strategija ir klubai.</aws:Description>
150
- </aws:Category>
151
- <aws:Category>
152
- <aws:Path>Top/World/Norsk/Spill/Kortspill</aws:Path>
153
- <aws:Title>Norwegian</aws:Title>
154
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
155
- <aws:TotalListingCount>58</aws:TotalListingCount>
156
- <aws:Description>Kortspill omfatter både spill med klassisk kortstokk, som bridge og poker, samlekortspill som Magic og Pokemon, og spill med andre typer kortstokker. Kortspill over internett dekkes av kategorien &lt;a href="http://www.dmoz.org/World/Norsk/Spill/Internett/"&gt;Internett&lt;/a&gt;.</aws:Description>
157
- </aws:Category>
158
- <aws:Category>
159
- <aws:Path>Top/World/Polski/Gry/Karciane</aws:Path>
160
- <aws:Title>Polish</aws:Title>
161
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
162
- <aws:TotalListingCount>13</aws:TotalListingCount>
163
- </aws:Category>
164
- <aws:Category>
165
- <aws:Path>Top/World/Română/Jocuri/Jocuri_de_cărţi</aws:Path>
166
- <aws:Title>Romanian</aws:Title>
167
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
168
- <aws:TotalListingCount>2</aws:TotalListingCount>
169
- <aws:Description>Pagini în limba română dedicate jocurilor de cărţi. &lt;p&gt;Este indicată o descriere în limba română a paginii propuse.&lt;/p&gt;&lt;h4&gt;Dacă pagina nu este în limba română această categorie nu este recomandată.&lt;/h4&gt;</aws:Description>
170
- </aws:Category>
171
- <aws:Category>
172
- <aws:Path>Top/World/Russian/Игры/Карточные_игры</aws:Path>
173
- <aws:Title>Russian</aws:Title>
174
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
175
- <aws:TotalListingCount>29</aws:TotalListingCount>
176
- </aws:Category>
177
- <aws:Category>
178
- <aws:Path>Top/World/Slovensky/Hry/Kartové_hry</aws:Path>
179
- <aws:Title>Slovensky</aws:Title>
180
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
181
- <aws:TotalListingCount>3</aws:TotalListingCount>
182
- </aws:Category>
183
- <aws:Category>
184
- <aws:Path>Top/World/Español/Juegos/Cartas</aws:Path>
185
- <aws:Title>Spanish</aws:Title>
186
- <aws:SubCategoryCount>5</aws:SubCategoryCount>
187
- <aws:TotalListingCount>59</aws:TotalListingCount>
188
- <aws:Description>Sitios web sobre juegos en los que intervienen las cartas como elemento de azar.</aws:Description>
189
- </aws:Category>
190
- <aws:Category>
191
- <aws:Path>Top/World/Svenska/Spel/Kortspel</aws:Path>
192
- <aws:Title>Swedish</aws:Title>
193
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
194
- <aws:TotalListingCount>63</aws:TotalListingCount>
195
- <aws:Description>Alla slags kortspel. Även kortspel med speciallekar. Sidor om spel med standardkortlekar, t ex bridge och vira, ska läggas i underkategori.</aws:Description>
196
- </aws:Category>
197
- <aws:Category>
198
- <aws:Path>Top/World/Türkçe/Oyunlar/Kart_Oyunları</aws:Path>
199
- <aws:Title>Turkish</aws:Title>
200
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
201
- <aws:TotalListingCount>18</aws:TotalListingCount>
202
- <aws:Description>Kart oyunları hakkında bilgi, strateji ve kurallar içeren siteler bu kategoride listelenir.</aws:Description>
203
- </aws:Category>
204
- </aws:LanguageCategories>
205
- <aws:RelatedCategories>
206
- <aws:Category>
207
- <aws:Path>Top/Arts/Performing_Arts/Magic/Effects/Card</aws:Path>
208
- <aws:Title>Card</aws:Title>
209
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
210
- <aws:TotalListingCount>4</aws:TotalListingCount>
211
- </aws:Category>
212
- <aws:Category>
213
- <aws:Path>Top/Recreation/Collecting/Toys/Games/Playing_Cards</aws:Path>
214
- <aws:Title>Collecting</aws:Title>
215
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
216
- <aws:TotalListingCount>15</aws:TotalListingCount>
217
- <aws:Description>Organizations dedicated to the hobby of collecting playing cards, including tarot cards.</aws:Description>
218
- </aws:Category>
219
- <aws:Category>
220
- <aws:Path>Top/Games/Video_Games/Recreation/Browser_Based/Cards</aws:Path>
221
- <aws:Title>Online</aws:Title>
222
- <aws:SubCategoryCount>21</aws:SubCategoryCount>
223
- <aws:TotalListingCount>51</aws:TotalListingCount>
224
- <aws:Description>This category is restricted to card games, solitaire or multi-player, which can be played online without downloading software.</aws:Description>
225
- </aws:Category>
226
- <aws:Category>
227
- <aws:Path>Top/Games/Gambling/Equipment/Manufacturers/Playing_Cards</aws:Path>
228
- <aws:Title>Playing Cards</aws:Title>
229
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
230
- <aws:TotalListingCount>7</aws:TotalListingCount>
231
- <aws:Description>Businesses whose exclusive or predominant focus is the manufacturing of playing cards.</aws:Description>
232
- </aws:Category>
233
- <aws:Category>
234
- <aws:Path>Top/Recreation/Collecting/Toys/Games/Playing_Cards</aws:Path>
235
- <aws:Title>Playing Cards</aws:Title>
236
- <aws:SubCategoryCount>1</aws:SubCategoryCount>
237
- <aws:TotalListingCount>15</aws:TotalListingCount>
238
- <aws:Description>Organizations dedicated to the hobby of collecting playing cards, including tarot cards.</aws:Description>
239
- </aws:Category>
240
- <aws:Category>
241
- <aws:Path>Top/Shopping/Toys_and_Games/Games/Cards</aws:Path>
242
- <aws:Title>Shopping</aws:Title>
243
- <aws:SubCategoryCount>2</aws:SubCategoryCount>
244
- <aws:TotalListingCount>32</aws:TotalListingCount>
245
- </aws:Category>
246
- <aws:Category>
247
- <aws:Path>Top/Games/Trading_Card_Games</aws:Path>
248
- <aws:Title>Trading Cards</aws:Title>
249
- <aws:SubCategoryCount>70</aws:SubCategoryCount>
250
- <aws:TotalListingCount>320</aws:TotalListingCount>
251
- <aws:Description>This category covers all collectible card games (known as CCGs) such as Magic, Mythos, Star Wars, etc. It also includes games of a similar nature, even if they aren't strictly speaking collectible - XXXenophile, the newer INWO expansions, etc. As a rule of thumb, any game that involves professionally-printed cards (i.e. not standard playing cards) should be in here.</aws:Description>
252
- </aws:Category>
253
- <aws:Category>
254
- <aws:Path>Top/Games/Video_Games/Recreation/Cards</aws:Path>
255
- <aws:Title>Video Games</aws:Title>
256
- <aws:SubCategoryCount>16</aws:SubCategoryCount>
257
- <aws:TotalListingCount>142</aws:TotalListingCount>
258
- <aws:Description>This category and its subcategories are for downloadable or CD/DVD software card games playable on a computer.</aws:Description>
259
- </aws:Category>
260
- </aws:RelatedCategories>
261
- <aws:LetterBars>
262
- <aws:Category>
263
- <aws:Path>Top/Games/Card_Games/0</aws:Path>
264
- <aws:Title>0</aws:Title>
265
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
266
- <aws:TotalListingCount>0</aws:TotalListingCount>
267
- </aws:Category>
268
- <aws:Category>
269
- <aws:Path>Top/Games/Card_Games/1</aws:Path>
270
- <aws:Title>1</aws:Title>
271
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
272
- <aws:TotalListingCount>0</aws:TotalListingCount>
273
- </aws:Category>
274
- <aws:Category>
275
- <aws:Path>Top/Games/Card_Games/2</aws:Path>
276
- <aws:Title>2</aws:Title>
277
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
278
- <aws:TotalListingCount>0</aws:TotalListingCount>
279
- </aws:Category>
280
- <aws:Category>
281
- <aws:Path>Top/Games/Card_Games/3</aws:Path>
282
- <aws:Title>3</aws:Title>
283
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
284
- <aws:TotalListingCount>0</aws:TotalListingCount>
285
- </aws:Category>
286
- <aws:Category>
287
- <aws:Path>Top/Games/Card_Games/4</aws:Path>
288
- <aws:Title>4</aws:Title>
289
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
290
- <aws:TotalListingCount>0</aws:TotalListingCount>
291
- </aws:Category>
292
- <aws:Category>
293
- <aws:Path>Top/Games/Card_Games/5</aws:Path>
294
- <aws:Title>5</aws:Title>
295
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
296
- <aws:TotalListingCount>0</aws:TotalListingCount>
297
- </aws:Category>
298
- <aws:Category>
299
- <aws:Path>Top/Games/Card_Games/6</aws:Path>
300
- <aws:Title>6</aws:Title>
301
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
302
- <aws:TotalListingCount>0</aws:TotalListingCount>
303
- </aws:Category>
304
- <aws:Category>
305
- <aws:Path>Top/Games/Card_Games/7</aws:Path>
306
- <aws:Title>7</aws:Title>
307
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
308
- <aws:TotalListingCount>0</aws:TotalListingCount>
309
- </aws:Category>
310
- <aws:Category>
311
- <aws:Path>Top/Games/Card_Games/8</aws:Path>
312
- <aws:Title>8</aws:Title>
313
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
314
- <aws:TotalListingCount>0</aws:TotalListingCount>
315
- </aws:Category>
316
- <aws:Category>
317
- <aws:Path>Top/Games/Card_Games/9</aws:Path>
318
- <aws:Title>9</aws:Title>
319
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
320
- <aws:TotalListingCount>0</aws:TotalListingCount>
321
- </aws:Category>
322
- <aws:Category>
323
- <aws:Path>Top/Games/Card_Games/A</aws:Path>
324
- <aws:Title>A</aws:Title>
325
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
326
- <aws:TotalListingCount>0</aws:TotalListingCount>
327
- </aws:Category>
328
- <aws:Category>
329
- <aws:Path>Top/Games/Card_Games/B</aws:Path>
330
- <aws:Title>B</aws:Title>
331
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
332
- <aws:TotalListingCount>0</aws:TotalListingCount>
333
- </aws:Category>
334
- <aws:Category>
335
- <aws:Path>Top/Games/Card_Games/C</aws:Path>
336
- <aws:Title>C</aws:Title>
337
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
338
- <aws:TotalListingCount>0</aws:TotalListingCount>
339
- </aws:Category>
340
- <aws:Category>
341
- <aws:Path>Top/Games/Card_Games/D</aws:Path>
342
- <aws:Title>D</aws:Title>
343
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
344
- <aws:TotalListingCount>0</aws:TotalListingCount>
345
- </aws:Category>
346
- <aws:Category>
347
- <aws:Path>Top/Games/Card_Games/E</aws:Path>
348
- <aws:Title>E</aws:Title>
349
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
350
- <aws:TotalListingCount>0</aws:TotalListingCount>
351
- </aws:Category>
352
- <aws:Category>
353
- <aws:Path>Top/Games/Card_Games/F</aws:Path>
354
- <aws:Title>F</aws:Title>
355
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
356
- <aws:TotalListingCount>0</aws:TotalListingCount>
357
- </aws:Category>
358
- <aws:Category>
359
- <aws:Path>Top/Games/Card_Games/G</aws:Path>
360
- <aws:Title>G</aws:Title>
361
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
362
- <aws:TotalListingCount>0</aws:TotalListingCount>
363
- </aws:Category>
364
- <aws:Category>
365
- <aws:Path>Top/Games/Card_Games/H</aws:Path>
366
- <aws:Title>H</aws:Title>
367
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
368
- <aws:TotalListingCount>0</aws:TotalListingCount>
369
- </aws:Category>
370
- <aws:Category>
371
- <aws:Path>Top/Games/Card_Games/I</aws:Path>
372
- <aws:Title>I</aws:Title>
373
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
374
- <aws:TotalListingCount>0</aws:TotalListingCount>
375
- </aws:Category>
376
- <aws:Category>
377
- <aws:Path>Top/Games/Card_Games/J</aws:Path>
378
- <aws:Title>J</aws:Title>
379
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
380
- <aws:TotalListingCount>0</aws:TotalListingCount>
381
- </aws:Category>
382
- <aws:Category>
383
- <aws:Path>Top/Games/Card_Games/K</aws:Path>
384
- <aws:Title>K</aws:Title>
385
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
386
- <aws:TotalListingCount>0</aws:TotalListingCount>
387
- </aws:Category>
388
- <aws:Category>
389
- <aws:Path>Top/Games/Card_Games/L</aws:Path>
390
- <aws:Title>L</aws:Title>
391
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
392
- <aws:TotalListingCount>0</aws:TotalListingCount>
393
- </aws:Category>
394
- <aws:Category>
395
- <aws:Path>Top/Games/Card_Games/M</aws:Path>
396
- <aws:Title>M</aws:Title>
397
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
398
- <aws:TotalListingCount>0</aws:TotalListingCount>
399
- </aws:Category>
400
- <aws:Category>
401
- <aws:Path>Top/Games/Card_Games/N</aws:Path>
402
- <aws:Title>N</aws:Title>
403
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
404
- <aws:TotalListingCount>0</aws:TotalListingCount>
405
- </aws:Category>
406
- <aws:Category>
407
- <aws:Path>Top/Games/Card_Games/O</aws:Path>
408
- <aws:Title>O</aws:Title>
409
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
410
- <aws:TotalListingCount>0</aws:TotalListingCount>
411
- </aws:Category>
412
- <aws:Category>
413
- <aws:Path>Top/Games/Card_Games/P</aws:Path>
414
- <aws:Title>P</aws:Title>
415
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
416
- <aws:TotalListingCount>0</aws:TotalListingCount>
417
- </aws:Category>
418
- <aws:Category>
419
- <aws:Path>Top/Games/Card_Games/Q</aws:Path>
420
- <aws:Title>Q</aws:Title>
421
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
422
- <aws:TotalListingCount>0</aws:TotalListingCount>
423
- </aws:Category>
424
- <aws:Category>
425
- <aws:Path>Top/Games/Card_Games/R</aws:Path>
426
- <aws:Title>R</aws:Title>
427
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
428
- <aws:TotalListingCount>0</aws:TotalListingCount>
429
- </aws:Category>
430
- <aws:Category>
431
- <aws:Path>Top/Games/Card_Games/S</aws:Path>
432
- <aws:Title>S</aws:Title>
433
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
434
- <aws:TotalListingCount>0</aws:TotalListingCount>
435
- </aws:Category>
436
- <aws:Category>
437
- <aws:Path>Top/Games/Card_Games/Z</aws:Path>
438
- <aws:Title>Z</aws:Title>
439
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
440
- <aws:TotalListingCount>0</aws:TotalListingCount>
441
- </aws:Category>
442
- <aws:Category>
443
- <aws:Path>Top/Games/Card_Games/T</aws:Path>
444
- <aws:Title>T</aws:Title>
445
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
446
- <aws:TotalListingCount>0</aws:TotalListingCount>
447
- </aws:Category>
448
- <aws:Category>
449
- <aws:Path>Top/Games/Card_Games/U</aws:Path>
450
- <aws:Title>U</aws:Title>
451
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
452
- <aws:TotalListingCount>0</aws:TotalListingCount>
453
- </aws:Category>
454
- <aws:Category>
455
- <aws:Path>Top/Games/Card_Games/V</aws:Path>
456
- <aws:Title>V</aws:Title>
457
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
458
- <aws:TotalListingCount>0</aws:TotalListingCount>
459
- </aws:Category>
460
- <aws:Category>
461
- <aws:Path>Top/Games/Card_Games/W</aws:Path>
462
- <aws:Title>W</aws:Title>
463
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
464
- <aws:TotalListingCount>0</aws:TotalListingCount>
465
- </aws:Category>
466
- <aws:Category>
467
- <aws:Path>Top/Games/Card_Games/X</aws:Path>
468
- <aws:Title>X</aws:Title>
469
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
470
- <aws:TotalListingCount>0</aws:TotalListingCount>
471
- </aws:Category>
472
- <aws:Category>
473
- <aws:Path>Top/Games/Card_Games/Y</aws:Path>
474
- <aws:Title>Y</aws:Title>
475
- <aws:SubCategoryCount>0</aws:SubCategoryCount>
476
- <aws:TotalListingCount>0</aws:TotalListingCount>
477
- </aws:Category>
478
- </aws:LetterBars>
479
- </aws:CategoryBrowse>
480
- </aws:Alexa></aws:CategoryBrowseResult><aws:ResponseStatus xmlns:aws="http://alexa.amazonaws.com/doc/2005-07-11/"><aws:StatusCode>Success</aws:StatusCode></aws:ResponseStatus></aws:Response></aws:CategoryBrowseResponse>