productwars-api 0.1.2 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (24) hide show
  1. data/VERSION +1 -1
  2. data/lib/productwars/client.rb +71 -26
  3. data/productwars-api.gemspec +7 -2
  4. data/spec/cassettes/ProductWars/_all_wars/successful_request_with_page_parameters.yml +55 -0
  5. data/spec/cassettes/ProductWars/_all_wars/successful_wars_index_request.yml +5 -5
  6. data/spec/cassettes/ProductWars/_global_leaders/successful_products_index_request.yml +6 -6
  7. data/spec/cassettes/ProductWars/_global_leaders/successful_request_with_page_parameters.yml +56 -0
  8. data/spec/cassettes/ProductWars/_leaders_in_war/successful_request.yml +5 -5
  9. data/spec/cassettes/ProductWars/_leaders_in_war/successful_request_with_page_parameters.yml +55 -0
  10. data/spec/cassettes/ProductWars/_leaders_in_war/unsuccessful_request.yml +2 -2
  11. data/spec/cassettes/ProductWars/_product/successful_request.yml +2 -2
  12. data/spec/cassettes/ProductWars/_product/unsuccessful_request.yml +2 -2
  13. data/spec/cassettes/ProductWars/_product_stats/successful_request.yml +4 -4
  14. data/spec/cassettes/ProductWars/_product_stats/unsuccessful_request.yml +2 -2
  15. data/spec/cassettes/ProductWars/_products_in_war/successful_products_index_request.yml +5 -5
  16. data/spec/cassettes/ProductWars/_products_in_war/successful_request_with_page_parameters.yml +55 -0
  17. data/spec/cassettes/ProductWars/_products_in_war/unsuccessful_request.yml +2 -2
  18. data/spec/cassettes/ProductWars/_war/successful_request.yml +1 -1
  19. data/spec/cassettes/ProductWars/_war/unsuccessful_request.yml +2 -2
  20. data/spec/cassettes/ProductWars/_wars_containing_product/successful_request.yml +5 -5
  21. data/spec/cassettes/ProductWars/_wars_containing_product/successful_request_with_page_parameters.yml +55 -0
  22. data/spec/cassettes/ProductWars/_wars_containing_product/unsuccessful_request.yml +1 -1
  23. data/spec/product_wars_spec.rb +99 -19
  24. metadata +9 -4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.2.0
@@ -16,41 +16,53 @@ module ProductWars
16
16
 
17
17
  def self.dispatch(method, *args, &block)
18
18
  base_uri "#{ProductWars.domain}/api/v1"
19
+
20
+ if args.count == 1 and args[0].class == Hash
21
+ args[0] = parse_params(args[0])
22
+ elsif args.count == 2 and args[1].class == Hash
23
+ args[1] = parse_params(args[1])
24
+ end
25
+
19
26
  response = self.send(method, *args, &block)
27
+
20
28
  self.handle(response)
21
29
  end
22
30
 
23
31
  ######### API Calls ###########
24
- def self.product(product_id)
25
- get("/products/#{product_id}.json")
32
+ def self.products(params="")
33
+ get("/products.json#{params}")
34
+ end
35
+
36
+ def self.product(product_id, params="")
37
+ get("/products/#{product_id}.json#{params}")
26
38
  end
27
39
 
28
- def self.wars_containing_product(product_id)
29
- get("/products/#{product_id}/wars.json")
40
+ def self.wars_containing_product(product_id, params="")
41
+ get("/products/#{product_id}/wars.json#{params}")
30
42
  end
31
43
 
32
- def self.all_wars
33
- get("/wars.json")
44
+ def self.all_wars(params="")
45
+ get("/wars.json#{params}")
34
46
  end
35
47
 
36
- def self.product_stats(product_id)
37
- get("/stats/products/#{product_id}.json")
48
+ def self.product_stats(product_id, params="")
49
+ get("/stats/products/#{product_id}.json#{params}")
38
50
  end
39
51
 
40
- def self.war(war_id)
41
- get("/wars/#{war_id}.json")
52
+ def self.war(war_id, params="")
53
+ get("/wars/#{war_id}.json#{params}")
42
54
  end
43
55
 
44
- def self.products_in_war(war_id)
45
- get("/wars/#{war_id}/products.json")
56
+ def self.products_in_war(war_id, params="")
57
+ get("/wars/#{war_id}/products.json#{params}")
46
58
  end
47
59
 
48
- def self.global_leaders
49
- get("/leaders.json")
60
+ def self.global_leaders(params="")
61
+ get("/leaders.json#{params}")
50
62
  end
51
63
 
52
- def self.leaders_in_war(war_id)
53
- get("/wars/#{war_id}/leaders.json")
64
+ def self.leaders_in_war(war_id, params="")
65
+ get("/wars/#{war_id}/leaders.json#{params}")
54
66
  end
55
67
  ###############################
56
68
 
@@ -65,32 +77,52 @@ module ProductWars
65
77
  def self.wrap(response)
66
78
  info = response.parsed_response
67
79
 
68
- if info.class == Array
80
+ items = []
81
+ sym = nil
82
+
83
+ if info.has_key?("products")
84
+ sym = "products"
85
+ items = info[sym]
86
+ elsif info.has_key?("wars")
87
+ sym = "wars"
88
+ items = info[sym]
89
+ end
90
+
91
+ if items.count > 0
69
92
  a = []
70
93
 
71
- for hash in info
94
+ for hash in items
72
95
  a.push(new_product_wars_object(hash))
73
96
  end
74
97
 
75
- return a
98
+ info[sym] = a
76
99
 
100
+ return info
77
101
  elsif info.class == Hash
78
- new_product_wars_object(info)
102
+ return new_product_wars_object(info)
79
103
  end
104
+ #if info.class == Array
105
+ # a = []
106
+
107
+ # for hash in info
108
+ # a.push(new_product_wars_object(hash))
109
+ # end
110
+
111
+ # return a
112
+
113
+ #elsif info.class == Hash
114
+ # new_product_wars_object(info)
115
+ #end
80
116
  end
81
117
 
82
118
  def self.product_wars_type?(obj)
83
- if obj.class == Array
84
- obj = obj.first
85
- end
86
-
87
119
  if obj.nil?
88
120
  return nil
89
121
  end
90
122
 
91
123
  if obj.class == Hash
92
- if obj.has_key?('dp_id')
93
- if obj.has_key?('win_rate')
124
+ if obj.has_key?("dp_id")
125
+ if obj.has_key?("win_rate")
94
126
  ProductWars::Stats
95
127
  else
96
128
  ProductWars::Product
@@ -115,5 +147,18 @@ module ProductWars
115
147
  end
116
148
  end
117
149
 
150
+ def self.parse_params(params_hash)
151
+ if not params_hash.class == Hash
152
+ return ""
153
+ end
154
+
155
+ param_string = "?"
156
+
157
+ for k, v in params_hash
158
+ param_string = param_string + "#{k.to_s}=#{v}&"
159
+ end
160
+
161
+ return param_string
162
+ end
118
163
  end
119
164
  end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{productwars-api}
8
- s.version = "0.1.2"
8
+ s.version = "0.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Spencer Rogers"]
12
- s.date = %q{2011-03-16}
12
+ s.date = %q{2011-03-21}
13
13
  s.description = %q{This gem provides object-like functionality for retrieving and manipulating data from the Product Wars API}
14
14
  s.email = %q{spencer@designerpages.com}
15
15
  s.extra_rdoc_files = [
@@ -32,19 +32,24 @@ Gem::Specification.new do |s|
32
32
  "lib/productwars/stats.rb",
33
33
  "lib/productwars/war.rb",
34
34
  "productwars-api.gemspec",
35
+ "spec/cassettes/ProductWars/_all_wars/successful_request_with_page_parameters.yml",
35
36
  "spec/cassettes/ProductWars/_all_wars/successful_wars_index_request.yml",
36
37
  "spec/cassettes/ProductWars/_global_leaders/successful_products_index_request.yml",
38
+ "spec/cassettes/ProductWars/_global_leaders/successful_request_with_page_parameters.yml",
37
39
  "spec/cassettes/ProductWars/_leaders_in_war/successful_request.yml",
40
+ "spec/cassettes/ProductWars/_leaders_in_war/successful_request_with_page_parameters.yml",
38
41
  "spec/cassettes/ProductWars/_leaders_in_war/unsuccessful_request.yml",
39
42
  "spec/cassettes/ProductWars/_product/successful_request.yml",
40
43
  "spec/cassettes/ProductWars/_product/unsuccessful_request.yml",
41
44
  "spec/cassettes/ProductWars/_product_stats/successful_request.yml",
42
45
  "spec/cassettes/ProductWars/_product_stats/unsuccessful_request.yml",
43
46
  "spec/cassettes/ProductWars/_products_in_war/successful_products_index_request.yml",
47
+ "spec/cassettes/ProductWars/_products_in_war/successful_request_with_page_parameters.yml",
44
48
  "spec/cassettes/ProductWars/_products_in_war/unsuccessful_request.yml",
45
49
  "spec/cassettes/ProductWars/_war/successful_request.yml",
46
50
  "spec/cassettes/ProductWars/_war/unsuccessful_request.yml",
47
51
  "spec/cassettes/ProductWars/_wars_containing_product/successful_request.yml",
52
+ "spec/cassettes/ProductWars/_wars_containing_product/successful_request_with_page_parameters.yml",
48
53
  "spec/cassettes/ProductWars/_wars_containing_product/unsuccessful_request.yml",
49
54
  "spec/product_wars_spec.rb",
50
55
  "spec/spec_helper.rb"
@@ -0,0 +1,55 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://productwars.com/api/v1/wars.json?page=1&per_page=10&
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ etag:
14
+ - "\"18f49fc0a8da69eb3036850b948de2cc\""
15
+ content-type:
16
+ - application/json; charset=utf-8
17
+ date:
18
+ - Mon, 21 Mar 2011 15:53:49 GMT
19
+ server:
20
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
+ x-runtime:
22
+ - "28"
23
+ content-length:
24
+ - "3347"
25
+ cache-control:
26
+ - private, max-age=0, must-revalidate
27
+ body: "{\"wars\":[{\"name\":\"B&B Italia Armchairs\",\"created_at\":\"2010-02-11T20:19:29Z\",\"updated_at\":\"2010-02-24T06:04:04Z\",\"id\":1,\"fights\":2181,\"description\":\"\",\"active\":false},{\"name\":\"Beds\",\"created_at\":\"2010-02-18T20:55:02Z\",\"updated_at\":\"2010-10-26T14:49:43Z\",\"id\":11,\"fights\":7238,\"description\":\"we like to sleep in them.\",\"active\":false},{\"name\":\"Modular Sofas\",\"created_at\":\"2010-02-18T21:29:15Z\",\"updated_at\":\"2010-02-24T15:59:28Z\",\"id\":21,\"fights\":10071,\"description\":\"\",\"active\":true},{\"name\":\"High-Glam Chandeliers\",\"created_at\":\"2010-02-18T22:11:01Z\",\"updated_at\":\"2010-02-18T22:11:01Z\",\"id\":31,\"fights\":11511,\"description\":\"\",\"active\":true},{\"name\":\"Just For Kids\",\"created_at\":\"2010-02-18T22:23:02Z\",\"updated_at\":\"2010-10-26T14:51:09Z\",\"id\":41,\"fights\":6199,\"description\":\"\",\"active\":false},{\"name\":\"Bathroom Vanities\",\"created_at\":\"2010-02-19T04:49:35Z\",\"updated_at\":\"2010-02-19T05:19:13Z\",\"id\":51,\"fights\":9993,\"description\":\"\",\"active\":true},{\"name\":\"Kitchen Faucets\",\"created_at\":\"2010-02-19T05:31:30Z\",\"updated_at\":\"2010-02-19T12:35:57Z\",\"id\":61,\"fights\":9315,\"description\":\"http://www.designerpages.com/products/70592-Axor-Citterio-160-Kitchen-Faucet, \\r\\nhttp://www.designerpages.com/products/70584-Allegro-E-Gourmet-160-Prep-Kitchen-Faucet-Pull-Down, http://www.designerpages.com/products/46636-K-6330-ProMaster-174-kitchen-faucet, http://www.designerpages.com/products/70600-Axor-Uno-178-160-Kitchen-Faucet, http://www.designerpages.com/products/70598-Axor-Starck-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/70596-Axor-Starck-160-Kitchen-Faucet, http://www.designerpages.com/products/70593-Axor-Citterio-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/26067-Kitchen-Deck-Mounted, http://www.designerpages.com/products/26068-Kitchen-Wall-Mount, http://www.designerpages.com/products/46699-K-10441-Fort-233-entertainment-remote-valve-sink-faucet, http://www.designerpages.com/products/70585-Allegro-E-160-Bar-Faucet, http://www.designerpages.com/products/56359-OMAX-Wooden-Faucets-Nottingham-Sink-mixer-OAK-ITALIA, http://www.designerpages.com/products/117800-Soraya-Single-Hole-Vessel-Filler-Lavatory-Faucet-with-Pop-Up-Drain, http://www.designerpages.com/products/67208-Tara-Ultra?a=2107&c=27&p=67208&s=7595711&t=&v=9, http://www.designerpages.com/products/89738-Ferrara-Faucet-LK7622, http://www.designerpages.com/products/89735-Ferrara-Faucet-LK7122, http://www.designerpages.com/products/89395-Arezzo-Faucet-LK7422, http://www.designerpages.com/products/89394-Arezzo-Faucet-LK7420, http://www.designerpages.com/products/89390-Arezzo-Faucet-LK7220, http://www.designerpages.com/products/89384-Allure-Faucet-LK6175, http://www.designerpages.com/products/90251-Moda-Faucet-LK7522, http://www.designerpages.com/products/90249-Moda-Faucet-LK7320\\r\\n\",\"active\":true},{\"name\":\"Armchairs\",\"created_at\":\"2010-02-24T05:31:46Z\",\"updated_at\":\"2010-10-26T14:50:58Z\",\"id\":71,\"fights\":6928,\"description\":\"\",\"active\":false},{\"name\":\"Toilets\",\"created_at\":\"2010-02-24T17:16:50Z\",\"updated_at\":\"2010-10-26T14:52:38Z\",\"id\":81,\"fights\":5850,\"description\":\"\",\"active\":false},{\"name\":\"Bathtubs\",\"created_at\":\"2010-02-25T00:00:30Z\",\"updated_at\":\"2010-02-25T00:00:30Z\",\"id\":91,\"fights\":8862,\"description\":\"\",\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/wars.json?page=2&per_page=10&\",\"next_page\":2}"
28
+ http_version: "1.1"
29
+ - !ruby/struct:VCR::HTTPInteraction
30
+ request: !ruby/struct:VCR::Request
31
+ method: :get
32
+ uri: http://productwars.com/api/v1/wars.json?page=2&per_page=10&
33
+ body:
34
+ headers:
35
+ response: !ruby/struct:VCR::Response
36
+ status: !ruby/struct:VCR::ResponseStatus
37
+ code: 200
38
+ message: OK
39
+ headers:
40
+ etag:
41
+ - "\"f7d13321a5bc9ddb12881c8c22c5dd82\""
42
+ content-type:
43
+ - application/json; charset=utf-8
44
+ x-runtime:
45
+ - "29"
46
+ server:
47
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
48
+ date:
49
+ - Mon, 21 Mar 2011 15:54:44 GMT
50
+ content-length:
51
+ - "1677"
52
+ cache-control:
53
+ - private, max-age=0, must-revalidate
54
+ body: "{\"wars\":[{\"name\":\"Task Chairs\",\"created_at\":\"2010-02-25T14:54:02Z\",\"updated_at\":\"2010-02-25T14:54:02Z\",\"id\":101,\"fights\":11795,\"description\":\"\",\"active\":true},{\"name\":\"Storage Solutions\",\"created_at\":\"2010-02-25T23:18:54Z\",\"updated_at\":\"2010-02-25T23:18:54Z\",\"id\":111,\"fights\":9072,\"description\":\"\",\"active\":true},{\"name\":\"Carpet: Modular\",\"created_at\":\"2010-05-25T15:01:21Z\",\"updated_at\":\"2010-10-26T14:50:12Z\",\"id\":121,\"fights\":47917,\"description\":\"\",\"active\":false},{\"name\":\"Conference Room Furniture\",\"created_at\":\"2010-05-25T15:01:47Z\",\"updated_at\":\"2010-10-26T14:51:37Z\",\"id\":131,\"fights\":13682,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Furniture Systems\",\"created_at\":\"2010-05-25T15:02:05Z\",\"updated_at\":\"2010-10-26T14:52:56Z\",\"id\":141,\"fights\":23414,\"description\":\"\",\"active\":false},{\"name\":\"Conference Seating\",\"created_at\":\"2010-05-25T15:02:25Z\",\"updated_at\":\"2010-10-26T14:51:55Z\",\"id\":151,\"fights\":12597,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Sofas and Lounge\",\"created_at\":\"2010-05-25T15:02:34Z\",\"updated_at\":\"2010-10-26T14:52:16Z\",\"id\":161,\"fights\":24125,\"description\":\"\",\"active\":true},{\"name\":\"Sustainable Seating\",\"created_at\":\"2010-07-18T03:25:40Z\",\"updated_at\":\"2010-07-18T03:25:40Z\",\"id\":171,\"fights\":6684,\"description\":\"\",\"active\":true},{\"name\":\"Task Lighting\",\"created_at\":\"2010-07-19T20:24:29Z\",\"updated_at\":\"2010-07-19T20:24:29Z\",\"id\":181,\"fights\":4809,\"description\":\"\",\"active\":true},{\"name\":\"Wallcoverings\",\"created_at\":\"2010-07-28T16:58:03Z\",\"updated_at\":\"2010-07-28T16:58:03Z\",\"id\":191,\"fights\":7172,\"description\":\"\",\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/wars.json?page=3&per_page=10&\",\"next_page\":3}"
55
+ http_version: "1.1"
@@ -11,18 +11,18 @@
11
11
  message: OK
12
12
  headers:
13
13
  etag:
14
- - "\"f9b2225d5ca676675503f3916efe8605\""
14
+ - "\"eff9d90ce249356b63d5e3ad9dec9b47\""
15
15
  content-type:
16
16
  - application/json; charset=utf-8
17
17
  x-runtime:
18
- - "38"
18
+ - "39"
19
19
  server:
20
20
  - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
21
  date:
22
- - Tue, 15 Mar 2011 21:07:03 GMT
22
+ - Mon, 21 Mar 2011 15:53:49 GMT
23
23
  content-length:
24
- - "5311"
24
+ - "5411"
25
25
  cache-control:
26
26
  - private, max-age=0, must-revalidate
27
- body: "[{\"name\":\"B&B Italia Armchairs\",\"created_at\":\"2010-02-11T20:19:29Z\",\"updated_at\":\"2010-02-24T06:04:04Z\",\"id\":1,\"fights\":2181,\"description\":\"\",\"active\":false},{\"name\":\"Beds\",\"created_at\":\"2010-02-18T20:55:02Z\",\"updated_at\":\"2010-10-26T14:49:43Z\",\"id\":11,\"fights\":7238,\"description\":\"we like to sleep in them.\",\"active\":false},{\"name\":\"Modular Sofas\",\"created_at\":\"2010-02-18T21:29:15Z\",\"updated_at\":\"2010-02-24T15:59:28Z\",\"id\":21,\"fights\":10071,\"description\":\"\",\"active\":true},{\"name\":\"High-Glam Chandeliers\",\"created_at\":\"2010-02-18T22:11:01Z\",\"updated_at\":\"2010-02-18T22:11:01Z\",\"id\":31,\"fights\":11511,\"description\":\"\",\"active\":true},{\"name\":\"Just For Kids\",\"created_at\":\"2010-02-18T22:23:02Z\",\"updated_at\":\"2010-10-26T14:51:09Z\",\"id\":41,\"fights\":6199,\"description\":\"\",\"active\":false},{\"name\":\"Bathroom Vanities\",\"created_at\":\"2010-02-19T04:49:35Z\",\"updated_at\":\"2010-02-19T05:19:13Z\",\"id\":51,\"fights\":9992,\"description\":\"\",\"active\":true},{\"name\":\"Kitchen Faucets\",\"created_at\":\"2010-02-19T05:31:30Z\",\"updated_at\":\"2010-02-19T12:35:57Z\",\"id\":61,\"fights\":9315,\"description\":\"http://www.designerpages.com/products/70592-Axor-Citterio-160-Kitchen-Faucet, \\r\\nhttp://www.designerpages.com/products/70584-Allegro-E-Gourmet-160-Prep-Kitchen-Faucet-Pull-Down, http://www.designerpages.com/products/46636-K-6330-ProMaster-174-kitchen-faucet, http://www.designerpages.com/products/70600-Axor-Uno-178-160-Kitchen-Faucet, http://www.designerpages.com/products/70598-Axor-Starck-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/70596-Axor-Starck-160-Kitchen-Faucet, http://www.designerpages.com/products/70593-Axor-Citterio-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/26067-Kitchen-Deck-Mounted, http://www.designerpages.com/products/26068-Kitchen-Wall-Mount, http://www.designerpages.com/products/46699-K-10441-Fort-233-entertainment-remote-valve-sink-faucet, http://www.designerpages.com/products/70585-Allegro-E-160-Bar-Faucet, http://www.designerpages.com/products/56359-OMAX-Wooden-Faucets-Nottingham-Sink-mixer-OAK-ITALIA, http://www.designerpages.com/products/117800-Soraya-Single-Hole-Vessel-Filler-Lavatory-Faucet-with-Pop-Up-Drain, http://www.designerpages.com/products/67208-Tara-Ultra?a=2107&c=27&p=67208&s=7595711&t=&v=9, http://www.designerpages.com/products/89738-Ferrara-Faucet-LK7622, http://www.designerpages.com/products/89735-Ferrara-Faucet-LK7122, http://www.designerpages.com/products/89395-Arezzo-Faucet-LK7422, http://www.designerpages.com/products/89394-Arezzo-Faucet-LK7420, http://www.designerpages.com/products/89390-Arezzo-Faucet-LK7220, http://www.designerpages.com/products/89384-Allure-Faucet-LK6175, http://www.designerpages.com/products/90251-Moda-Faucet-LK7522, http://www.designerpages.com/products/90249-Moda-Faucet-LK7320\\r\\n\",\"active\":true},{\"name\":\"Armchairs\",\"created_at\":\"2010-02-24T05:31:46Z\",\"updated_at\":\"2010-10-26T14:50:58Z\",\"id\":71,\"fights\":6928,\"description\":\"\",\"active\":false},{\"name\":\"Toilets\",\"created_at\":\"2010-02-24T17:16:50Z\",\"updated_at\":\"2010-10-26T14:52:38Z\",\"id\":81,\"fights\":5850,\"description\":\"\",\"active\":false},{\"name\":\"Bathtubs\",\"created_at\":\"2010-02-25T00:00:30Z\",\"updated_at\":\"2010-02-25T00:00:30Z\",\"id\":91,\"fights\":8862,\"description\":\"\",\"active\":true},{\"name\":\"Task Chairs\",\"created_at\":\"2010-02-25T14:54:02Z\",\"updated_at\":\"2010-02-25T14:54:02Z\",\"id\":101,\"fights\":11793,\"description\":\"\",\"active\":true},{\"name\":\"Storage Solutions\",\"created_at\":\"2010-02-25T23:18:54Z\",\"updated_at\":\"2010-02-25T23:18:54Z\",\"id\":111,\"fights\":9072,\"description\":\"\",\"active\":true},{\"name\":\"Carpet: Modular\",\"created_at\":\"2010-05-25T15:01:21Z\",\"updated_at\":\"2010-10-26T14:50:12Z\",\"id\":121,\"fights\":47917,\"description\":\"\",\"active\":false},{\"name\":\"Conference Room Furniture\",\"created_at\":\"2010-05-25T15:01:47Z\",\"updated_at\":\"2010-10-26T14:51:37Z\",\"id\":131,\"fights\":13682,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Furniture Systems\",\"created_at\":\"2010-05-25T15:02:05Z\",\"updated_at\":\"2010-10-26T14:52:56Z\",\"id\":141,\"fights\":23414,\"description\":\"\",\"active\":false},{\"name\":\"Conference Seating\",\"created_at\":\"2010-05-25T15:02:25Z\",\"updated_at\":\"2010-10-26T14:51:55Z\",\"id\":151,\"fights\":12597,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Sofas and Lounge\",\"created_at\":\"2010-05-25T15:02:34Z\",\"updated_at\":\"2010-10-26T14:52:16Z\",\"id\":161,\"fights\":24125,\"description\":\"\",\"active\":true},{\"name\":\"Sustainable Seating\",\"created_at\":\"2010-07-18T03:25:40Z\",\"updated_at\":\"2010-07-18T03:25:40Z\",\"id\":171,\"fights\":6682,\"description\":\"\",\"active\":true},{\"name\":\"Task Lighting\",\"created_at\":\"2010-07-19T20:24:29Z\",\"updated_at\":\"2010-07-19T20:24:29Z\",\"id\":181,\"fights\":4809,\"description\":\"\",\"active\":true},{\"name\":\"Wallcoverings\",\"created_at\":\"2010-07-28T16:58:03Z\",\"updated_at\":\"2010-07-28T16:58:03Z\",\"id\":191,\"fights\":7172,\"description\":\"\",\"active\":true},{\"name\":\"Sustainable Materials\",\"created_at\":\"2010-08-16T14:48:04Z\",\"updated_at\":\"2010-08-16T14:48:18Z\",\"id\":201,\"fights\":5094,\"description\":\"\",\"active\":true},{\"name\":\"IIDEX Innovation Awards\",\"created_at\":\"2010-09-14T18:19:44Z\",\"updated_at\":\"2010-10-04T16:45:44Z\",\"id\":211,\"fights\":33730,\"description\":\"\",\"active\":false},{\"name\":\"NeoCon East People's Choice\",\"created_at\":\"2010-10-11T22:31:19Z\",\"updated_at\":\"2010-11-02T20:02:36Z\",\"id\":221,\"fights\":6859,\"description\":\"\",\"active\":false}]"
27
+ body: "{\"wars\":[{\"name\":\"B&B Italia Armchairs\",\"created_at\":\"2010-02-11T20:19:29Z\",\"updated_at\":\"2010-02-24T06:04:04Z\",\"id\":1,\"fights\":2181,\"description\":\"\",\"active\":false},{\"name\":\"Beds\",\"created_at\":\"2010-02-18T20:55:02Z\",\"updated_at\":\"2010-10-26T14:49:43Z\",\"id\":11,\"fights\":7238,\"description\":\"we like to sleep in them.\",\"active\":false},{\"name\":\"Modular Sofas\",\"created_at\":\"2010-02-18T21:29:15Z\",\"updated_at\":\"2010-02-24T15:59:28Z\",\"id\":21,\"fights\":10071,\"description\":\"\",\"active\":true},{\"name\":\"High-Glam Chandeliers\",\"created_at\":\"2010-02-18T22:11:01Z\",\"updated_at\":\"2010-02-18T22:11:01Z\",\"id\":31,\"fights\":11511,\"description\":\"\",\"active\":true},{\"name\":\"Just For Kids\",\"created_at\":\"2010-02-18T22:23:02Z\",\"updated_at\":\"2010-10-26T14:51:09Z\",\"id\":41,\"fights\":6199,\"description\":\"\",\"active\":false},{\"name\":\"Bathroom Vanities\",\"created_at\":\"2010-02-19T04:49:35Z\",\"updated_at\":\"2010-02-19T05:19:13Z\",\"id\":51,\"fights\":9993,\"description\":\"\",\"active\":true},{\"name\":\"Kitchen Faucets\",\"created_at\":\"2010-02-19T05:31:30Z\",\"updated_at\":\"2010-02-19T12:35:57Z\",\"id\":61,\"fights\":9315,\"description\":\"http://www.designerpages.com/products/70592-Axor-Citterio-160-Kitchen-Faucet, \\r\\nhttp://www.designerpages.com/products/70584-Allegro-E-Gourmet-160-Prep-Kitchen-Faucet-Pull-Down, http://www.designerpages.com/products/46636-K-6330-ProMaster-174-kitchen-faucet, http://www.designerpages.com/products/70600-Axor-Uno-178-160-Kitchen-Faucet, http://www.designerpages.com/products/70598-Axor-Starck-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/70596-Axor-Starck-160-Kitchen-Faucet, http://www.designerpages.com/products/70593-Axor-Citterio-160-Semi-Pro-Kitchen-Faucet, http://www.designerpages.com/products/26067-Kitchen-Deck-Mounted, http://www.designerpages.com/products/26068-Kitchen-Wall-Mount, http://www.designerpages.com/products/46699-K-10441-Fort-233-entertainment-remote-valve-sink-faucet, http://www.designerpages.com/products/70585-Allegro-E-160-Bar-Faucet, http://www.designerpages.com/products/56359-OMAX-Wooden-Faucets-Nottingham-Sink-mixer-OAK-ITALIA, http://www.designerpages.com/products/117800-Soraya-Single-Hole-Vessel-Filler-Lavatory-Faucet-with-Pop-Up-Drain, http://www.designerpages.com/products/67208-Tara-Ultra?a=2107&c=27&p=67208&s=7595711&t=&v=9, http://www.designerpages.com/products/89738-Ferrara-Faucet-LK7622, http://www.designerpages.com/products/89735-Ferrara-Faucet-LK7122, http://www.designerpages.com/products/89395-Arezzo-Faucet-LK7422, http://www.designerpages.com/products/89394-Arezzo-Faucet-LK7420, http://www.designerpages.com/products/89390-Arezzo-Faucet-LK7220, http://www.designerpages.com/products/89384-Allure-Faucet-LK6175, http://www.designerpages.com/products/90251-Moda-Faucet-LK7522, http://www.designerpages.com/products/90249-Moda-Faucet-LK7320\\r\\n\",\"active\":true},{\"name\":\"Armchairs\",\"created_at\":\"2010-02-24T05:31:46Z\",\"updated_at\":\"2010-10-26T14:50:58Z\",\"id\":71,\"fights\":6928,\"description\":\"\",\"active\":false},{\"name\":\"Toilets\",\"created_at\":\"2010-02-24T17:16:50Z\",\"updated_at\":\"2010-10-26T14:52:38Z\",\"id\":81,\"fights\":5850,\"description\":\"\",\"active\":false},{\"name\":\"Bathtubs\",\"created_at\":\"2010-02-25T00:00:30Z\",\"updated_at\":\"2010-02-25T00:00:30Z\",\"id\":91,\"fights\":8862,\"description\":\"\",\"active\":true},{\"name\":\"Task Chairs\",\"created_at\":\"2010-02-25T14:54:02Z\",\"updated_at\":\"2010-02-25T14:54:02Z\",\"id\":101,\"fights\":11795,\"description\":\"\",\"active\":true},{\"name\":\"Storage Solutions\",\"created_at\":\"2010-02-25T23:18:54Z\",\"updated_at\":\"2010-02-25T23:18:54Z\",\"id\":111,\"fights\":9072,\"description\":\"\",\"active\":true},{\"name\":\"Carpet: Modular\",\"created_at\":\"2010-05-25T15:01:21Z\",\"updated_at\":\"2010-10-26T14:50:12Z\",\"id\":121,\"fights\":47917,\"description\":\"\",\"active\":false},{\"name\":\"Conference Room Furniture\",\"created_at\":\"2010-05-25T15:01:47Z\",\"updated_at\":\"2010-10-26T14:51:37Z\",\"id\":131,\"fights\":13682,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Furniture Systems\",\"created_at\":\"2010-05-25T15:02:05Z\",\"updated_at\":\"2010-10-26T14:52:56Z\",\"id\":141,\"fights\":23414,\"description\":\"\",\"active\":false},{\"name\":\"Conference Seating\",\"created_at\":\"2010-05-25T15:02:25Z\",\"updated_at\":\"2010-10-26T14:51:55Z\",\"id\":151,\"fights\":12597,\"description\":\"\",\"active\":false},{\"name\":\"Commercial Sofas and Lounge\",\"created_at\":\"2010-05-25T15:02:34Z\",\"updated_at\":\"2010-10-26T14:52:16Z\",\"id\":161,\"fights\":24125,\"description\":\"\",\"active\":true},{\"name\":\"Sustainable Seating\",\"created_at\":\"2010-07-18T03:25:40Z\",\"updated_at\":\"2010-07-18T03:25:40Z\",\"id\":171,\"fights\":6684,\"description\":\"\",\"active\":true},{\"name\":\"Task Lighting\",\"created_at\":\"2010-07-19T20:24:29Z\",\"updated_at\":\"2010-07-19T20:24:29Z\",\"id\":181,\"fights\":4809,\"description\":\"\",\"active\":true},{\"name\":\"Wallcoverings\",\"created_at\":\"2010-07-28T16:58:03Z\",\"updated_at\":\"2010-07-28T16:58:03Z\",\"id\":191,\"fights\":7172,\"description\":\"\",\"active\":true},{\"name\":\"Sustainable Materials\",\"created_at\":\"2010-08-16T14:48:04Z\",\"updated_at\":\"2010-08-16T14:48:18Z\",\"id\":201,\"fights\":5094,\"description\":\"\",\"active\":true},{\"name\":\"IIDEX Innovation Awards\",\"created_at\":\"2010-09-14T18:19:44Z\",\"updated_at\":\"2010-10-04T16:45:44Z\",\"id\":211,\"fights\":33730,\"description\":\"\",\"active\":false},{\"name\":\"NeoCon East People's Choice\",\"created_at\":\"2010-10-11T22:31:19Z\",\"updated_at\":\"2010-11-02T20:02:36Z\",\"id\":221,\"fights\":6859,\"description\":\"\",\"active\":false}],\"next_page_url\":\"http://localhost:3000/api/v1/wars.json?page=2&per_page=100\",\"next_page\":2}"
28
28
  http_version: "1.1"
@@ -11,19 +11,19 @@
11
11
  message: OK
12
12
  headers:
13
13
  etag:
14
- - "\"e625761a86125106e7f94e15e7ff0644\""
14
+ - "\"628164a86f25d2486e735b16799c7afd\""
15
15
  content-type:
16
16
  - application/json; charset=utf-8
17
17
  x-runtime:
18
- - "139"
18
+ - "155"
19
19
  server:
20
20
  - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
21
  date:
22
- - Tue, 15 Mar 2011 21:07:04 GMT
22
+ - Mon, 21 Mar 2011 15:53:50 GMT
23
23
  content-length:
24
- - "16426"
24
+ - "66256"
25
25
  cache-control:
26
26
  - private, max-age=0, must-revalidate
27
- body: "[{\"permalink\":\"596551\",\"name\":\"Ciello\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"updated_at\":\"2011-03-07T22:53:41Z\",\"dp_id\":596551,\"wins\":405,\"id\":6031,\"fights\":503,\"manufacturer\":\"Kloeber\",\"description\":\"Let us guide you through a world of perfection. Like in a tailor-made suit, the design and aesthetic features of the Ciello take into account the diversity of man&#8217;s natural body shapes. The award-winning design is communicated by exemplary craftsman\",\"global_rank\":1,\"active\":true},{\"permalink\":\"26042\",\"name\":\"Verso Toilet & Bidet\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26042,\"wins\":114,\"id\":2991,\"fights\":142,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production, Verso Wall Mount&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the Verso basin line, Verso toilets use an in-wall tank and carrier system to provi\",\"global_rank\":2,\"active\":true},{\"permalink\":\"596641\",\"name\":\"Veo\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596641,\"wins\":370,\"id\":6041,\"fights\":474,\"manufacturer\":\"Kloeber\",\"description\":\"Veo. Simply more development possibilities.<br />\\nVeo emerged out of the requirements of its users. Thanks to the large range of versions available, it is the ideal work chair. Veo proves that good design and great seating comfort is also available at an \",\"global_rank\":3,\"active\":true},{\"permalink\":\"63943\",\"name\":\"One LineTavolo\",\"created_at\":\"2010-07-19T20:24:28Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":63943,\"wins\":335,\"id\":6311,\"fights\":435,\"manufacturer\":\"Artemide\",\"description\":\"Design: Ora Ito\\n\\nTable lamp with base or clamp.\\nConsistent minimalistic design.\\n\\nPlease note, that these products are not available in each country. Details upon request.\",\"global_rank\":4,\"active\":true},{\"permalink\":\"564832\",\"name\":\"ART BORDERS by ZAHA HADID (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564832,\"wins\":339,\"id\":6621,\"fights\":442,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"Zaha Hadid is one of the most famous, highly respected personalities in the international architectural and design scene. Her approach is visionary, and her spectacular architecture is innovative. She has been awarded many highly respected international p\",\"global_rank\":5,\"active\":true},{\"permalink\":\"59828\",\"name\":\"Barcelona&#174; Chair\",\"created_at\":\"2010-07-07T20:52:11Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":59828,\"wins\":151,\"id\":5991,\"fights\":198,\"manufacturer\":\"Knoll\",\"description\":\"Designed in 1930 by Ludwig Mies van der Rohe\\n\\nA companion-sized Barcelona chair and ottoman have been developed to accompany the tried-and-true classic. The child&#8217;s Barcelona chair and ottoman are 85&#38;#37 scale of the original and only available \",\"global_rank\":6,\"active\":true},{\"permalink\":\"35380\",\"name\":\"Toilets Starck 1\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35380,\"wins\":120,\"id\":2921,\"fights\":156,\"manufacturer\":\"Duravit\",\"description\":\"The metamorphosis of a bucket: both come in wall-mounted and floor-standing versions &#8211; openly admit their origins. Naturally, all toilets feature both Stop-and-Go function and 1.6 gallons flush &#8211; stingy when it comes to water consumption, but \",\"global_rank\":7,\"active\":true},{\"permalink\":\"46038\",\"name\":\"mod rocker\",\"created_at\":\"2010-02-18T22:25:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46038,\"wins\":528,\"id\":1211,\"fights\":695,\"manufacturer\":\"igloo play\",\"description\":\"This rocking chair will appeal to a child&#8217;s interest in movement as well as scale, organic form, material variation and color. The form and material invite kids to play, read or simply relax. As research indicates that children often fidget in stati\",\"global_rank\":8,\"active\":true},{\"permalink\":\"26054\",\"name\":\"C Toilets & Bidets\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26054,\"wins\":100,\"id\":3001,\"fights\":134,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production,&nbsp;C&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the&nbsp;C basin line,&nbsp;C toilets use an in-wall tank and carrier system to provide a&nbs\",\"global_rank\":9,\"active\":true},{\"permalink\":\"564892\",\"name\":\"COLANI (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564892,\"wins\":334,\"id\":6481,\"fights\":448,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"entwined, mirrored ornaments in the distinctive biodynamic design language by Luigi Colani<br />\\nexceptional designs in the spirit of water &#8211; from drops to flowing wave formations<br />\\nglimmer with a marked flip-flop effect: iridescent colors chang\",\"global_rank\":10,\"active\":true},{\"permalink\":\"94177\",\"name\":\"Romantica\",\"created_at\":\"2010-02-24T18:19:00Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":94177,\"wins\":112,\"id\":3221,\"fights\":151,\"manufacturer\":\"Colosanitary B.M. Limited\",\"description\":\"As its name <span class=\\\"caps\\\">ROMANTICA</span> implies, this is a beautifully stylish toilet suite. Gentle flowing curves, brilliant aura, &#8230; &#8230;, making all the difference to a bathroom.\",\"global_rank\":11,\"active\":true},{\"permalink\":\"21461\",\"name\":\" NIAGARA CHANDELIER 2 METRES\",\"created_at\":\"2010-02-18T22:20:31Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"updated_at\":\"2011-03-02T20:28:14Z\",\"dp_id\":21461,\"wins\":849,\"id\":1061,\"fights\":1139,\"manufacturer\":\"Lladr\xF3\",\"description\":\"Issue Year: 2006\\nSculptor: Dept. Decoraci\xF3n y Dise\xF1o\n\
28
- Size: 112 \xBC&#8221; x 78\xBE&#8221; \\n\\nA spectacular light installation measuring 2 meters in diameter. This masterpiece combines 300 amazing wings of porcelain sculptures with the latest in fibber optic te\",\"global_rank\":12,\"active\":true},{\"permalink\":\"35375\",\"name\":\"Toilets Caro\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35375,\"wins\":92,\"id\":3041,\"fights\":125,\"manufacturer\":\"Duravit\",\"description\":\"Standing proud: With its sleek, slimline cistern, the Caro floor-standing WC is reminiscent of a monolith. The wall-mounted WC and the urinal blend perfectly with the rest of the range.\",\"global_rank\":13,\"active\":true},{\"permalink\":\"12820\",\"name\":\"Liberty, Office Seating\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":12820,\"wins\":200,\"id\":4351,\"fights\":274,\"manufacturer\":\"Humanscale\",\"description\":\"A Revolution in Mesh Seating\\n\\nLiberty, with Form-Sensing Mesh Technology, is unlike any mesh chair you\x92ve seen or experienced. With its tri-panel construction, Liberty has the body-fitting contours that single-panel stretch mesh chairs simply can\x92t achiev\",\"global_rank\":14,\"active\":true},{\"permalink\":\"596591\",\"name\":\"Orbit\",\"created_at\":\"2010-07-12T22:32:54Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596591,\"wins\":188,\"id\":6021,\"fights\":259,\"manufacturer\":\"Kloeber\",\"description\":\"Orbit: The architecture of visible construction. Light and transparent features are evident in the Orbit&#8217;s Softnet backrest, which adapts to the individual user and supports the spine. The result is the characteristic Orbit &#8220;waterbed&#8221; ef\",\"global_rank\":15,\"active\":true},{\"permalink\":\"31677\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tAeron Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31677,\"wins\":305,\"id\":4621,\"fights\":420,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Don Chadwick and Bill Stumpf \\n\\n A Work Chair Solution\\nHigh-performance, long-term seating in three sizes with a full complement of adjustments and innovative suspension; for computer work, general office work, and casual or formal \",\"global_rank\":16,\"active\":true},{\"permalink\":\"79667\",\"name\":\"Tizi 8048/A\",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":79667,\"wins\":95,\"id\":3131,\"fights\":131,\"manufacturer\":\"Nameek's\",\"description\":\"Toilet with plastic technical curve. Toilet measures 21.2&#8243; &#215; 15.7&#8243;.\",\"global_rank\":17,\"active\":true},{\"permalink\":\"90465\",\"name\":\"BILGE LOUNGE\",\"created_at\":\"2010-07-18T03:25:40Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":90465,\"wins\":822,\"id\":6091,\"fights\":1135,\"manufacturer\":\"UHURU\",\"description\":\"The <span class=\\\"caps\\\">BILGE</span> <span class=\\\"caps\\\">LOUNGE</span> is made from reclaimed bourbon barrel staves and used truck springs. The K&#252;pe line is crafted from used bourbon barrels from Bardstown, Kentucky, the Bourbon Capital of the world. T\",\"global_rank\":18,\"active\":true},{\"permalink\":\"47737\",\"name\":\"Haworth Zody chair\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":47737,\"wins\":187,\"id\":4361,\"fights\":261,\"manufacturer\":\"Haworth\",\"description\":\"Great mesh-back task chair, ergonomic, Best of Neocon June 2005, Cradle to Cradle Gold certified product by MBDC (McDonough Braungart Design Chemistry, LLC ) October, 2005, USA .\",\"global_rank\":19,\"active\":true},{\"permalink\":\"48408\",\"name\":\"Mix LED Table Lamp\",\"created_at\":\"2010-07-19T20:28:39Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":48408,\"wins\":277,\"id\":6401,\"fights\":386,\"manufacturer\":\"Italian Design\",\"description\":\"Mix LED table lamp in white has a lightweight frame that uses the new LED Chip on Board technology. Available in aluminum. Stem in aluminum finish. One colored filter in the head allows for the regulation of the color temperature. When it is switched \",\"global_rank\":20,\"active\":true},{\"permalink\":\"67208\",\"name\":\"Tara Ultra\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1667292/Joe-the-Plumber-Meet-the-New-TARA-larger.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1667292/Joe-the-Plumber-Meet-the-New-TARA-larger.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":67208,\"wins\":600,\"id\":1561,\"fights\":842,\"manufacturer\":\"Dornbracht Americas, Inc.\",\"description\":\"TARA ULTRA &#8211; The new interpretation of TARA CLASSIC for the kitchen, The design concept that Tara Ultra shares with Tara and Tara Classic is evident right at first glance: The characteristic Tara spout geometry has been integrated into its own ki\",\"global_rank\":21,\"active\":true},{\"permalink\":\"70919\",\"name\":\"Flaper Base System Washstand\",\"created_at\":\"2010-02-19T05:13:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1773721/Base_NC30-2.JPG.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1773721/Base_NC30-2.JPG.jpg\",\"updated_at\":\"2011-03-07T20:59:15Z\",\"dp_id\":70919,\"wins\":598,\"id\":1281,\"fights\":838,\"manufacturer\":\"Falper WS Bath Collections\",\"description\":\"Falper Base System washstand/ console. Washbasins in cristalplant with marine plywood surround; oak, wenge, ebony, or rosewood\",\"global_rank\":22,\"active\":true},{\"permalink\":\"36695\",\"name\":\" SS114 - SoftClose seat \",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/816650/SS114_zoom.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/816650/SS114_zoom.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":36695,\"wins\":100,\"id\":3101,\"fights\":139,\"manufacturer\":\"TOTO\",\"description\":\"Features:\\n\\n SoftClose. The smart seat from TOTO \\n SoftClose Action Reduces Injury and Eliminates &#147;Toilet Seat Slam&#148; \\n Comfortable Ergonomic Design \\n Molded Bumpers \\n Solid High-Impact, High Gloss Polypropylene \\n Resistant to Chemicals an\",\"global_rank\":23,\"active\":true},{\"permalink\":\"31615\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tMirra Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/709698/P_MIR_L008.gif\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/709698/P_MIR_L008.gif\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31615,\"wins\":289,\"id\":4591,\"fights\":402,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Studio 7.5 \\n\\n Total Back Support\\nNo adjustment needed. The pliable, elastic TriFlex back supports the entire spine and conforms to size, posture, and movements.\\n\\nPassive PostureFit performance. A camber shape at the base of the bac\",\"global_rank\":24,\"active\":true},{\"permalink\":\"35381\",\"name\":\"Toilets Starck 2\",\"created_at\":\"2010-02-24T17:41:14Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796091/1107c93f5148f129_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796091/1107c93f5148f129_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35381,\"wins\":91,\"id\":2911,\"fights\":128,\"manufacturer\":\"Duravit\",\"description\":\"The WCs follow the same clear-cut design lines: two wall-mounted toilets with washdown or washout flush, various floor-standing combinations. Not to forget the bidets, floor-standing or wall-hung.\",\"global_rank\":25,\"active\":true}]"
27
+ body: "{\"products\":[{\"permalink\":\"596551\",\"name\":\"Ciello\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"updated_at\":\"2011-03-07T22:53:41Z\",\"dp_id\":596551,\"wins\":405,\"id\":6031,\"fights\":503,\"manufacturer\":\"Kloeber\",\"description\":\"Let us guide you through a world of perfection. Like in a tailor-made suit, the design and aesthetic features of the Ciello take into account the diversity of man&#8217;s natural body shapes. The award-winning design is communicated by exemplary craftsman\",\"global_rank\":1,\"active\":true},{\"permalink\":\"26042\",\"name\":\"Verso Toilet & Bidet\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26042,\"wins\":114,\"id\":2991,\"fights\":142,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production, Verso Wall Mount&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the Verso basin line, Verso toilets use an in-wall tank and carrier system to provi\",\"global_rank\":2,\"active\":true},{\"permalink\":\"596641\",\"name\":\"Veo\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596641,\"wins\":370,\"id\":6041,\"fights\":474,\"manufacturer\":\"Kloeber\",\"description\":\"Veo. Simply more development possibilities.<br />\\nVeo emerged out of the requirements of its users. Thanks to the large range of versions available, it is the ideal work chair. Veo proves that good design and great seating comfort is also available at an \",\"global_rank\":3,\"active\":true},{\"permalink\":\"63943\",\"name\":\"One LineTavolo\",\"created_at\":\"2010-07-19T20:24:28Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":63943,\"wins\":335,\"id\":6311,\"fights\":435,\"manufacturer\":\"Artemide\",\"description\":\"Design: Ora Ito\\n\\nTable lamp with base or clamp.\\nConsistent minimalistic design.\\n\\nPlease note, that these products are not available in each country. Details upon request.\",\"global_rank\":4,\"active\":true},{\"permalink\":\"564832\",\"name\":\"ART BORDERS by ZAHA HADID (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564832,\"wins\":339,\"id\":6621,\"fights\":442,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"Zaha Hadid is one of the most famous, highly respected personalities in the international architectural and design scene. Her approach is visionary, and her spectacular architecture is innovative. She has been awarded many highly respected international p\",\"global_rank\":5,\"active\":true},{\"permalink\":\"59828\",\"name\":\"Barcelona&#174; Chair\",\"created_at\":\"2010-07-07T20:52:11Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":59828,\"wins\":151,\"id\":5991,\"fights\":198,\"manufacturer\":\"Knoll\",\"description\":\"Designed in 1930 by Ludwig Mies van der Rohe\\n\\nA companion-sized Barcelona chair and ottoman have been developed to accompany the tried-and-true classic. The child&#8217;s Barcelona chair and ottoman are 85&#38;#37 scale of the original and only available \",\"global_rank\":6,\"active\":true},{\"permalink\":\"35380\",\"name\":\"Toilets Starck 1\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35380,\"wins\":120,\"id\":2921,\"fights\":156,\"manufacturer\":\"Duravit\",\"description\":\"The metamorphosis of a bucket: both come in wall-mounted and floor-standing versions &#8211; openly admit their origins. Naturally, all toilets feature both Stop-and-Go function and 1.6 gallons flush &#8211; stingy when it comes to water consumption, but \",\"global_rank\":7,\"active\":true},{\"permalink\":\"46038\",\"name\":\"mod rocker\",\"created_at\":\"2010-02-18T22:25:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46038,\"wins\":528,\"id\":1211,\"fights\":695,\"manufacturer\":\"igloo play\",\"description\":\"This rocking chair will appeal to a child&#8217;s interest in movement as well as scale, organic form, material variation and color. The form and material invite kids to play, read or simply relax. As research indicates that children often fidget in stati\",\"global_rank\":8,\"active\":true},{\"permalink\":\"26054\",\"name\":\"C Toilets & Bidets\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26054,\"wins\":100,\"id\":3001,\"fights\":134,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production,&nbsp;C&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the&nbsp;C basin line,&nbsp;C toilets use an in-wall tank and carrier system to provide a&nbs\",\"global_rank\":9,\"active\":true},{\"permalink\":\"564892\",\"name\":\"COLANI (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564892,\"wins\":334,\"id\":6481,\"fights\":448,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"entwined, mirrored ornaments in the distinctive biodynamic design language by Luigi Colani<br />\\nexceptional designs in the spirit of water &#8211; from drops to flowing wave formations<br />\\nglimmer with a marked flip-flop effect: iridescent colors chang\",\"global_rank\":10,\"active\":true},{\"permalink\":\"94177\",\"name\":\"Romantica\",\"created_at\":\"2010-02-24T18:19:00Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":94177,\"wins\":112,\"id\":3221,\"fights\":151,\"manufacturer\":\"Colosanitary B.M. Limited\",\"description\":\"As its name <span class=\\\"caps\\\">ROMANTICA</span> implies, this is a beautifully stylish toilet suite. Gentle flowing curves, brilliant aura, &#8230; &#8230;, making all the difference to a bathroom.\",\"global_rank\":11,\"active\":true},{\"permalink\":\"21461\",\"name\":\" NIAGARA CHANDELIER 2 METRES\",\"created_at\":\"2010-02-18T22:20:31Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"updated_at\":\"2011-03-02T20:28:14Z\",\"dp_id\":21461,\"wins\":849,\"id\":1061,\"fights\":1139,\"manufacturer\":\"Lladr\xF3\",\"description\":\"Issue Year: 2006\\nSculptor: Dept. Decoraci\xF3n y Dise\xF1o\n\
28
+ Size: 112 \xBC&#8221; x 78\xBE&#8221; \\n\\nA spectacular light installation measuring 2 meters in diameter. This masterpiece combines 300 amazing wings of porcelain sculptures with the latest in fibber optic te\",\"global_rank\":12,\"active\":true},{\"permalink\":\"35375\",\"name\":\"Toilets Caro\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35375,\"wins\":92,\"id\":3041,\"fights\":125,\"manufacturer\":\"Duravit\",\"description\":\"Standing proud: With its sleek, slimline cistern, the Caro floor-standing WC is reminiscent of a monolith. The wall-mounted WC and the urinal blend perfectly with the rest of the range.\",\"global_rank\":13,\"active\":true},{\"permalink\":\"12820\",\"name\":\"Liberty, Office Seating\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"updated_at\":\"2011-03-17T21:06:18Z\",\"dp_id\":12820,\"wins\":200,\"id\":4351,\"fights\":275,\"manufacturer\":\"Humanscale\",\"description\":\"A Revolution in Mesh Seating\\n\\nLiberty, with Form-Sensing Mesh Technology, is unlike any mesh chair you\x92ve seen or experienced. With its tri-panel construction, Liberty has the body-fitting contours that single-panel stretch mesh chairs simply can\x92t achiev\",\"global_rank\":14,\"active\":true},{\"permalink\":\"596591\",\"name\":\"Orbit\",\"created_at\":\"2010-07-12T22:32:54Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596591,\"wins\":188,\"id\":6021,\"fights\":259,\"manufacturer\":\"Kloeber\",\"description\":\"Orbit: The architecture of visible construction. Light and transparent features are evident in the Orbit&#8217;s Softnet backrest, which adapts to the individual user and supports the spine. The result is the characteristic Orbit &#8220;waterbed&#8221; ef\",\"global_rank\":15,\"active\":true},{\"permalink\":\"31677\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tAeron Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31677,\"wins\":305,\"id\":4621,\"fights\":420,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Don Chadwick and Bill Stumpf \\n\\n A Work Chair Solution\\nHigh-performance, long-term seating in three sizes with a full complement of adjustments and innovative suspension; for computer work, general office work, and casual or formal \",\"global_rank\":16,\"active\":true},{\"permalink\":\"79667\",\"name\":\"Tizi 8048/A\",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":79667,\"wins\":95,\"id\":3131,\"fights\":131,\"manufacturer\":\"Nameek's\",\"description\":\"Toilet with plastic technical curve. Toilet measures 21.2&#8243; &#215; 15.7&#8243;.\",\"global_rank\":17,\"active\":true},{\"permalink\":\"90465\",\"name\":\"BILGE LOUNGE\",\"created_at\":\"2010-07-18T03:25:40Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":90465,\"wins\":822,\"id\":6091,\"fights\":1135,\"manufacturer\":\"UHURU\",\"description\":\"The <span class=\\\"caps\\\">BILGE</span> <span class=\\\"caps\\\">LOUNGE</span> is made from reclaimed bourbon barrel staves and used truck springs. The K&#252;pe line is crafted from used bourbon barrels from Bardstown, Kentucky, the Bourbon Capital of the world. T\",\"global_rank\":18,\"active\":true},{\"permalink\":\"47737\",\"name\":\"Haworth Zody chair\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":47737,\"wins\":187,\"id\":4361,\"fights\":261,\"manufacturer\":\"Haworth\",\"description\":\"Great mesh-back task chair, ergonomic, Best of Neocon June 2005, Cradle to Cradle Gold certified product by MBDC (McDonough Braungart Design Chemistry, LLC ) October, 2005, USA .\",\"global_rank\":19,\"active\":true},{\"permalink\":\"48408\",\"name\":\"Mix LED Table Lamp\",\"created_at\":\"2010-07-19T20:28:39Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":48408,\"wins\":277,\"id\":6401,\"fights\":386,\"manufacturer\":\"Italian Design\",\"description\":\"Mix LED table lamp in white has a lightweight frame that uses the new LED Chip on Board technology. Available in aluminum. Stem in aluminum finish. One colored filter in the head allows for the regulation of the color temperature. When it is switched \",\"global_rank\":20,\"active\":true},{\"permalink\":\"67208\",\"name\":\"Tara Ultra\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1667292/Joe-the-Plumber-Meet-the-New-TARA-larger.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1667292/Joe-the-Plumber-Meet-the-New-TARA-larger.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":67208,\"wins\":600,\"id\":1561,\"fights\":842,\"manufacturer\":\"Dornbracht Americas, Inc.\",\"description\":\"TARA ULTRA &#8211; The new interpretation of TARA CLASSIC for the kitchen, The design concept that Tara Ultra shares with Tara and Tara Classic is evident right at first glance: The characteristic Tara spout geometry has been integrated into its own ki\",\"global_rank\":21,\"active\":true},{\"permalink\":\"70919\",\"name\":\"Flaper Base System Washstand\",\"created_at\":\"2010-02-19T05:13:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1773721/Base_NC30-2.JPG.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1773721/Base_NC30-2.JPG.jpg\",\"updated_at\":\"2011-03-07T20:59:15Z\",\"dp_id\":70919,\"wins\":598,\"id\":1281,\"fights\":838,\"manufacturer\":\"Falper WS Bath Collections\",\"description\":\"Falper Base System washstand/ console. Washbasins in cristalplant with marine plywood surround; oak, wenge, ebony, or rosewood\",\"global_rank\":22,\"active\":true},{\"permalink\":\"36695\",\"name\":\" SS114 - SoftClose seat \",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/816650/SS114_zoom.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/816650/SS114_zoom.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":36695,\"wins\":100,\"id\":3101,\"fights\":139,\"manufacturer\":\"TOTO\",\"description\":\"Features:\\n\\n SoftClose. The smart seat from TOTO \\n SoftClose Action Reduces Injury and Eliminates &#147;Toilet Seat Slam&#148; \\n Comfortable Ergonomic Design \\n Molded Bumpers \\n Solid High-Impact, High Gloss Polypropylene \\n Resistant to Chemicals an\",\"global_rank\":23,\"active\":true},{\"permalink\":\"31615\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tMirra Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/709698/P_MIR_L008.gif\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/709698/P_MIR_L008.gif\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31615,\"wins\":289,\"id\":4591,\"fights\":402,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Studio 7.5 \\n\\n Total Back Support\\nNo adjustment needed. The pliable, elastic TriFlex back supports the entire spine and conforms to size, posture, and movements.\\n\\nPassive PostureFit performance. A camber shape at the base of the bac\",\"global_rank\":24,\"active\":true},{\"permalink\":\"35381\",\"name\":\"Toilets Starck 2\",\"created_at\":\"2010-02-24T17:41:14Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796091/1107c93f5148f129_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796091/1107c93f5148f129_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35381,\"wins\":91,\"id\":2911,\"fights\":128,\"manufacturer\":\"Duravit\",\"description\":\"The WCs follow the same clear-cut design lines: two wall-mounted toilets with washdown or washout flush, various floor-standing combinations. Not to forget the bidets, floor-standing or wall-hung.\",\"global_rank\":25,\"active\":true},{\"permalink\":\"54701\",\"name\":\"PAR-1 Linen\",\"created_at\":\"2010-07-28T17:06:33Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1269371/PAR-1_20Linen.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1269371/PAR-1_20Linen.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":54701,\"wins\":322,\"id\":6641,\"fights\":448,\"manufacturer\":\"Silk Dynasty\",\"description\":\"Specifications:\\nWidth: 36 inches\\nRepeat: 17.5 inches\\nContent: Glazed ceramic on canvas/embossed/fabric backing\\nMinimum Order: 12 yards\\nAvailable in 3 or 4-yard panels\\n FOB : Phoenix, AZ\\n ASTM E -84: Class A\\nCustom Colors: Available\",\"global_rank\":26,\"active\":true},{\"permalink\":\"52723\",\"name\":\"Amia&#8482;\",\"created_at\":\"2010-02-25T15:52:16Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1199459/c5386a6793d01fc6ef4f0b33b134b2c8.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1199459/c5386a6793d01fc6ef4f0b33b134b2c8.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":52723,\"wins\":174,\"id\":4571,\"fights\":242,\"manufacturer\":\"Steelcase\",\"description\":\"Amia&#8482; is a chair with a secret.\\nBeneath the Amia chair&#8217;s upholstery, inside its sleek backrest, there&#8217;s a form of our unique comfort system called LiveLumbar&#8482; technology. You may not see it, but you&#8217;ll certainly feel it. As y\",\"global_rank\":27,\"active\":true},{\"permalink\":\"59048\",\"name\":\"OMAX Wooden Faucet - Nottingham Sink mixer Walnut - ITALY -\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1366937/8127-NOCE2--LEGGERA.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1366937/8127-NOCE2--LEGGERA.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":59048,\"wins\":622,\"id\":1681,\"fights\":884,\"manufacturer\":\"Omax SRL - ITALIA\",\"description\":\"Omax from Italy have created the WOODEN FAUCETS -MIXER. \\n\\nThe wood is natural, covered with a special mixture to grant the long life of articles. This is an international Patent of \x93INDUSTRIAL IDEA \x94. Are at your disposal the Beech wood, Cherry, Teak \",\"global_rank\":28,\"active\":true},{\"permalink\":\"132254\",\"name\":\"GRANDE PAPILIO Armchair and Ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":132254,\"wins\":268,\"id\":521,\"fights\":378,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and Ottoman<br />\\nNaoto Fukasawa (2009)<br />\\n<br />\\nAs with the original Papilio chair, and not only due to the zipper along the back, the Grande Papilio Armchair appears as a single form made from a single material. Its shape is a fluid design\",\"global_rank\":29,\"active\":true},{\"permalink\":\"101535\",\"name\":\"Starck 1 #023309 Toilet close-coupled\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2578278/47972_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2578278/47972_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":101535,\"wins\":97,\"id\":2791,\"fights\":137,\"manufacturer\":\"Duravit\",\"description\":\"The metamorphosis of a bucket: both come in wall-mounted and floor-standing versions &#8211; openly admit their origins. Naturally, all toilets feature both Stop-and-Go function and 1.6 gallons flush &#8211; stingy when it comes to water consumption, but \",\"global_rank\":30,\"active\":true},{\"permalink\":\"116485\",\"name\":\"ONE PULL-DOWN KITCHEN FAUCET\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3342019/zaa21147.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3342019/zaa21147.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":116485,\"wins\":617,\"id\":1671,\"fights\":878,\"manufacturer\":\"Kallista\",\"description\":\"Starting at: $902.00*<br />\\n<br />\\nSophisticated and modern, the One&#8482; collection infuses minimalist design with elements of character<br />\\nIntegral sprayhead provides both laminar flow and spray functions at the touch of a button<br />\\nRemote valve\",\"global_rank\":31,\"active\":true},{\"permalink\":\"604221\",\"name\":\"Stryde\",\"created_at\":\"2010-05-26T21:05:44Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12649291/strydeprofileimage-image1-1272646283_tn.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12649291/strydeprofileimage-image1-1272646283_tn.jpg\",\"updated_at\":\"2011-03-04T22:26:47Z\",\"dp_id\":604221,\"wins\":1553,\"id\":5491,\"fights\":2208,\"manufacturer\":\"Loewenstein\",\"description\":\"Designed by Michael Wolk, Stryde is reminiscent of international lounge chairs from the mid-20th-century. Characterized by clean, simple design, interesting angles &amp; mix of wood &amp; upholstery give it a classic style.\",\"global_rank\":32,\"active\":true},{\"permalink\":\"23352\",\"name\":\"X99 Task Chair\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/440809/210841-07woBKGD-main.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/440809/210841-07woBKGD-main.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":23352,\"wins\":173,\"id\":4401,\"fights\":247,\"manufacturer\":\"Haworth\",\"description\":\"X99 is a complete seating system for creating a cohesive look throughout workspaces. The line includes a mid-back task, high-back executive, sled-base guest, advanced seminar and a seminar chair with nesting storage capability. \\n\\n X99 offers a brilliant\",\"global_rank\":33,\"active\":true},{\"permalink\":\"67827\",\"name\":\"Iside Module \\\"C\\\" Bath Vanity/ Washstand\",\"created_at\":\"2010-02-19T05:13:24Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1683298/3.1E.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1683298/3.1E.jpg\",\"updated_at\":\"2011-03-07T20:59:18Z\",\"dp_id\":67827,\"wins\":552,\"id\":1311,\"fights\":780,\"manufacturer\":\"WS Bath Collections\",\"description\":\"Iside Module &#8220;C&#8221; bath vanity/ washstand.\",\"global_rank\":34,\"active\":true},{\"permalink\":\"329821\",\"name\":\"Hope\",\"created_at\":\"2010-10-06T15:38:48Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/7990391/Copy_of_hope_4.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/7990391/Copy_of_hope_4.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":329821,\"wins\":244,\"id\":8311,\"fights\":351,\"manufacturer\":\"Luceplan USA\",\"description\":\"Hope (name inspired by a famous, strikingly beautiful<br />\\ndiamond with over four hundred karats), project by Francisco<br />\\nGomez Paz and Paolo Rizzatto, presents the magic of<br />\\ntraditional lamps. A series of thin, flat plastic Fresnel lenses, crea\",\"global_rank\":35,\"active\":true},{\"permalink\":\"26031\",\"name\":\"Zero Toilets & Bidets\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528128/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528128/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26031,\"wins\":96,\"id\":3011,\"fights\":138,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production, Zero&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the Zero basin line, Zero toilets use an in-wall tank and carrier system to provide a&nbsp;slee\",\"global_rank\":36,\"active\":true},{\"permalink\":\"101585\",\"name\":\"US Toilets #016301 One-piece toilet\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2578928/48423_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2578928/48423_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":101585,\"wins\":18,\"id\":2581,\"fights\":26,\"manufacturer\":\"Duravit\",\"description\":\"Starck 2 One-piece toilet 1,6 gpf (6 liters), 3&quot;/80 mm flapper valve, 305 mm/12&quot; rough-in, bolt caps included, <span class=\\\"caps\\\">CIAPMO</span> listed, jet action, Mounting instruction included, US version toilet, vertical outlet, with Single Fl\",\"global_rank\":37,\"active\":true},{\"permalink\":\"124524\",\"name\":\"Vanilla Chair\",\"created_at\":\"2010-02-25T15:32:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3614639/vanilla_family.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3614639/vanilla_family.jpg\",\"updated_at\":\"2011-03-02T20:28:15Z\",\"dp_id\":124524,\"wins\":186,\"id\":4191,\"fights\":266,\"manufacturer\":\"KEILHAUER\",\"description\":\"Vanilla is an executive task or boardroom chair, with timeless design that enables it to fit into any environment with ease and grace.<br />\\nThe profile is sleek and sophisticated, yet it offers supreme comfort and support, with Keilhauer&#8217;s innovati\",\"global_rank\":38,\"active\":true},{\"permalink\":\"42082\",\"name\":\"METROPOLITAN Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42082,\"wins\":245,\"id\":141,\"fights\":352,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchairs<br />\\nDesign Jeffrey Bernett (2003) <br />\\n<br />\\nSeats that flow uninterrupted into the armrests are the hallmark of both the small Metropolitan armchair and the relax armchair. The small armchair on a revolving aluminium base with four spoke\",\"global_rank\":39,\"active\":true},{\"permalink\":\"23389\",\"name\":\"X99 Seminar\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/444108/X99_AdvancedSeminarBackolmain.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/444108/X99_AdvancedSeminarBackolmain.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":23389,\"wins\":162,\"id\":4371,\"fights\":233,\"manufacturer\":\"Haworth\",\"description\":\"X99 is a complete seating system for creating a cohesive look throughout workspaces. The line includes a mid-back task, high-back executive, sled-base guest, advanced seminar&nbsp;and a seminar chair with nesting storage capability. \\n\\n X99 offers a bril\",\"global_rank\":40,\"active\":true},{\"permalink\":\"46628\",\"name\":\"K-6331 - Evoke&#153; single-control pullout kitchen faucet\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/991172/ccc20662.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/991172/ccc20662.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46628,\"wins\":573,\"id\":1731,\"fights\":840,\"manufacturer\":\"Kohler\",\"description\":\"Evoke&#8482; single-control pullout kitchen faucet\\n\\n Evoke Pullout Kitchen faucets deliver a fresh, streamlined appeal to today&#8217;s kitchens, creating a sense of charm and warmth so often lost in contemporary design. Available in two sizes, the single\",\"global_rank\":41,\"active\":true},{\"permalink\":\"117989\",\"name\":\"Edie Freestanding Resin Air Bath Tub\",\"created_at\":\"2010-02-25T00:13:09Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3442889/9294_l.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3442889/9294_l.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":117989,\"wins\":206,\"id\":3481,\"fights\":299,\"manufacturer\":\"Signature Aire\",\"description\":\"Edie Freestanding Resin Air Bath Tub<br />\\nThis freestanding resin air bath tub is perfect for modern homes with its sloped end, contemporary shape, and matte white exterior. Equipped with luxurious air spa technology. Pair with a freestanding tub filler \",\"global_rank\":42,\"active\":true},{\"permalink\":\"118030\",\"name\":\"Winifred Freestanding Resin Air Bath Tub\",\"created_at\":\"2010-02-25T00:13:09Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3447871/9289_l.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3447871/9289_l.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":118030,\"wins\":219,\"id\":3281,\"fights\":321,\"manufacturer\":\"Signature Aire\",\"description\":\"Winifred Freestanding Resin Air Bath Tub<br />\\nThis resin air bath tub is equipped with an air massage system that will gently and efficiently massage the body giving you the ultimate bathing experience. It&#8217;s simple and elegant design enhances both \",\"global_rank\":43,\"active\":true},{\"permalink\":\"60531\",\"name\":\"Maly Bed\",\"created_at\":\"2010-02-18T21:43:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1415112/peter_maly_bed_6e6806d67cdb486956b4869d493a9668_r1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1415112/peter_maly_bed_6e6806d67cdb486956b4869d493a9668_r1.jpg\",\"updated_at\":\"2011-03-02T20:28:15Z\",\"dp_id\":60531,\"wins\":377,\"id\":771,\"fights\":550,\"manufacturer\":\"Ligne Roset\",\"description\":\"Rest assured in this heavenly bed with its low wooden or upholstered frame and its new lacquered anthracite base. Notable features include movable back cushions, trays, and pivoting tables. Available in natural, dark brown, or ebony oak and a host of fabr\",\"global_rank\":44,\"active\":true},{\"permalink\":\"46630\",\"name\":\"K-647 - Simplice&#153; pull-down kitchen sink faucet\",\"created_at\":\"2010-02-19T05:42:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/991206/ccc21208.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/991206/ccc21208.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46630,\"wins\":574,\"id\":1701,\"fights\":839,\"manufacturer\":\"Kohler\",\"description\":\"Simplice&#8482; pull-down kitchen sink faucet\\n\\n The new Simplice pull-down kitchen faucet beautifully combines an elegant transitional high-arch design with exceptional ergonomics and functionality to deliver a truly innovative faucet solution for a wide \",\"global_rank\":45,\"active\":true},{\"permalink\":\"31682\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tEames Aluminum Group & Soft Pad Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/715163/P_EAG_D099.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/715163/P_EAG_D099.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31682,\"wins\":249,\"id\":4651,\"fights\":365,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Charles and Ray Eames \\n\\n Inventive Comfort \\nUnique suspension: A continuous piece of seat-back upholstery is stretched tautly between aluminum side ribs, creating a firm and flexible sitting pocket that subtly conforms to the body\",\"global_rank\":46,\"active\":true},{\"permalink\":\"13856\",\"name\":\"Grail Single-hole Kitchen 185\",\"created_at\":\"2010-02-19T05:42:46Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/129088/185-SS.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/129088/185-SS.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":13856,\"wins\":580,\"id\":1531,\"fights\":848,\"manufacturer\":\"Delta Faucet\",\"description\":\"Kitchen Series\\n\\n STANDARD SPECIFICATIONS :\\n Single handle kitchen faucet.\\n Ceramic cartridge.\\n 1 hole installation.\\n 8.275&#8221; (210 mm) long reach on spout.\\n Maximum 1.890&#8221; (48 mm) deck thickness.\\n Colour coded plug button on handle for\\nhot\",\"global_rank\":47,\"active\":true},{\"permalink\":\"109537\",\"name\":\"Generation by Knoll\",\"created_at\":\"2010-02-25T15:13:42Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2948886/7456_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2948886/7456_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":109537,\"wins\":175,\"id\":4041,\"fights\":255,\"manufacturer\":\"Knoll\",\"description\":\"It\x92s not a chair. It\x92s a movement.<br />\\nGeneration by Knoll offers a new standard of comfort and unrestrained movement, supporting the range of postures and work styles typical of today\x92s workplace. Designed by Formway Design, Generation takes the idea o\",\"global_rank\":48,\"active\":true},{\"permalink\":\"45945\",\"name\":\"playdate table + stools | sale 40% off\",\"created_at\":\"2010-02-18T22:25:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/971895/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/971895/large.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":45945,\"wins\":418,\"id\":1161,\"fights\":607,\"manufacturer\":\"nurseryworks\",\"description\":\"Designed by Lawson-Fenning for Nurseryworks, the Playdate table + stools is smart design and forward functionality make this table &#38; stool set a perfect playtime addition to any modern space. A circular table with x-shaped base accommodates 4 pie-piec\",\"global_rank\":49,\"active\":true},{\"permalink\":\"36653\",\"name\":\" CST794SF - Nexus Toilet \",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/816075/CST794SF_zoom.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/816075/CST794SF_zoom.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":36653,\"wins\":93,\"id\":2521,\"fights\":137,\"manufacturer\":\"TOTO\",\"description\":\"Features:\\n\\n Decorative close coupled two piece toilet\\n The Nexus Suite: Matching toilet, lavatories and tub \\n Universal height for maximum comfort\\n G-Max: Quiet, powerful, commercial grade flushing performance \\n Upgrade with a Traditional SoftClose s\",\"global_rank\":50,\"active\":true},{\"permalink\":\"101607\",\"name\":\"Vero #221709 Toilet wall mounted\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2579214/51068_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2579214/51068_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":101607,\"wins\":89,\"id\":2831,\"fights\":132,\"manufacturer\":\"Duravit\",\"description\":\"Toilets Toilet wall mounted ** means 00 for white, 10 for chrome, washdown model<br />\\n<br />\\nSanitary ceramics with the special WonderGliss surface finish will remain clean and attractive-looking for a long time to come.\",\"global_rank\":51,\"active\":true},{\"permalink\":\"23353\",\"name\":\"Improv Tag\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/440856/IMPROV_20TAG2-main.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/440856/IMPROV_20TAG2-main.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":23353,\"wins\":138,\"id\":4391,\"fights\":204,\"manufacturer\":\"Haworth\",\"description\":\"You spend most of the business day in your chair &ndash; your chair should reflect your personality and the way you like to work. Improv Tag&rsquo;s many features such as the sliding seat pan, wide range of arm styles and ergonomic, solid-top backrest in \",\"global_rank\":52,\"active\":true},{\"permalink\":\"564772\",\"name\":\"Alice Jeans (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11752232/alice_jeans_big.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11752232/alice_jeans_big.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564772,\"wins\":295,\"id\":6611,\"fights\":436,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"young design in strong fashion colors<br />\\njeans as patchwork or stripes<br />\\nstylized, large repeat leaves<br />\\nflowing lines and soft stripes<br />\\nop-art patterns and horizonally aligned wavestructures<br />\\nmetallic and lacquered effects<br />\\nlarg\",\"global_rank\":53,\"active\":true},{\"permalink\":\"597321\",\"name\":\"Mingle\",\"created_at\":\"2010-05-25T20:23:07Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12414851/Mingle.jpeg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12414851/Mingle.jpeg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":597321,\"wins\":1815,\"id\":5211,\"fights\":2737,\"manufacturer\":\"SurfaceWorks\",\"description\":\"Mingle, a conferencing table designed around teleconferencing, small group collaboration, learning, and brainstorming, allows for two separate meetings at once as it supports a 27-60\x94 screen &amp; opposite side whiteboard.\",\"global_rank\":54,\"active\":true},{\"permalink\":\"101495\",\"name\":\"Caro #015609 Toilet wall mounted\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2577758/43522_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2577758/43522_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":101495,\"wins\":95,\"id\":2811,\"fights\":143,\"manufacturer\":\"Duravit\",\"description\":\"Standing proud: With its sleek, slimline cistern, the Caro floor-standing WC is reminiscent of a monolith.<br />\\n The wall-mounted WC and the urinal blend perfectly with the rest of the range.<br />\\n<br />\\nToilets Toilet wall mounted ** means 00 for white\",\"global_rank\":55,\"active\":true},{\"permalink\":\"67723\",\"name\":\"T & L Oceanus Bathtub\",\"created_at\":\"2010-02-25T00:17:16Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3753266/White_Oceanus_Pic.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3753266/White_Oceanus_Pic.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":67723,\"wins\":186,\"id\":3801,\"fights\":278,\"manufacturer\":\"T & L International Inc.\",\"description\":\"T &amp; L Oceanus Freestanding Luxury Lifestyle bathtub is our second largest, and most popular bathtub. Measuring L70&quot; x W39.5&quot; x H24&quot;, this bathtub allows for two people to comfortably bathe in generous soaking space. Our Mastercast engin\",\"global_rank\":56,\"active\":true},{\"permalink\":\"82487\",\"name\":\"Arne Freestanding Bathtub\",\"created_at\":\"2010-02-25T00:17:16Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2069154/Arne_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2069154/Arne_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":82487,\"wins\":230,\"id\":3791,\"fights\":348,\"manufacturer\":\"Rapsel\",\"description\":\"Free standing titanic resin bath tub designed by Soda Design. Overflow and European pop-up drain included. \",\"global_rank\":57,\"active\":true},{\"permalink\":\"42088\",\"name\":\"RADAR\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42088,\"wins\":254,\"id\":191,\"fights\":380,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign James Irvine (2001) <br />\\n<br />\\nThe structure rotates on a 4-spoke nickeled or graphite varnished metal base and is equipped with an adjustable headrest and an ottoman. The spirit of the piece was best expressed by the designer h\",\"global_rank\":58,\"active\":true},{\"permalink\":\"118025\",\"name\":\"Susanna Freestanding Resin Slipper Air Bath Tub\",\"created_at\":\"2010-02-25T00:13:09Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3447276/9290_l.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3447276/9290_l.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":118025,\"wins\":231,\"id\":3311,\"fights\":349,\"manufacturer\":\"Signature Aire\",\"description\":\"Susanna Freestanding Resin Slipper Air Bath Tub<br />\\nSubmerge your body in a therapeutic stream of air bubbles with this stylish slipper air bath tub. Pair with a freestanding tub filler or a wall-mounted faucet to complete your look.<br />\\nSignature Air\",\"global_rank\":59,\"active\":true},{\"permalink\":\"117930\",\"name\":\"Zain Dual Flush Siphonic One-Piece Toilet\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3436974/12134_l.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3436974/12134_l.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":117930,\"wins\":89,\"id\":2621,\"fights\":134,\"manufacturer\":\"Whittington Collection\",\"description\":\"Zain Dual Flush Siphonic One-Piece Toilet<br />\\nThis stylish one piece toilet features an ultra modern design, ideal for a modern bathroom. The Zain toilet features dual flush technology, perfect for cutting back on water usage.<br />\\nWhittington Collecti\",\"global_rank\":60,\"active\":true},{\"permalink\":\"509451\",\"name\":\"Mercury Suspension Light by Artemide at Contemporarylightingdecor.com\",\"created_at\":\"2010-08-18T04:32:19Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/10459811/1397018A_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/10459811/1397018A_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":509451,\"wins\":329,\"id\":7161,\"fights\":497,\"manufacturer\":\"Artemide at Contemporarylightingdecor.com\",\"description\":\"Discount Code: DESIGNER15 \x96 http://www.contemporarylightingdecor.com/1397018A.html \x96 A ceiling fixture that places a floating assembly of large pebbles below a simple modern aluminium disc. These in turn reflect each other bouncing light between their ta\",\"global_rank\":61,\"active\":true},{\"permalink\":\"42076\",\"name\":\"TUFTY-TIME Modular Sofas\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901912/MD-001_Tufty_Time_04.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901912/MD-001_Tufty_Time_04.jpg\",\"updated_at\":\"2011-03-08T14:31:17Z\",\"dp_id\":42076,\"wins\":324,\"id\":91,\"fights\":490,\"manufacturer\":\"B&B Italia\",\"description\":\"Modular sofas<br />\\n Design Patricia Urquiola (2005) <br />\\n<br />\\n Tufty-Time is not only a re-interpretation of the past, but also an excellent, innovative solution for such issues as modularity, comfort and removable covers. Tufty-Time is an informal\",\"global_rank\":62,\"active\":true},{\"permalink\":\"71328\",\"name\":\"SUSO Shelving\",\"created_at\":\"2010-02-25T23:34:58Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1778616/media.nl_jsessionid_0a0104451f43e19da7786fc9428a893eccb304331abb.e3eSbNmQaheLe38Say0.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1778616/media.nl_jsessionid_0a0104451f43e19da7786fc9428a893eccb304331abb.e3eSbNmQaheLe38Say0.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":71328,\"wins\":302,\"id\":5151,\"fights\":454,\"manufacturer\":\"MARTINEZ OTERO\",\"description\":\"<span class=\\\"caps\\\">DESIGN</span> BY<br />\\n<span class=\\\"caps\\\">MIGUEL</span> <span class=\\\"caps\\\">ANGEL</span> <span class=\\\"caps\\\">CIGANDA</span> <span class=\\\"caps\\\">FOR</span> <span class=\\\"caps\\\">MARTINEZ</span> <span class=\\\"caps\\\">OTERO</span><br />\\n<span class\",\"global_rank\":63,\"active\":true},{\"permalink\":\"104633\",\"name\":\"Focus: Task\",\"created_at\":\"2010-02-25T15:06:06Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2632408/9_5623Y_a92_B1_B3_big.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2632408/9_5623Y_a92_B1_B3_big.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":104633,\"wins\":171,\"id\":4021,\"fights\":257,\"manufacturer\":\"Sit on It Seating\",\"description\":\"Focus your attention on a task chair that skillfully combines clean design with ergonomic comfort and surprising affordability.<br />\\nWith its clean lines, broad array of options, quality, and comfort, Focus makes an ideal solution for applications in hig\",\"global_rank\":64,\"active\":true},{\"permalink\":\"124512\",\"name\":\"reeve\",\"created_at\":\"2010-02-25T15:32:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3614471/7201.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3614471/7201.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":124512,\"wins\":151,\"id\":4241,\"fights\":230,\"manufacturer\":\"KEILHAUER\",\"description\":\"Designed by<br />\\nPatty Johnson<br />\\nReeve is an elegant office or conference chair with a simple, casually formal aesthetic. Two back heights, two arm styles, and two base finishes can be specified. A<br />\\nsled-based side chair<br />\\nis also available.\",\"global_rank\":65,\"active\":true},{\"permalink\":\"42083\",\"name\":\"ANDY Sofa\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902549/MD-001_AN370AS.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902549/MD-001_AN370AS.jpg\",\"updated_at\":\"2011-03-08T20:31:10Z\",\"dp_id\":42083,\"wins\":332,\"id\":151,\"fights\":505,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas<br />\\n Design Paolo Piva (2002) <br />\\n<br />\\n Andy interprets the theme of the sofa without supports and is designed to meet a host of comfort and posture requirements thanks to its easy-to-use mechanical systems. Its distinguishing feature is a \",\"global_rank\":66,\"active\":true},{\"permalink\":\"36651\",\"name\":\" MS990CGR &#150; Neorest 600 \",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/816047/neorest_zoom.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/816047/neorest_zoom.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":36651,\"wins\":107,\"id\":3111,\"fights\":163,\"manufacturer\":\"TOTO\",\"description\":\"Features:\\n\\n Sleek, tankless, one-piece toilet with integrated Washlet seat. \\n New Cyclone Flushing system, no waiting for refill, no refill noise. \\n Skirted styling with concealed trapway for easy cleaning\\n Integrated Washlet features front and rear w\",\"global_rank\":67,\"active\":true},{\"permalink\":\"67882\",\"name\":\"Reverse RE 10 C Bath Vanity\",\"created_at\":\"2010-02-19T05:13:24Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1684988/RE_11C.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1684988/RE_11C.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":67882,\"wins\":550,\"id\":1331,\"fights\":838,\"manufacturer\":\"WS Bath Collections\",\"description\":\"Reverse RE 10 C bath vanity. Washbasin in white solid surface material. Cabinet in wenge, or lacquered white or red.\",\"global_rank\":68,\"active\":true},{\"permalink\":\"71596\",\"name\":\"Synchrony\",\"created_at\":\"2010-02-25T15:44:47Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1782857/Synchrony_Chair.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1782857/Synchrony_Chair.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":71596,\"wins\":151,\"id\":4421,\"fights\":230,\"manufacturer\":\"Luxy\",\"description\":\"Synchronized movement and oscillation in this prestigious executive office chair. Versions include high-back, standard and sled based cantilever visitors chairs. Aluminum detailing\",\"global_rank\":69,\"active\":true},{\"permalink\":\"128073\",\"name\":\"Moebius\",\"created_at\":\"2010-07-18T03:25:40Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3668118/moebius-onyx-design-armchair-rattan-water-hyacinth-6large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3668118/moebius-onyx-design-armchair-rattan-water-hyacinth-6large.jpg\",\"updated_at\":\"2011-03-07T22:47:33Z\",\"dp_id\":128073,\"wins\":754,\"id\":6111,\"fights\":1160,\"manufacturer\":\"Onyx Export Co. Ltd. \",\"description\":\"Double armchair, twice the pleasure. Romantic head-to-head or endless conversation, enjoy duets in this endless armchair made of sustainable material.\",\"global_rank\":70,\"active\":true},{\"permalink\":\"60528\",\"name\":\"Cineline\",\"created_at\":\"2010-02-18T21:43:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1415073/php7wa1fr.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1415073/php7wa1fr.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":60528,\"wins\":360,\"id\":791,\"fights\":553,\"manufacturer\":\"Ligne Roset\",\"description\":\"The luxurious Cineline bed is complemented by an embossed ebony veneer, leather-covered, or upholstered headboard. The headboard may be purchased separately from the bed frame but must be mounted to a wall. The bed frame is available in natural or ebony o\",\"global_rank\":71,\"active\":true},{\"permalink\":\"67952\",\"name\":\"BC 03\",\"created_at\":\"2010-02-25T00:15:24Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1686769/BC_03.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1686769/BC_03.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":67952,\"wins\":215,\"id\":3731,\"fights\":326,\"manufacturer\":\"WETSTYLE\",\"description\":\"From the CUBE collection, this bathtub model displays 3 finished sides. Offering the identical interior length of our BC 02 model, its outer dimensions are more compact. As spacious as it is luxurious, 2 users can completely submerge their bodies when\",\"global_rank\":72,\"active\":true},{\"permalink\":\"79655\",\"name\":\"Tizi 8049\",\"created_at\":\"2010-02-24T21:31:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1997713/tizi8049.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1997713/tizi8049.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":79655,\"wins\":86,\"id\":3261,\"fights\":131,\"manufacturer\":\"Nameek's\",\"description\":\"Suspended bidet that measures 21.2&#8243; &#215; 15.7&#8243;.\",\"global_rank\":73,\"active\":true},{\"permalink\":\"101553\",\"name\":\"Starck 3 #220009 Toilet wall mounted\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2578512/49226_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2578512/49226_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":101553,\"wins\":82,\"id\":2511,\"fights\":125,\"manufacturer\":\"Duravit\",\"description\":\"The toilet: fundamental part of every bathroom and yet often neglected by most designers. Not so by Philippe Starck for Duravit. Treated with the same care as everything else, the Starck 3 toilet with concealed trap becomes the unmistakable highlight of t\",\"global_rank\":74,\"active\":true},{\"permalink\":\"46067\",\"name\":\"modern chair\",\"created_at\":\"2010-02-18T22:27:25Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/977745/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/977745/large.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46067,\"wins\":415,\"id\":1261,\"fights\":634,\"manufacturer\":\"boom design\",\"description\":\"Available in Chocolate, Poppy and Sea Green, this modern chair bursts to life in your children&#8217;s collection. Its simple shape, and robust design perfectly fit your kids lives. Inspire them with modern design, and cherished addition to your home.Come\",\"global_rank\":75,\"active\":true},{\"permalink\":\"35373\",\"name\":\"Toilets 2nd floor\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/795971/109cff8188767829_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/795971/109cff8188767829_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35373,\"wins\":88,\"id\":3031,\"fights\":136,\"manufacturer\":\"Duravit\",\"description\":\"The Bauhaus maxim &#8221;less is more&#8220; may date back to the 1920s, but it&#8217;s never been truer than it is today &#8211; thanks to 2nd floor..\",\"global_rank\":76,\"active\":true},{\"permalink\":\"604331\",\"name\":\"Overtones Collection\",\"created_at\":\"2010-06-07T18:26:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12650721/Patcraft_OvertonesEntry-image1-1273801946_tn.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12650721/Patcraft_OvertonesEntry-image1-1273801946_tn.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":604331,\"wins\":2992,\"id\":5981,\"fights\":4632,\"manufacturer\":\"Patcraft\",\"description\":\"Bold multicolor tip-sheared accents combined with a tonal color palette exude panache in Overtones. Layered patterning provides visual modulation of frequency that is sure to sing within your interior space.<br />\\n\",\"global_rank\":77,\"active\":true},{\"permalink\":\"36602\",\"name\":\" CST414M - Aquia&#153; Dual Flush Toilet \",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/815364/CST414M_zoom.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/815364/CST414M_zoom.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":36602,\"wins\":88,\"id\":3061,\"fights\":136,\"manufacturer\":\"TOTO\",\"description\":\"Features:\\n\\n Elongated skirted design, two piece toilet.\\n Dual-Max&#153; Flushing System.\\n Push button style flush option.\\n Upgrade with an Oval SoftClose seat. \\n Large, 2-1/8&#8221; fully glazed trapway.\\n Five Year Limited Warranty \\n\\n Decorative, hi\",\"global_rank\":78,\"active\":true},{\"permalink\":\"67823\",\"name\":\"Nara 65.55.01 Bath Vanity/ Washstand\",\"created_at\":\"2010-02-19T05:13:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1683246/1.2.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1683246/1.2.jpg\",\"updated_at\":\"2011-03-02T20:28:15Z\",\"dp_id\":67823,\"wins\":530,\"id\":1291,\"fights\":823,\"manufacturer\":\"WS Bath Collections\",\"description\":\"Nara bath vanity/ washstand in tabac wood. Washbasin in velvet white.\",\"global_rank\":79,\"active\":true},{\"permalink\":\"208601\",\"name\":\"LAZY Outdoor Armchair/Chaise Longue\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":208601,\"wins\":62,\"id\":531,\"fights\":96,\"manufacturer\":\"B&B Italia\",\"description\":\"Lazy Armchair/Chaise Longue<br />\\nDesign Patricia Urquiola (2009)<br />\\n<br />\\nSix years after its initial presentation into the home collection, Lazy has now becmoe a part of the outdoor collection. The stainless steel frame of this chair allows, through\",\"global_rank\":80,\"active\":true},{\"permalink\":\"79608\",\"name\":\"Planet 8105\",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1996098/planet8105.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1996098/planet8105.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":79608,\"wins\":95,\"id\":3181,\"fights\":147,\"manufacturer\":\"Nameek's\",\"description\":\"Suspended toilet that measures 19.7&#8243; &#215; 17.7&#8243;.\",\"global_rank\":81,\"active\":true},{\"permalink\":\"80088\",\"name\":\"Life Chair\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2006463/6946_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2006463/6946_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":80088,\"wins\":261,\"id\":4701,\"fights\":406,\"manufacturer\":\"Knoll\",\"description\":\"Designed by Formway Design for Knoll<br />\\nWith intuitive adjustments, a slim silhouette and broad color and finish palette, Life sets the standard for ergonomics and innovative design. The advanced control automatically adjusts to the weight of the body,\",\"global_rank\":82,\"active\":true},{\"permalink\":\"604181\",\"name\":\"Dove Series\",\"created_at\":\"2010-06-01T02:44:33Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12648771/Dove_Side_1_LR-image1-1273167712_tn.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12648771/Dove_Side_1_LR-image1-1273167712_tn.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":604181,\"wins\":1377,\"id\":5841,\"fights\":2148,\"manufacturer\":\"HBF\",\"description\":\"A sleek, swivel tilt series, designed by HBF\x92s Kevin Stark, bringing contemporary comfort to the table while the elegance of the design is the perfect complement to the executive desk.\",\"global_rank\":83,\"active\":true},{\"permalink\":\"15280\",\"name\":\"Freedom Task Chair\",\"created_at\":\"2010-02-25T15:32:31Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/422507/TN-F212AP708.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/422507/TN-F212AP708.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":15280,\"wins\":145,\"id\":4341,\"fights\":225,\"manufacturer\":\"Humanscale\",\"description\":\"Technology can make simple things complicated or complicated things simple. We prefer the latter.\\n\\nThe Freedom chair is designed to give the maximum ergonomic benefit to the sitter with a minimum number of manually-adjusted controls. Once the chair is fit\",\"global_rank\":84,\"active\":true},{\"permalink\":\"33023\",\"name\":\"Durapalm Palmwood Flooring & Palmwood Plywood\",\"created_at\":\"2010-08-16T14:48:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/746406/weave4durapalm.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/746406/weave4durapalm.jpg\",\"updated_at\":\"2011-03-07T22:03:56Z\",\"dp_id\":33023,\"wins\":253,\"id\":6961,\"fights\":394,\"manufacturer\":\"Smith & Fong\",\"description\":\"Our Durapalm&#168; palmwood comes from plantation grown coconut palms, which are in abundance throughout much of the world. Palms produce nuts for up to 80 years, then non-producing palms are removed and replaced. Coconut palmwood can vary greatly in colo\",\"global_rank\":85,\"active\":true},{\"permalink\":\"42081\",\"name\":\"MART Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42081,\"wins\":247,\"id\":131,\"fights\":384,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair<br />\\nDesign Antonio Citterio (2003) <br />\\n<br />\\nExperimentation and research have led to the Mart seating project, which results from a new production technology for thermoformed leather. Two types of seats are available: a smaller and\",\"global_rank\":86,\"active\":true},{\"permalink\":\"101578\",\"name\":\"US Toilets #010101 Two-piece toilet\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2578837/43500_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2578837/43500_web_prod_normal.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":101578,\"wins\":102,\"id\":2601,\"fights\":158,\"manufacturer\":\"Duravit\",\"description\":\"Caro Two-piece toilet (without cistern), 1,6 gpf (6 liters), 305 mm/12&quot; rough-in, bolt caps included, <span class=\\\"caps\\\">CIAPMO</span> listed, Mounting instruction included, syphonic, US version toilet, vertical outlet\",\"global_rank\":87,\"active\":true},{\"permalink\":\"101538\",\"name\":\"Starck 1 #D16055 Toilet Set\",\"created_at\":\"2010-02-24T17:41:13Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2578317/47961_web_prod_normal.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2578317/47961_web_prod_normal.jpg\",\"updated_at\":\"2011-03-02T20:28:15Z\",\"dp_id\":101538,\"wins\":95,\"id\":2781,\"fights\":147,\"manufacturer\":\"Duravit\",\"description\":\"The metamorphosis of a bucket: both come in wall-mounted and floor-standing versions &#8211; openly admit their origins. Naturally, all toilets feature both Stop-and-Go function and 1.6 gallons flush &#8211; stingy when it comes to water consumption, but \",\"global_rank\":88,\"active\":true},{\"permalink\":\"96891\",\"name\":\"Y LED Desk Lamp\",\"created_at\":\"2010-07-19T20:28:39Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/15769901/Y_LED_Desk_Lamp_with_White_Cable_detail.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/15769901/Y_LED_Desk_Lamp_with_White_Cable_detail.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":96891,\"wins\":150,\"id\":6411,\"fights\":231,\"manufacturer\":\"Shine Labs\",\"description\":\"The Y <span class=\\\"caps\\\">LED</span> Desk Lamp is a joy. Its distinct and fresh shape delivers a strong and clear message that is reinforced by its uniform light output. The body is formed from a single piece of aluminum to create a simple yet bold gestu\",\"global_rank\":89,\"active\":true},{\"permalink\":\"124498\",\"name\":\"Filo Conference Chair\",\"created_at\":\"2010-02-25T15:32:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3614277/9411pa_group.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3614277/9411pa_group.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":124498,\"wins\":137,\"id\":4231,\"fights\":211,\"manufacturer\":\"KEILHAUER\",\"description\":\"Designed by <span class=\\\"caps\\\">EOOS</span>, Filo is an elegant and versatile seating option for the conference room. This mesh chair moves with the sitter naturally, using the inherent flex of the arms. The only adjustment is a discreet pneumatic height a\",\"global_rank\":90,\"active\":true},{\"permalink\":\"635191\",\"name\":\"Ninety\",\"created_at\":\"2010-07-19T20:57:49Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/13737411/1319-375.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/13737411/1319-375.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":635191,\"wins\":253,\"id\":6461,\"fights\":394,\"manufacturer\":\"Luxo\",\"description\":\"<span class=\\\"caps\\\">DESIGNER</span>: <span class=\\\"caps\\\">SHAWN</span> <span class=\\\"caps\\\">LITTRELL</span><br />\\n<br />\\nNinety &#8211; the world&#8217;s most energy-efficient task light. Using only 6W of LEDs, <br />\\nNinety offers a bright, warm light with su\",\"global_rank\":91,\"active\":true},{\"permalink\":\"54740\",\"name\":\"W17-06 Natural History\",\"created_at\":\"2010-07-28T17:06:34Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1269878/Natural-History.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1269878/Natural-History.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":54740,\"wins\":240,\"id\":6771,\"fights\":375,\"manufacturer\":\"Carolyn Ray\",\"description\":\"Screenprinted Wallcovering on Wipeable Ground\\nColor Shown: Dove Creek\\n27&#8221;W with 36&#8221; Half Drop Repeat\",\"global_rank\":92,\"active\":true},{\"permalink\":\"59850\",\"name\":\"Saarinen Womb Chair and Ottoman\",\"created_at\":\"2010-07-07T20:55:17Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1396634/773_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1396634/773_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":59850,\"wins\":115,\"id\":6011,\"fights\":182,\"manufacturer\":\"Knoll\",\"description\":\"The Womb chair is available in three sizes: standard, medium and small. The standard and medium sizes have an accompanying ottoman\\n\\nAvailable on the KnollStudio 20-day program in select finishes\\n\\nConstruction\\n\\nChair constructed of foam over a molded, rein\",\"global_rank\":93,\"active\":true},{\"permalink\":\"90843\",\"name\":\"EVA BENCH\",\"created_at\":\"2010-07-18T03:25:40Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2263789/bench_2.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2263789/bench_2.jpg\",\"updated_at\":\"2011-03-17T21:24:39Z\",\"dp_id\":90843,\"wins\":706,\"id\":6121,\"fights\":1105,\"manufacturer\":\"Bear and Lion\",\"description\":\"Manufactured from American black walnut (sustainably harvested from local sources) this original V-shaped design forms a naturally solid structure that requires no further bracing or cross member support, resulting in a simple and remarkably comfortable b\",\"global_rank\":94,\"active\":true},{\"permalink\":\"33022\",\"name\":\"End Block Floor\",\"created_at\":\"2010-08-16T14:48:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/746380/endblockfloor_lg.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/746380/endblockfloor_lg.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":33022,\"wins\":274,\"id\":6891,\"fights\":430,\"manufacturer\":\"Smith & Fong\",\"description\":\"Plyboo&#168; Bamboo End-Block floor\\nFL-EG5836PA\\n5/8&#8221; x 3 3/4&#8221; x 36&#8221; \\nEnd Grain, prefinished\\n\\nMade from quality select bamboo strips, end-block flooring gives a refreshing new look to sustainable architecture and design. Turning tradition\",\"global_rank\":95,\"active\":true},{\"permalink\":\"60530\",\"name\":\"Lumeo\",\"created_at\":\"2010-02-18T21:43:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1415099/lumeo_184da2d09458b61106d7e0bcb9261f31_r1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1415099/lumeo_184da2d09458b61106d7e0bcb9261f31_r1.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":60530,\"wins\":361,\"id\":781,\"fights\":565,\"manufacturer\":\"Ligne Roset\",\"description\":\"The luxurious bed has an oversized headboard with the collection&#146;s signature square pattern. Additional accessories for the bed include a backlight and mounted swivel lamps. Available in white lacquer, natural, dark brown, or ebony oak with aluminum \",\"global_rank\":96,\"active\":true},{\"permalink\":\"59544\",\"name\":\"277 Auckland\",\"created_at\":\"2010-02-24T05:49:35Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1373372/auckland_front_side_CQ.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1373372/auckland_front_side_CQ.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":59544,\"wins\":204,\"id\":1991,\"fights\":323,\"manufacturer\":\"Cassina USA\",\"description\":\"Design: Jean Marie Massaud<br />\\n<br />\\nSwivel armchair on a matte four-spoke base. Glossy Fiberglas shell. Padded interior with leather upholstery.<br />\\n<br />\\nAvailable in white leather (13X247) with white shell or black <span class=\\\"caps\\\">CCL</span> l\",\"global_rank\":97,\"active\":true},{\"permalink\":\"118006\",\"name\":\"Lucina Freestanding Resin Air Bath Tub\",\"created_at\":\"2010-02-25T00:13:09Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3444929/9288_l.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3444929/9288_l.jpg\",\"updated_at\":\"2011-02-25T22:43:43Z\",\"dp_id\":118006,\"wins\":209,\"id\":3411,\"fights\":330,\"manufacturer\":\"Signature Aire\",\"description\":\"Lucina Freestanding Resin Air Bath Tub<br />\\nThis Lucina Freestanding Resin Air Bath Tub has a luxurious air massage system that provides you with a gentle, overall massage. The simple, clean lines of this freestanding air tub create a relaxed atmosphere \",\"global_rank\":98,\"active\":true},{\"permalink\":\"46074\",\"name\":\"tetra 1 | dresser\",\"created_at\":\"2010-02-18T22:25:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/978005/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/978005/large.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":46074,\"wins\":412,\"id\":1191,\"fights\":647,\"manufacturer\":\"notNeutral\",\"description\":\"Tetra1 is a 10 drawer unit made up of the four drawer sizes in a 5-row high, 2-drawer wide configuration. Tetra1 can be used as a dresser in the bedroom, a linen cabinet in the dining room or a storage unit in the office. Made of a Birch Euro-ply, this un\",\"global_rank\":99,\"active\":true},{\"permalink\":\"41327\",\"name\":\"Net\",\"created_at\":\"2010-02-25T23:34:58Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/891307/9.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/891307/9.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":41327,\"wins\":264,\"id\":5131,\"fights\":413,\"manufacturer\":\"Italian Design\",\"description\":\"One cube, two cubes, a &#8220;net&#8221; of cubes with 40-cm-long sides that can be mixed and matched. Everyone can create a bookcase tailored to their needs and taste. Net expands the boundaries of creativity and space, because it easily adapts to any en\",\"global_rank\":100,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/leaders.json?page=2&per_page=100\",\"next_page\":2}"
29
29
  http_version: "1.1"
@@ -0,0 +1,56 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://productwars.com/api/v1/leaders.json?page=1&per_page=10&
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ etag:
14
+ - "\"fa3db9dd4437d6113315dedf5ebfae07\""
15
+ content-type:
16
+ - application/json; charset=utf-8
17
+ date:
18
+ - Mon, 21 Mar 2011 15:53:51 GMT
19
+ server:
20
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
+ x-runtime:
22
+ - "37"
23
+ content-length:
24
+ - "6791"
25
+ cache-control:
26
+ - private, max-age=0, must-revalidate
27
+ body: "{\"products\":[{\"permalink\":\"596551\",\"name\":\"Ciello\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12354141/Ciello_ds_cie99_BewegungsAL__244_.jpg\",\"updated_at\":\"2011-03-07T22:53:41Z\",\"dp_id\":596551,\"wins\":405,\"id\":6031,\"fights\":503,\"manufacturer\":\"Kloeber\",\"description\":\"Let us guide you through a world of perfection. Like in a tailor-made suit, the design and aesthetic features of the Ciello take into account the diversity of man&#8217;s natural body shapes. The award-winning design is communicated by exemplary craftsman\",\"global_rank\":1,\"active\":true},{\"permalink\":\"26042\",\"name\":\"Verso Toilet & Bidet\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528349/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26042,\"wins\":114,\"id\":2991,\"fights\":142,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production, Verso Wall Mount&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the Verso basin line, Verso toilets use an in-wall tank and carrier system to provi\",\"global_rank\":2,\"active\":true},{\"permalink\":\"596641\",\"name\":\"Veo\",\"created_at\":\"2010-07-12T22:34:30Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12360401/Veo_DS_veo87_ZAL_300dpi_591_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596641,\"wins\":370,\"id\":6041,\"fights\":474,\"manufacturer\":\"Kloeber\",\"description\":\"Veo. Simply more development possibilities.<br />\\nVeo emerged out of the requirements of its users. Thanks to the large range of versions available, it is the ideal work chair. Veo proves that good design and great seating comfort is also available at an \",\"global_rank\":3,\"active\":true},{\"permalink\":\"63943\",\"name\":\"One LineTavolo\",\"created_at\":\"2010-07-19T20:24:28Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1552736/OneLineTavolo.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":63943,\"wins\":335,\"id\":6311,\"fights\":435,\"manufacturer\":\"Artemide\",\"description\":\"Design: Ora Ito\\n\\nTable lamp with base or clamp.\\nConsistent minimalistic design.\\n\\nPlease note, that these products are not available in each country. Details upon request.\",\"global_rank\":4,\"active\":true},{\"permalink\":\"564832\",\"name\":\"ART BORDERS by ZAHA HADID (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11758082/zaha_hadid_big.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564832,\"wins\":339,\"id\":6621,\"fights\":442,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"Zaha Hadid is one of the most famous, highly respected personalities in the international architectural and design scene. Her approach is visionary, and her spectacular architecture is innovative. She has been awarded many highly respected international p\",\"global_rank\":5,\"active\":true},{\"permalink\":\"59828\",\"name\":\"Barcelona&#174; Chair\",\"created_at\":\"2010-07-07T20:52:11Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1393922/1276_pp.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":59828,\"wins\":151,\"id\":5991,\"fights\":198,\"manufacturer\":\"Knoll\",\"description\":\"Designed in 1930 by Ludwig Mies van der Rohe\\n\\nA companion-sized Barcelona chair and ottoman have been developed to accompany the tried-and-true classic. The child&#8217;s Barcelona chair and ottoman are 85&#38;#37 scale of the original and only available \",\"global_rank\":6,\"active\":true},{\"permalink\":\"35380\",\"name\":\"Toilets Starck 1\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796076/109d9d8775818229_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35380,\"wins\":120,\"id\":2921,\"fights\":156,\"manufacturer\":\"Duravit\",\"description\":\"The metamorphosis of a bucket: both come in wall-mounted and floor-standing versions &#8211; openly admit their origins. Naturally, all toilets feature both Stop-and-Go function and 1.6 gallons flush &#8211; stingy when it comes to water consumption, but \",\"global_rank\":7,\"active\":true},{\"permalink\":\"46038\",\"name\":\"mod rocker\",\"created_at\":\"2010-02-18T22:25:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/976497/large.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":46038,\"wins\":528,\"id\":1211,\"fights\":695,\"manufacturer\":\"igloo play\",\"description\":\"This rocking chair will appeal to a child&#8217;s interest in movement as well as scale, organic form, material variation and color. The form and material invite kids to play, read or simply relax. As research indicates that children often fidget in stati\",\"global_rank\":8,\"active\":true},{\"permalink\":\"26054\",\"name\":\"C Toilets & Bidets\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/528791/sample.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":26054,\"wins\":100,\"id\":3001,\"fights\":134,\"manufacturer\":\"Hastings\",\"description\":\"Produced with artisan skill applied to industrial production,&nbsp;C&nbsp;Toilets reflect the finest in European design.&nbsp;Designed specifically to complement the&nbsp;C basin line,&nbsp;C toilets use an in-wall tank and carrier system to provide a&nbs\",\"global_rank\":9,\"active\":true},{\"permalink\":\"564892\",\"name\":\"COLANI (Modern)\",\"created_at\":\"2010-07-28T16:58:03Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/11764872/luigiColani_big_01.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":564892,\"wins\":334,\"id\":6481,\"fights\":448,\"manufacturer\":\"Marburg Wallcoverings\",\"description\":\"entwined, mirrored ornaments in the distinctive biodynamic design language by Luigi Colani<br />\\nexceptional designs in the spirit of water &#8211; from drops to flowing wave formations<br />\\nglimmer with a marked flip-flop effect: iridescent colors chang\",\"global_rank\":10,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/leaders.json?page=2&per_page=10&\",\"next_page\":2}"
28
+ http_version: "1.1"
29
+ - !ruby/struct:VCR::HTTPInteraction
30
+ request: !ruby/struct:VCR::Request
31
+ method: :get
32
+ uri: http://productwars.com/api/v1/leaders.json?page=2&per_page=10&
33
+ body:
34
+ headers:
35
+ response: !ruby/struct:VCR::Response
36
+ status: !ruby/struct:VCR::ResponseStatus
37
+ code: 200
38
+ message: OK
39
+ headers:
40
+ etag:
41
+ - "\"150e3729d7a43921977a4a632960ee98\""
42
+ content-type:
43
+ - application/json; charset=utf-8
44
+ x-runtime:
45
+ - "37"
46
+ server:
47
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
48
+ date:
49
+ - Mon, 21 Mar 2011 15:54:45 GMT
50
+ content-length:
51
+ - "6489"
52
+ cache-control:
53
+ - private, max-age=0, must-revalidate
54
+ body: "{\"products\":[{\"permalink\":\"94177\",\"name\":\"Romantica\",\"created_at\":\"2010-02-24T18:19:00Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2341965/5-6_??.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":94177,\"wins\":112,\"id\":3221,\"fights\":151,\"manufacturer\":\"Colosanitary B.M. Limited\",\"description\":\"As its name <span class=\\\"caps\\\">ROMANTICA</span> implies, this is a beautifully stylish toilet suite. Gentle flowing curves, brilliant aura, &#8230; &#8230;, making all the difference to a bathroom.\",\"global_rank\":11,\"active\":true},{\"permalink\":\"21461\",\"name\":\" NIAGARA CHANDELIER 2 METRES\",\"created_at\":\"2010-02-18T22:20:31Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/380468/1_jpg1.jpg\",\"updated_at\":\"2011-03-02T20:28:14Z\",\"dp_id\":21461,\"wins\":849,\"id\":1061,\"fights\":1139,\"manufacturer\":\"Lladr\xF3\",\"description\":\"Issue Year: 2006\\nSculptor: Dept. Decoraci\xF3n y Dise\xF1o\n\
55
+ Size: 112 \xBC&#8221; x 78\xBE&#8221; \\n\\nA spectacular light installation measuring 2 meters in diameter. This masterpiece combines 300 amazing wings of porcelain sculptures with the latest in fibber optic te\",\"global_rank\":12,\"active\":true},{\"permalink\":\"35375\",\"name\":\"Toilets Caro\",\"created_at\":\"2010-02-24T17:54:21Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/796001/114b5ad9c6ea8429_web_mil_normal_alt.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":35375,\"wins\":92,\"id\":3041,\"fights\":125,\"manufacturer\":\"Duravit\",\"description\":\"Standing proud: With its sleek, slimline cistern, the Caro floor-standing WC is reminiscent of a monolith. The wall-mounted WC and the urinal blend perfectly with the rest of the range.\",\"global_rank\":13,\"active\":true},{\"permalink\":\"12820\",\"name\":\"Liberty, Office Seating\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/111641/1_jpg2.png\",\"updated_at\":\"2011-03-17T21:06:18Z\",\"dp_id\":12820,\"wins\":200,\"id\":4351,\"fights\":275,\"manufacturer\":\"Humanscale\",\"description\":\"A Revolution in Mesh Seating\\n\\nLiberty, with Form-Sensing Mesh Technology, is unlike any mesh chair you\x92ve seen or experienced. With its tri-panel construction, Liberty has the body-fitting contours that single-panel stretch mesh chairs simply can\x92t achiev\",\"global_rank\":14,\"active\":true},{\"permalink\":\"596591\",\"name\":\"Orbit\",\"created_at\":\"2010-07-12T22:32:54Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/12357851/Orbit_Network_ds_orb89_Armbuegel_15_.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":596591,\"wins\":188,\"id\":6021,\"fights\":259,\"manufacturer\":\"Kloeber\",\"description\":\"Orbit: The architecture of visible construction. Light and transparent features are evident in the Orbit&#8217;s Softnet backrest, which adapts to the individual user and supports the spine. The result is the characteristic Orbit &#8220;waterbed&#8221; ef\",\"global_rank\":15,\"active\":true},{\"permalink\":\"31677\",\"name\":\"\\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\\tAeron Chairs \\n\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\t\",\"created_at\":\"2010-02-25T15:57:51Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/714584/P_AER_L122.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":31677,\"wins\":305,\"id\":4621,\"fights\":420,\"manufacturer\":\"Herman Miller\",\"description\":\"Designed by Don Chadwick and Bill Stumpf \\n\\n A Work Chair Solution\\nHigh-performance, long-term seating in three sizes with a full complement of adjustments and innovative suspension; for computer work, general office work, and casual or formal \",\"global_rank\":16,\"active\":true},{\"permalink\":\"79667\",\"name\":\"Tizi 8048/A\",\"created_at\":\"2010-02-24T17:54:22Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1997910/tizi8048A.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":79667,\"wins\":95,\"id\":3131,\"fights\":131,\"manufacturer\":\"Nameek's\",\"description\":\"Toilet with plastic technical curve. Toilet measures 21.2&#8243; &#215; 15.7&#8243;.\",\"global_rank\":17,\"active\":true},{\"permalink\":\"90465\",\"name\":\"BILGE LOUNGE\",\"created_at\":\"2010-07-18T03:25:40Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2258649/210.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":90465,\"wins\":822,\"id\":6091,\"fights\":1135,\"manufacturer\":\"UHURU\",\"description\":\"The <span class=\\\"caps\\\">BILGE</span> <span class=\\\"caps\\\">LOUNGE</span> is made from reclaimed bourbon barrel staves and used truck springs. The K&#252;pe line is crafted from used bourbon barrels from Bardstown, Kentucky, the Bourbon Capital of the world. T\",\"global_rank\":18,\"active\":true},{\"permalink\":\"47737\",\"name\":\"Haworth Zody chair\",\"created_at\":\"2010-02-25T15:43:32Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1008512/zody.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":47737,\"wins\":187,\"id\":4361,\"fights\":261,\"manufacturer\":\"Haworth\",\"description\":\"Great mesh-back task chair, ergonomic, Best of Neocon June 2005, Cradle to Cradle Gold certified product by MBDC (McDonough Braungart Design Chemistry, LLC ) October, 2005, USA .\",\"global_rank\":19,\"active\":true},{\"permalink\":\"48408\",\"name\":\"Mix LED Table Lamp\",\"created_at\":\"2010-07-19T20:28:39Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/1034092/mix-silver.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":48408,\"wins\":277,\"id\":6401,\"fights\":386,\"manufacturer\":\"Italian Design\",\"description\":\"Mix LED table lamp in white has a lightweight frame that uses the new LED Chip on Board technology. Available in aluminum. Stem in aluminum finish. One colored filter in the head allows for the regulation of the color temperature. When it is switched \",\"global_rank\":20,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/leaders.json?page=3&per_page=10&\",\"next_page\":3}"
56
+ http_version: "1.1"
@@ -11,18 +11,18 @@
11
11
  message: OK
12
12
  headers:
13
13
  etag:
14
- - "\"1feb8bfc83620ac4e785c972014cc3a5\""
14
+ - "\"839c0545d12b282a8ea4456732251977\""
15
15
  content-type:
16
16
  - application/json; charset=utf-8
17
17
  x-runtime:
18
- - "76"
18
+ - "87"
19
19
  server:
20
20
  - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
21
  date:
22
- - Tue, 15 Mar 2011 21:21:50 GMT
22
+ - Mon, 21 Mar 2011 15:53:51 GMT
23
23
  content-length:
24
- - "16831"
24
+ - "20303"
25
25
  cache-control:
26
26
  - private, max-age=0, must-revalidate
27
- body: "[{\"permalink\":\"132254\",\"name\":\"GRANDE PAPILIO Armchair and Ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":132254,\"wins\":268,\"id\":521,\"fights\":378,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and Ottoman<br />\\nNaoto Fukasawa (2009)<br />\\n<br />\\nAs with the original Papilio chair, and not only due to the zipper along the back, the Grande Papilio Armchair appears as a single form made from a single material. Its shape is a fluid design\",\"global_rank\":29,\"active\":true},{\"permalink\":\"42082\",\"name\":\"METROPOLITAN Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42082,\"wins\":245,\"id\":141,\"fights\":352,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchairs<br />\\nDesign Jeffrey Bernett (2003) <br />\\n<br />\\nSeats that flow uninterrupted into the armrests are the hallmark of both the small Metropolitan armchair and the relax armchair. The small armchair on a revolving aluminium base with four spoke\",\"global_rank\":39,\"active\":true},{\"permalink\":\"42088\",\"name\":\"RADAR\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42088,\"wins\":254,\"id\":191,\"fights\":380,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign James Irvine (2001) <br />\\n<br />\\nThe structure rotates on a 4-spoke nickeled or graphite varnished metal base and is equipped with an adjustable headrest and an ottoman. The spirit of the piece was best expressed by the designer h\",\"global_rank\":58,\"active\":true},{\"permalink\":\"208601\",\"name\":\"LAZY Outdoor Armchair/Chaise Longue\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":208601,\"wins\":62,\"id\":531,\"fights\":96,\"manufacturer\":\"B&B Italia\",\"description\":\"Lazy Armchair/Chaise Longue<br />\\nDesign Patricia Urquiola (2009)<br />\\n<br />\\nSix years after its initial presentation into the home collection, Lazy has now becmoe a part of the outdoor collection. The stainless steel frame of this chair allows, through\",\"global_rank\":80,\"active\":true},{\"permalink\":\"42081\",\"name\":\"MART Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42081,\"wins\":247,\"id\":131,\"fights\":384,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair<br />\\nDesign Antonio Citterio (2003) <br />\\n<br />\\nExperimentation and research have led to the Mart seating project, which results from a new production technology for thermoformed leather. Two types of seats are available: a smaller and\",\"global_rank\":86,\"active\":true},{\"permalink\":\"42089\",\"name\":\"TULIP Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"updated_at\":\"2011-03-02T20:13:06Z\",\"dp_id\":42089,\"wins\":211,\"id\":201,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Jeffrey Bernett (2000) <br />\\n<br />\\n Designed on a carefully proportioned combination of widths and alternating straight and curved lines, Tulip is a 360&#176; swivel chair, marked by great flexibility in use. The support disc, m\",\"global_rank\":190,\"active\":true},{\"permalink\":\"42075\",\"name\":\"LANDSCAPE'05 Chaise Longue\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42075,\"wins\":42,\"id\":81,\"fights\":73,\"manufacturer\":\"B&B Italia\",\"description\":\"Chaise longue<br />\\nDesign Jeffrey Bernett (2005) <br />\\n<br />\\nA best seller from 2001, it&#8217;s now even more comfortable with the addition of an armrest that by no means affects its vibrant appearance. Just like the first model, it has a magnetic h\",\"global_rank\":202,\"active\":true},{\"permalink\":\"95518\",\"name\":\"POSA Seating\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":95518,\"wins\":42,\"id\":511,\"fights\":75,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofa and Armchairs<br />\\nDesign David Chipperfield (2008)<br />\\n<br />\\nThe Posa Series is named after Marquis von Posa, the idealistic hero of the opera Don Carlos by Friedrich Schiller. Schiller was born in Marbach am Neckar, in Germany, the city where D\",\"global_rank\":223,\"active\":true},{\"permalink\":\"42173\",\"name\":\"KALOS APTA armchair and ottoman\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42173,\"wins\":222,\"id\":281,\"fights\":397,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and ottomans<br />\\nDesign Antonio Citterio (1999)<br />\\n<br />\\nA modern interpretation of the more classic easy chair, Kalos comes in both leather and fabric upholstery. The latter can be stretched or formed by a slipcover hiding the feet of the\",\"global_rank\":245,\"active\":true},{\"permalink\":\"42090\",\"name\":\"UP 2000 SERIES\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42090,\"wins\":210,\"id\":211,\"fights\":387,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Gaetano Pesce (2000) <br />\\n<br />\\nSince its first appearance, the Up series, designed in 1969, has been one of the most outstanding expressions of design. The exceptional visual impact of seven models of seats, in various size\",\"global_rank\":261,\"active\":true},{\"permalink\":\"42182\",\"name\":\"AMONEUS AC sofa with chaise\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42182,\"wins\":45,\"id\":351,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping b\",\"global_rank\":275,\"active\":true},{\"permalink\":\"42194\",\"name\":\"CLIO SIMPLICE armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42194,\"wins\":228,\"id\":461,\"fights\":421,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2004)<br />\\n<br />\\nFeaturing a frame in brushed light or black oak, grey or brown oak, the backrest of Clio can be in the same finishes as the frame in wood or upholstered in leather or fabric. Further comfort is pr\",\"global_rank\":278,\"active\":true},{\"permalink\":\"42080\",\"name\":\"LAZY\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42080,\"wins\":220,\"id\":121,\"fights\":407,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Patricia Urquiola (2003) <br />\\n<br />\\n Designed both for outdoor and indoor use, this seat has a metal frame and can be converted from a small armchair into a chaise lounge. In the designer&#8217;s words: &#8220;A vague creature \",\"global_rank\":281,\"active\":true},{\"permalink\":\"42067\",\"name\":\"FAT SOFA\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42067,\"wins\":198,\"id\":1,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Patricia Urquiola (2007) <br />\\n<br />\\nIn the beginning there was Fat-Fat, a multi-functional element that doubled as a table/container, from which the Fat-Fat coffee tables and then the Fat-Fat bed developed. Now these same ro\",\"global_rank\":303,\"active\":true},{\"permalink\":\"42068\",\"name\":\"LE BAMBOLE '07 Seating\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42068,\"wins\":200,\"id\":11,\"fights\":372,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas and armchair<br />\\n Design Mario Bellini (2007) <br />\\n<br />\\n B&amp;B Italia is now presenting, in a renewed version, &#8220;Le Bambole&#8221; an incredibly successful collection designed in the 1970s, winner of the &#8220;Compasso d&#8217;Oro&#8\",\"global_rank\":312,\"active\":true},{\"permalink\":\"42279\",\"name\":\"HOLLOW Seating Collection\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42279,\"wins\":185,\"id\":501,\"fights\":354,\"manufacturer\":\"B&B Italia\",\"description\":\"Design Patricia Urquiola <br />\\n<br />\\nA modular compact seating series range for reception, lounge and meeting applications. Concave plastic panels enhance the appearance of lightness and give the product it&#8217;s name. Numerous variations in finishe\",\"global_rank\":324,\"active\":true},{\"permalink\":\"42074\",\"name\":\"J.J.\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42074,\"wins\":209,\"id\":71,\"fights\":400,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair\\n Design Antonio Citterio (2005) \\n\\n Designed as complements to the Arne system, the small armchairs J.J. are proposed in two different sizes: one for relax, with high backrest equipped with headrest and loinrest, and a lower one for conver\",\"global_rank\":341,\"active\":true},{\"permalink\":\"42183\",\"name\":\"AMOENUS AC\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42183,\"wins\":41,\"id\":361,\"fights\":78,\"manufacturer\":\"B&B Italia\",\"description\":\"Ottoman-sofa<br />\\nDesign Antonio Citterio <br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping\",\"global_rank\":345,\"active\":true},{\"permalink\":\"42071\",\"name\":\"TUFTY-TIME LEATHER\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42071,\"wins\":43,\"id\":41,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Modular sofas<br />\\n Design Patricia Urquiola (2006) <br />\\n<br />\\n The extension of the Tufty-Time project is a more evident emphasis of the &#8220;Chesterfield&#8221; and &#8220;Capitonn&#233;&#8221; style, a special revival of the Sixties and the Sev\",\"global_rank\":371,\"active\":true},{\"permalink\":\"42195\",\"name\":\"SMT\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42195,\"wins\":43,\"id\":471,\"fights\":84,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman\\n AC Collection by Antonio Citterio \\n\\n Internal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, shaped polyurethane, polyester fibre waddingInt\",\"global_rank\":379,\"active\":true},{\"permalink\":\"42178\",\"name\":\"IMPRIMATUR APTA armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907814/MD-001_9865.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907814/MD-001_9865.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42178,\"wins\":185,\"id\":311,\"fights\":364,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (1999)<br />\\n<br />\\nThe Imprimatur range proposes two different interpretations. The first more casual solution displays a seat split into two portions and a backrest with cushions of different sizes. Different col\",\"global_rank\":405,\"active\":true},{\"permalink\":\"42087\",\"name\":\"LANDSCAPE Chaise Longue\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902874/MD-001_LS.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902874/MD-001_LS.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42087,\"wins\":40,\"id\":181,\"fights\":80,\"manufacturer\":\"B&B Italia\",\"description\":\"Chaise longue<br />\\nDesign Jeffrey Bernett (2001) <br />\\n<br />\\nAn invitingly comfortable, sleek, delicate seat resting on a metal base: the minimalist design makes this chaise longue look especially light. Thanks to its magnet retainer, the headrest ca\",\"global_rank\":410,\"active\":true},{\"permalink\":\"42186\",\"name\":\"MUSA SIMPLICE Armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908048/MD-001_sm65p.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908048/MD-001_sm65p.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42186,\"wins\":181,\"id\":391,\"fights\":393,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAvailable in two versions, Musa Armchairs are realized in the lower and deeper version (SM65P) and a higher and shallower version (SM65T); Both are proposed with a frame of solid wood in brushed l\",\"global_rank\":523,\"active\":true},{\"permalink\":\"42196\",\"name\":\"SIMPLICITER SIMPLICE sofa armchair and ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908334/MD-001_smt217_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908334/MD-001_smt217_1.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42196,\"wins\":33,\"id\":481,\"fights\":73,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman<br />\\nDesign by Antonio Citterio (2003)<br />\\n<br />\\nThe same features as the Simplex, the stitched one-piece seat cushion, with the trims and feet of extruded aluminum in the finishes nickel, bronze or black, but with thinner \",\"global_rank\":535,\"active\":true},{\"permalink\":\"42197\",\"name\":\"SIMPLICITER SIMPLEX Sofa and Armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908373/MD-001_smtf152.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908373/MD-001_smtf152.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42197,\"wins\":38,\"id\":491,\"fights\":85,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman<br />\\n AC Collection by Antonio Citterio <br />\\n<br />\\n Internal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, shaped polyurethane, polyeste\",\"global_rank\":569,\"active\":true}]"
27
+ body: "{\"products\":[{\"permalink\":\"132254\",\"name\":\"GRANDE PAPILIO Armchair and Ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":132254,\"wins\":268,\"id\":521,\"fights\":378,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and Ottoman<br />\\nNaoto Fukasawa (2009)<br />\\n<br />\\nAs with the original Papilio chair, and not only due to the zipper along the back, the Grande Papilio Armchair appears as a single form made from a single material. Its shape is a fluid design\",\"global_rank\":29,\"active\":true},{\"permalink\":\"42082\",\"name\":\"METROPOLITAN Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42082,\"wins\":245,\"id\":141,\"fights\":352,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchairs<br />\\nDesign Jeffrey Bernett (2003) <br />\\n<br />\\nSeats that flow uninterrupted into the armrests are the hallmark of both the small Metropolitan armchair and the relax armchair. The small armchair on a revolving aluminium base with four spoke\",\"global_rank\":39,\"active\":true},{\"permalink\":\"42088\",\"name\":\"RADAR\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42088,\"wins\":254,\"id\":191,\"fights\":380,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign James Irvine (2001) <br />\\n<br />\\nThe structure rotates on a 4-spoke nickeled or graphite varnished metal base and is equipped with an adjustable headrest and an ottoman. The spirit of the piece was best expressed by the designer h\",\"global_rank\":58,\"active\":true},{\"permalink\":\"208601\",\"name\":\"LAZY Outdoor Armchair/Chaise Longue\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":208601,\"wins\":62,\"id\":531,\"fights\":96,\"manufacturer\":\"B&B Italia\",\"description\":\"Lazy Armchair/Chaise Longue<br />\\nDesign Patricia Urquiola (2009)<br />\\n<br />\\nSix years after its initial presentation into the home collection, Lazy has now becmoe a part of the outdoor collection. The stainless steel frame of this chair allows, through\",\"global_rank\":80,\"active\":true},{\"permalink\":\"42081\",\"name\":\"MART Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42081,\"wins\":247,\"id\":131,\"fights\":384,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair<br />\\nDesign Antonio Citterio (2003) <br />\\n<br />\\nExperimentation and research have led to the Mart seating project, which results from a new production technology for thermoformed leather. Two types of seats are available: a smaller and\",\"global_rank\":86,\"active\":true},{\"permalink\":\"42089\",\"name\":\"TULIP Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"updated_at\":\"2011-03-02T20:13:06Z\",\"dp_id\":42089,\"wins\":211,\"id\":201,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Jeffrey Bernett (2000) <br />\\n<br />\\n Designed on a carefully proportioned combination of widths and alternating straight and curved lines, Tulip is a 360&#176; swivel chair, marked by great flexibility in use. The support disc, m\",\"global_rank\":190,\"active\":true},{\"permalink\":\"42075\",\"name\":\"LANDSCAPE'05 Chaise Longue\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42075,\"wins\":42,\"id\":81,\"fights\":73,\"manufacturer\":\"B&B Italia\",\"description\":\"Chaise longue<br />\\nDesign Jeffrey Bernett (2005) <br />\\n<br />\\nA best seller from 2001, it&#8217;s now even more comfortable with the addition of an armrest that by no means affects its vibrant appearance. Just like the first model, it has a magnetic h\",\"global_rank\":202,\"active\":true},{\"permalink\":\"95518\",\"name\":\"POSA Seating\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":95518,\"wins\":42,\"id\":511,\"fights\":75,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofa and Armchairs<br />\\nDesign David Chipperfield (2008)<br />\\n<br />\\nThe Posa Series is named after Marquis von Posa, the idealistic hero of the opera Don Carlos by Friedrich Schiller. Schiller was born in Marbach am Neckar, in Germany, the city where D\",\"global_rank\":223,\"active\":true},{\"permalink\":\"42173\",\"name\":\"KALOS APTA armchair and ottoman\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42173,\"wins\":222,\"id\":281,\"fights\":397,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and ottomans<br />\\nDesign Antonio Citterio (1999)<br />\\n<br />\\nA modern interpretation of the more classic easy chair, Kalos comes in both leather and fabric upholstery. The latter can be stretched or formed by a slipcover hiding the feet of the\",\"global_rank\":245,\"active\":true},{\"permalink\":\"42090\",\"name\":\"UP 2000 SERIES\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42090,\"wins\":210,\"id\":211,\"fights\":387,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Gaetano Pesce (2000) <br />\\n<br />\\nSince its first appearance, the Up series, designed in 1969, has been one of the most outstanding expressions of design. The exceptional visual impact of seven models of seats, in various size\",\"global_rank\":261,\"active\":true},{\"permalink\":\"42182\",\"name\":\"AMONEUS AC sofa with chaise\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42182,\"wins\":45,\"id\":351,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping b\",\"global_rank\":275,\"active\":true},{\"permalink\":\"42194\",\"name\":\"CLIO SIMPLICE armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42194,\"wins\":228,\"id\":461,\"fights\":421,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2004)<br />\\n<br />\\nFeaturing a frame in brushed light or black oak, grey or brown oak, the backrest of Clio can be in the same finishes as the frame in wood or upholstered in leather or fabric. Further comfort is pr\",\"global_rank\":278,\"active\":true},{\"permalink\":\"42080\",\"name\":\"LAZY\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42080,\"wins\":220,\"id\":121,\"fights\":407,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Patricia Urquiola (2003) <br />\\n<br />\\n Designed both for outdoor and indoor use, this seat has a metal frame and can be converted from a small armchair into a chaise lounge. In the designer&#8217;s words: &#8220;A vague creature \",\"global_rank\":281,\"active\":true},{\"permalink\":\"42067\",\"name\":\"FAT SOFA\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42067,\"wins\":198,\"id\":1,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Patricia Urquiola (2007) <br />\\n<br />\\nIn the beginning there was Fat-Fat, a multi-functional element that doubled as a table/container, from which the Fat-Fat coffee tables and then the Fat-Fat bed developed. Now these same ro\",\"global_rank\":303,\"active\":true},{\"permalink\":\"42068\",\"name\":\"LE BAMBOLE '07 Seating\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42068,\"wins\":200,\"id\":11,\"fights\":372,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas and armchair<br />\\n Design Mario Bellini (2007) <br />\\n<br />\\n B&amp;B Italia is now presenting, in a renewed version, &#8220;Le Bambole&#8221; an incredibly successful collection designed in the 1970s, winner of the &#8220;Compasso d&#8217;Oro&#8\",\"global_rank\":312,\"active\":true},{\"permalink\":\"42279\",\"name\":\"HOLLOW Seating Collection\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42279,\"wins\":185,\"id\":501,\"fights\":354,\"manufacturer\":\"B&B Italia\",\"description\":\"Design Patricia Urquiola <br />\\n<br />\\nA modular compact seating series range for reception, lounge and meeting applications. Concave plastic panels enhance the appearance of lightness and give the product it&#8217;s name. Numerous variations in finishe\",\"global_rank\":324,\"active\":true},{\"permalink\":\"42074\",\"name\":\"J.J.\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42074,\"wins\":209,\"id\":71,\"fights\":400,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair\\n Design Antonio Citterio (2005) \\n\\n Designed as complements to the Arne system, the small armchairs J.J. are proposed in two different sizes: one for relax, with high backrest equipped with headrest and loinrest, and a lower one for conver\",\"global_rank\":341,\"active\":true},{\"permalink\":\"42183\",\"name\":\"AMOENUS AC\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42183,\"wins\":41,\"id\":361,\"fights\":78,\"manufacturer\":\"B&B Italia\",\"description\":\"Ottoman-sofa<br />\\nDesign Antonio Citterio <br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping\",\"global_rank\":345,\"active\":true},{\"permalink\":\"42071\",\"name\":\"TUFTY-TIME LEATHER\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42071,\"wins\":43,\"id\":41,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Modular sofas<br />\\n Design Patricia Urquiola (2006) <br />\\n<br />\\n The extension of the Tufty-Time project is a more evident emphasis of the &#8220;Chesterfield&#8221; and &#8220;Capitonn&#233;&#8221; style, a special revival of the Sixties and the Sev\",\"global_rank\":371,\"active\":true},{\"permalink\":\"42195\",\"name\":\"SMT\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42195,\"wins\":43,\"id\":471,\"fights\":84,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman\\n AC Collection by Antonio Citterio \\n\\n Internal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, shaped polyurethane, polyester fibre waddingInt\",\"global_rank\":379,\"active\":true},{\"permalink\":\"42178\",\"name\":\"IMPRIMATUR APTA armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907814/MD-001_9865.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907814/MD-001_9865.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42178,\"wins\":185,\"id\":311,\"fights\":364,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (1999)<br />\\n<br />\\nThe Imprimatur range proposes two different interpretations. The first more casual solution displays a seat split into two portions and a backrest with cushions of different sizes. Different col\",\"global_rank\":405,\"active\":true},{\"permalink\":\"42087\",\"name\":\"LANDSCAPE Chaise Longue\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902874/MD-001_LS.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902874/MD-001_LS.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42087,\"wins\":40,\"id\":181,\"fights\":80,\"manufacturer\":\"B&B Italia\",\"description\":\"Chaise longue<br />\\nDesign Jeffrey Bernett (2001) <br />\\n<br />\\nAn invitingly comfortable, sleek, delicate seat resting on a metal base: the minimalist design makes this chaise longue look especially light. Thanks to its magnet retainer, the headrest ca\",\"global_rank\":410,\"active\":true},{\"permalink\":\"42186\",\"name\":\"MUSA SIMPLICE Armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908048/MD-001_sm65p.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908048/MD-001_sm65p.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42186,\"wins\":181,\"id\":391,\"fights\":393,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAvailable in two versions, Musa Armchairs are realized in the lower and deeper version (SM65P) and a higher and shallower version (SM65T); Both are proposed with a frame of solid wood in brushed l\",\"global_rank\":523,\"active\":true},{\"permalink\":\"42196\",\"name\":\"SIMPLICITER SIMPLICE sofa armchair and ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908334/MD-001_smt217_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908334/MD-001_smt217_1.jpg\",\"updated_at\":\"2011-03-03T14:50:05Z\",\"dp_id\":42196,\"wins\":33,\"id\":481,\"fights\":73,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman<br />\\nDesign by Antonio Citterio (2003)<br />\\n<br />\\nThe same features as the Simplex, the stitched one-piece seat cushion, with the trims and feet of extruded aluminum in the finishes nickel, bronze or black, but with thinner \",\"global_rank\":535,\"active\":true},{\"permalink\":\"42197\",\"name\":\"SIMPLICITER SIMPLEX Sofa and Armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908373/MD-001_smtf152.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908373/MD-001_smtf152.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42197,\"wins\":38,\"id\":491,\"fights\":85,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman<br />\\n AC Collection by Antonio Citterio <br />\\n<br />\\n Internal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, shaped polyurethane, polyeste\",\"global_rank\":569,\"active\":true},{\"permalink\":\"42175\",\"name\":\"AGATHOS APTA armchair\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907762/MD-001_9755.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907762/MD-001_9755.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42175,\"wins\":185,\"id\":291,\"fights\":413,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (1997)<br />\\n<br />\\nVersatile seats, to be used in various areas of the home, with fabric or leather upholstery. They are available with nickel, bronzed or polished chrome steel or solid wood-veneered legs in the fi\",\"global_rank\":580,\"active\":true},{\"permalink\":\"42185\",\"name\":\"AMONEUS AC chair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908022/MD-001_ac64p.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908022/MD-001_ac64p.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42185,\"wins\":167,\"id\":381,\"fights\":384,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and envelopin\",\"global_rank\":597,\"active\":true},{\"permalink\":\"42181\",\"name\":\"IMPRIMATUR APTA Armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907879/MD-001_9970.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907879/MD-001_9970.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42181,\"wins\":151,\"id\":341,\"fights\":394,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nAC Collection by Antonio Citterio <br />\\n<br />\\nInternal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, polyester fibre, polyester fibre wadding Seat cush\",\"global_rank\":689,\"active\":true},{\"permalink\":\"42193\",\"name\":\"CRONO SIMPLICE chair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908256/MD-001_smpg.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908256/MD-001_smpg.jpg\",\"updated_at\":\"2011-03-03T14:50:06Z\",\"dp_id\":42193,\"wins\":148,\"id\":451,\"fights\":387,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2002)<br />\\n<br />\\nThe semicircular curved form adds a special touch to crono, a sofa available in three lengths particularly suitable to mid-room placement. The same curved form also marks the armchair with revolv\",\"global_rank\":691,\"active\":true},{\"permalink\":\"42188\",\"name\":\"CALLIOPE SIMPLICE chair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908087/MD-001_sm65x.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908087/MD-001_sm65x.jpg\",\"updated_at\":\"2011-03-03T14:50:07Z\",\"dp_id\":42188,\"wins\":125,\"id\":401,\"fights\":363,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nA cheeky irony marks the small calliope armchair with a curbed backrest, a seat with an oval base and a frame in brushed light or black oak, grey and brown oak. The same finishes are available fo\",\"global_rank\":752,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/wars/1/leaders.json?page=2&per_page=100\",\"next_page\":2}"
28
28
  http_version: "1.1"
@@ -0,0 +1,55 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: http://productwars.com/api/v1/wars/1/leaders.json?page=1&per_page=10&
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ etag:
14
+ - "\"bb28634bace6fbf69a9d5648e1cc7403\""
15
+ content-type:
16
+ - application/json; charset=utf-8
17
+ date:
18
+ - Mon, 21 Mar 2011 15:53:51 GMT
19
+ server:
20
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
21
+ x-runtime:
22
+ - "145"
23
+ content-length:
24
+ - "6846"
25
+ cache-control:
26
+ - private, max-age=0, must-revalidate
27
+ body: "{\"products\":[{\"permalink\":\"132254\",\"name\":\"GRANDE PAPILIO Armchair and Ottoman\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/3738803/nao03.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":132254,\"wins\":268,\"id\":521,\"fights\":378,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and Ottoman<br />\\nNaoto Fukasawa (2009)<br />\\n<br />\\nAs with the original Papilio chair, and not only due to the zipper along the back, the Grande Papilio Armchair appears as a single form made from a single material. Its shape is a fluid design\",\"global_rank\":29,\"active\":true},{\"permalink\":\"42082\",\"name\":\"METROPOLITAN Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902471/MD-001_ME100-ME62_1.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42082,\"wins\":245,\"id\":141,\"fights\":352,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchairs<br />\\nDesign Jeffrey Bernett (2003) <br />\\n<br />\\nSeats that flow uninterrupted into the armrests are the hallmark of both the small Metropolitan armchair and the relax armchair. The small armchair on a revolving aluminium base with four spoke\",\"global_rank\":39,\"active\":true},{\"permalink\":\"42088\",\"name\":\"RADAR\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902939/MD-001_RA_RAP.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42088,\"wins\":254,\"id\":191,\"fights\":380,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign James Irvine (2001) <br />\\n<br />\\nThe structure rotates on a 4-spoke nickeled or graphite varnished metal base and is equipped with an adjustable headrest and an ottoman. The spirit of the piece was best expressed by the designer h\",\"global_rank\":58,\"active\":true},{\"permalink\":\"208601\",\"name\":\"LAZY Outdoor Armchair/Chaise Longue\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/5588611/Lazy_small.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":208601,\"wins\":62,\"id\":531,\"fights\":96,\"manufacturer\":\"B&B Italia\",\"description\":\"Lazy Armchair/Chaise Longue<br />\\nDesign Patricia Urquiola (2009)<br />\\n<br />\\nSix years after its initial presentation into the home collection, Lazy has now becmoe a part of the outdoor collection. The stainless steel frame of this chair allows, through\",\"global_rank\":80,\"active\":true},{\"permalink\":\"42081\",\"name\":\"MART Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902354/MD-001_MPR.jpg\",\"updated_at\":\"2011-03-03T14:50:02Z\",\"dp_id\":42081,\"wins\":247,\"id\":131,\"fights\":384,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair<br />\\nDesign Antonio Citterio (2003) <br />\\n<br />\\nExperimentation and research have led to the Mart seating project, which results from a new production technology for thermoformed leather. Two types of seats are available: a smaller and\",\"global_rank\":86,\"active\":true},{\"permalink\":\"42089\",\"name\":\"TULIP Armchairs\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902991/MD-001_TU.jpg\",\"updated_at\":\"2011-03-02T20:13:06Z\",\"dp_id\":42089,\"wins\":211,\"id\":201,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Jeffrey Bernett (2000) <br />\\n<br />\\n Designed on a carefully proportioned combination of widths and alternating straight and curved lines, Tulip is a 360&#176; swivel chair, marked by great flexibility in use. The support disc, m\",\"global_rank\":190,\"active\":true},{\"permalink\":\"42075\",\"name\":\"LANDSCAPE'05 Chaise Longue\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901873/MD-001_LANDSCAPE.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42075,\"wins\":42,\"id\":81,\"fights\":73,\"manufacturer\":\"B&B Italia\",\"description\":\"Chaise longue<br />\\nDesign Jeffrey Bernett (2005) <br />\\n<br />\\nA best seller from 2001, it&#8217;s now even more comfortable with the addition of an armrest that by no means affects its vibrant appearance. Just like the first model, it has a magnetic h\",\"global_rank\":202,\"active\":true},{\"permalink\":\"95518\",\"name\":\"POSA Seating\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/2366893/2976_L0_I2_Posa.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":95518,\"wins\":42,\"id\":511,\"fights\":75,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofa and Armchairs<br />\\nDesign David Chipperfield (2008)<br />\\n<br />\\nThe Posa Series is named after Marquis von Posa, the idealistic hero of the opera Don Carlos by Friedrich Schiller. Schiller was born in Marbach am Neckar, in Germany, the city where D\",\"global_rank\":223,\"active\":true},{\"permalink\":\"42173\",\"name\":\"KALOS APTA armchair and ottoman\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907723/MD-001_9750.jpg\",\"updated_at\":\"2011-03-03T14:50:03Z\",\"dp_id\":42173,\"wins\":222,\"id\":281,\"fights\":397,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair and ottomans<br />\\nDesign Antonio Citterio (1999)<br />\\n<br />\\nA modern interpretation of the more classic easy chair, Kalos comes in both leather and fabric upholstery. The latter can be stretched or formed by a slipcover hiding the feet of the\",\"global_rank\":245,\"active\":true},{\"permalink\":\"42090\",\"name\":\"UP 2000 SERIES\",\"created_at\":\"2010-02-11T20:19:56Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/903043/MD-001_UP5-UP6.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42090,\"wins\":210,\"id\":211,\"fights\":387,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Gaetano Pesce (2000) <br />\\n<br />\\nSince its first appearance, the Up series, designed in 1969, has been one of the most outstanding expressions of design. The exceptional visual impact of seven models of seats, in various size\",\"global_rank\":261,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/wars/1/leaders.json?page=2&per_page=10&\",\"next_page\":2}"
28
+ http_version: "1.1"
29
+ - !ruby/struct:VCR::HTTPInteraction
30
+ request: !ruby/struct:VCR::Request
31
+ method: :get
32
+ uri: http://productwars.com/api/v1/wars/1/leaders.json?page=2&per_page=10&
33
+ body:
34
+ headers:
35
+ response: !ruby/struct:VCR::Response
36
+ status: !ruby/struct:VCR::ResponseStatus
37
+ code: 200
38
+ message: OK
39
+ headers:
40
+ etag:
41
+ - "\"677e66b6fb935d3f93a6d8af6833d89e\""
42
+ content-type:
43
+ - application/json; charset=utf-8
44
+ x-runtime:
45
+ - "152"
46
+ server:
47
+ - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
48
+ date:
49
+ - Mon, 21 Mar 2011 15:54:45 GMT
50
+ content-length:
51
+ - "6806"
52
+ cache-control:
53
+ - private, max-age=0, must-revalidate
54
+ body: "{\"products\":[{\"permalink\":\"42182\",\"name\":\"AMONEUS AC sofa with chaise\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907892/MD-001_ac116cld_176ts_1.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42182,\"wins\":45,\"id\":351,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas<br />\\nDesign Antonio Citterio (2006)<br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping b\",\"global_rank\":275,\"active\":true},{\"permalink\":\"42194\",\"name\":\"CLIO SIMPLICE armchair\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908269/MD-001_smpr.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42194,\"wins\":228,\"id\":461,\"fights\":421,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\nDesign Antonio Citterio (2004)<br />\\n<br />\\nFeaturing a frame in brushed light or black oak, grey or brown oak, the backrest of Clio can be in the same finishes as the frame in wood or upholstered in leather or fabric. Further comfort is pr\",\"global_rank\":278,\"active\":true},{\"permalink\":\"42080\",\"name\":\"LAZY\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/902263/MD-001_PLA.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42080,\"wins\":220,\"id\":121,\"fights\":407,\"manufacturer\":\"B&B Italia\",\"description\":\"Armchair<br />\\n Design Patricia Urquiola (2003) <br />\\n<br />\\n Designed both for outdoor and indoor use, this seat has a metal frame and can be converted from a small armchair into a chaise lounge. In the designer&#8217;s words: &#8220;A vague creature \",\"global_rank\":281,\"active\":true},{\"permalink\":\"42067\",\"name\":\"FAT SOFA\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901171/MD-001_fat_sofa.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42067,\"wins\":198,\"id\":1,\"fights\":370,\"manufacturer\":\"B&B Italia\",\"description\":\"Seats system<br />\\nDesign Patricia Urquiola (2007) <br />\\n<br />\\nIn the beginning there was Fat-Fat, a multi-functional element that doubled as a table/container, from which the Fat-Fat coffee tables and then the Fat-Fat bed developed. Now these same ro\",\"global_rank\":303,\"active\":true},{\"permalink\":\"42068\",\"name\":\"LE BAMBOLE '07 Seating\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901340/MD-001_le_bambole.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42068,\"wins\":200,\"id\":11,\"fights\":372,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas and armchair<br />\\n Design Mario Bellini (2007) <br />\\n<br />\\n B&amp;B Italia is now presenting, in a renewed version, &#8220;Le Bambole&#8221; an incredibly successful collection designed in the 1970s, winner of the &#8220;Compasso d&#8217;Oro&#8\",\"global_rank\":312,\"active\":true},{\"permalink\":\"42279\",\"name\":\"HOLLOW Seating Collection\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/910414/MD-001_HO80.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42279,\"wins\":185,\"id\":501,\"fights\":354,\"manufacturer\":\"B&B Italia\",\"description\":\"Design Patricia Urquiola <br />\\n<br />\\nA modular compact seating series range for reception, lounge and meeting applications. Concave plastic panels enhance the appearance of lightness and give the product it&#8217;s name. Numerous variations in finishe\",\"global_rank\":324,\"active\":true},{\"permalink\":\"42074\",\"name\":\"J.J.\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901782/MD-001_jj95.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42074,\"wins\":209,\"id\":71,\"fights\":400,\"manufacturer\":\"B&B Italia\",\"description\":\"Small armchair\\n Design Antonio Citterio (2005) \\n\\n Designed as complements to the Arne system, the small armchairs J.J. are proposed in two different sizes: one for relax, with high backrest equipped with headrest and loinrest, and a lower one for conver\",\"global_rank\":341,\"active\":true},{\"permalink\":\"42183\",\"name\":\"AMOENUS AC\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/907944/MD-001_ac170g.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42183,\"wins\":41,\"id\":361,\"fights\":78,\"manufacturer\":\"B&B Italia\",\"description\":\"Ottoman-sofa<br />\\nDesign Antonio Citterio <br />\\n<br />\\nAmoenus is a range of chairs with a strong personality offering great comfort. Linear sofa with a deep seat padded with down; the corner or chaise lounge version marked by a sizeable and enveloping\",\"global_rank\":345,\"active\":true},{\"permalink\":\"42071\",\"name\":\"TUFTY-TIME LEATHER\",\"created_at\":\"2010-02-11T20:19:55Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/901613/MD-004_TUFTY_TIME.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42071,\"wins\":43,\"id\":41,\"fights\":83,\"manufacturer\":\"B&B Italia\",\"description\":\"Modular sofas<br />\\n Design Patricia Urquiola (2006) <br />\\n<br />\\n The extension of the Tufty-Time project is a more evident emphasis of the &#8220;Chesterfield&#8221; and &#8220;Capitonn&#233;&#8221; style, a special revival of the Sixties and the Sev\",\"global_rank\":371,\"active\":true},{\"permalink\":\"42195\",\"name\":\"SMT\",\"created_at\":\"2010-02-11T20:19:57Z\",\"image_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"asset_url\":\"http://s3.amazonaws.com/designerpages/assets/908295/MD-001_smt217.jpg\",\"updated_at\":\"2011-03-03T14:50:04Z\",\"dp_id\":42195,\"wins\":43,\"id\":471,\"fights\":84,\"manufacturer\":\"B&B Italia\",\"description\":\"Sofas, armchair and ottoman\\n AC Collection by Antonio Citterio \\n\\n Internal frame: tubular steel and steel sectionsInternal frame upholstery: Bayfit&#174; (Bayer&#174;) flexible cold shaped polyurethane foam, shaped polyurethane, polyester fibre waddingInt\",\"global_rank\":379,\"active\":true}],\"next_page_url\":\"http://localhost:3000/api/v1/wars/1/leaders.json?page=3&per_page=10&\",\"next_page\":3}"
55
+ http_version: "1.1"
@@ -13,11 +13,11 @@
13
13
  content-type:
14
14
  - application/json; charset=utf-8
15
15
  x-runtime:
16
- - "17"
16
+ - "18"
17
17
  server:
18
18
  - WEBrick/1.3.1 (Ruby/1.8.7/2009-06-12)
19
19
  date:
20
- - Tue, 15 Mar 2011 21:21:50 GMT
20
+ - Mon, 21 Mar 2011 15:53:51 GMT
21
21
  content-length:
22
22
  - "87"
23
23
  cache-control: