tcocca-etsy4r 0.3.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -7,11 +7,9 @@ If you need to build an API wrapper that gem is an enourmous help, refer to the
7
7
  http://railstips.org/2008/7/29/it-s-an-httparty-and-everyone-is-invited
8
8
 
9
9
  etsy4r wraps all of the etsy api calls into 1 nice library. Etsy's API is currenly in beta so this library will probably
10
- be changing frequently. Most likely their will only be additions.
11
-
12
- One thing that does not exist in the Etsy API is the ability to grab all the images for a listing so I have written a parser based on
13
- Hpricot. This may dissapear when etsy releases a call to get all images to their API.
10
+ be changing frequently. Most likely there will only be additions.
14
11
 
12
+ Etsy added all images to a listing details when the detail_level is set to :high so I have removed my Etsy4r::ImageParser class
15
13
 
16
14
  Etsy API
17
15
  =========
data/Rakefile CHANGED
@@ -22,7 +22,6 @@ begin
22
22
  "lib/etsy4r/favorite_commands.rb",
23
23
  "lib/etsy4r/feedback_commands.rb",
24
24
  "lib/etsy4r/gift_guide_commands.rb",
25
- "lib/etsy4r/image_parser.rb",
26
25
  "lib/etsy4r/listing_commands.rb",
27
26
  "lib/etsy4r/response.rb",
28
27
  "lib/etsy4r/server_commands.rb",
@@ -32,14 +31,12 @@ begin
32
31
  "spec/rcov.opts",
33
32
  "spec/spec.opts",
34
33
  "spec/spec_helper.rb",
35
- "spec/fixtures/images.html",
36
34
  "spec/etsy4r/category_commands_spec.rb",
37
35
  "spec/etsy4r/client_spec.rb",
38
36
  "spec/etsy4r/commands_spec.rb",
39
37
  "spec/etsy4r/favorite_commands_spec.rb",
40
38
  "spec/etsy4r/feedback_commands_spec.rb",
41
39
  "spec/etsy4r/gift_guide_commands_spec.rb",
42
- "spec/etsy4r/image_parser_spec.rb",
43
40
  "spec/etsy4r/listing_commands_spec.rb",
44
41
  "spec/etsy4r/server_commands_spec.rb",
45
42
  "spec/etsy4r/shop_commands_spec.rb",
@@ -50,7 +47,6 @@ begin
50
47
  ]
51
48
  s.authors = ["Tom Cocca"]
52
49
  s.add_dependency 'httparty'
53
- s.add_dependency 'hpricot'
54
50
  end
55
51
  rescue LoadError
56
52
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 2
2
+ :patch: 0
3
3
  :major: 0
4
- :minor: 3
4
+ :minor: 4
@@ -2,14 +2,14 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{etsy4r}
5
- s.version = "0.3.2"
5
+ s.version = "0.4.0"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Tom Cocca"]
9
- s.date = %q{2009-04-17}
9
+ s.date = %q{2009-04-28}
10
10
  s.description = %q{Handcrafted API Wrapper for Etsy utilizing httparty}
11
11
  s.email = %q{tom.cocca@gmail.com}
12
- s.files = ["README", "LICENSE", "Rakefile", "VERSION.yml", "etsy4r.gemspec", "lib/etsy4r.rb", "lib/etsy4r/category_commands.rb", "lib/etsy4r/client.rb", "lib/etsy4r/commands.rb", "lib/etsy4r/favorite_commands.rb", "lib/etsy4r/feedback_commands.rb", "lib/etsy4r/gift_guide_commands.rb", "lib/etsy4r/image_parser.rb", "lib/etsy4r/listing_commands.rb", "lib/etsy4r/response.rb", "lib/etsy4r/server_commands.rb", "lib/etsy4r/shop_commands.rb", "lib/etsy4r/tag_commands.rb", "lib/etsy4r/user_commands.rb", "spec/rcov.opts", "spec/spec.opts", "spec/spec_helper.rb", "spec/fixtures/images.html", "spec/etsy4r/category_commands_spec.rb", "spec/etsy4r/client_spec.rb", "spec/etsy4r/commands_spec.rb", "spec/etsy4r/favorite_commands_spec.rb", "spec/etsy4r/feedback_commands_spec.rb", "spec/etsy4r/gift_guide_commands_spec.rb", "spec/etsy4r/image_parser_spec.rb", "spec/etsy4r/listing_commands_spec.rb", "spec/etsy4r/server_commands_spec.rb", "spec/etsy4r/shop_commands_spec.rb", "spec/etsy4r/tag_commands_spec.rb", "spec/etsy4r/user_commands_spec.rb", "tasks/rspec.rake", "examples/etsy.rb"]
12
+ s.files = ["README", "LICENSE", "Rakefile", "VERSION.yml", "etsy4r.gemspec", "lib/etsy4r.rb", "lib/etsy4r/category_commands.rb", "lib/etsy4r/client.rb", "lib/etsy4r/commands.rb", "lib/etsy4r/favorite_commands.rb", "lib/etsy4r/feedback_commands.rb", "lib/etsy4r/gift_guide_commands.rb", "lib/etsy4r/listing_commands.rb", "lib/etsy4r/response.rb", "lib/etsy4r/server_commands.rb", "lib/etsy4r/shop_commands.rb", "lib/etsy4r/tag_commands.rb", "lib/etsy4r/user_commands.rb", "spec/rcov.opts", "spec/spec.opts", "spec/spec_helper.rb", "spec/etsy4r/category_commands_spec.rb", "spec/etsy4r/client_spec.rb", "spec/etsy4r/commands_spec.rb", "spec/etsy4r/favorite_commands_spec.rb", "spec/etsy4r/feedback_commands_spec.rb", "spec/etsy4r/gift_guide_commands_spec.rb", "spec/etsy4r/listing_commands_spec.rb", "spec/etsy4r/server_commands_spec.rb", "spec/etsy4r/shop_commands_spec.rb", "spec/etsy4r/tag_commands_spec.rb", "spec/etsy4r/user_commands_spec.rb", "tasks/rspec.rake", "examples/etsy.rb"]
13
13
  s.has_rdoc = true
14
14
  s.homepage = %q{http://github.com/tcocca/etsy4r}
15
15
  s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
@@ -23,13 +23,10 @@ Gem::Specification.new do |s|
23
23
 
24
24
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
25
25
  s.add_runtime_dependency(%q<httparty>, [">= 0"])
26
- s.add_runtime_dependency(%q<hpricot>, [">= 0"])
27
26
  else
28
27
  s.add_dependency(%q<httparty>, [">= 0"])
29
- s.add_dependency(%q<hpricot>, [">= 0"])
30
28
  end
31
29
  else
32
30
  s.add_dependency(%q<httparty>, [">= 0"])
33
- s.add_dependency(%q<hpricot>, [">= 0"])
34
31
  end
35
32
  end
@@ -31,7 +31,7 @@ puts Time.at(res.results.first)
31
31
  # These methods are available on every single call except on the image parser object
32
32
  if res.success?
33
33
  puts res.body .to_yaml # Return the full body response of the call
34
- puts res.results.to_yaml # Return the results (the actual deta) in an array of hashes
34
+ puts res.results.to_yaml # Return the results (the actual data) in an array of hashes
35
35
  puts res.count # Count of all pieces of data that the Query returned (note: this is a total count not the count returned)
36
36
  puts res.type # The type of result passed back
37
37
  puts res.params # The params passed in to the query
@@ -267,13 +267,3 @@ res = feedback.get_feedback_for_others('maymaydesigns')
267
267
  # :limit, :offset
268
268
  res = feedback.get_feedback_as_seller(5565464)
269
269
  res = feedback.get_feedback_as_seller('maymaydesigns')
270
-
271
-
272
- # Initialize an ImageParser object
273
- # This takes a single parameter which is the id of an Etsy listing
274
- image_parser = Etsy4r::ImageParser.new(19781773)
275
-
276
- # Calling images on the object return a hash of the images
277
- # The hash contains all the formatted URLs that Etsy returns
278
- # (for the single image they give for a listing)
279
- puts image_parser.images.to_yaml
@@ -13,4 +13,4 @@ require File.dirname(__FILE__) + '/etsy4r/tag_commands'
13
13
  require File.dirname(__FILE__) + '/etsy4r/favorite_commands'
14
14
  require File.dirname(__FILE__) + '/etsy4r/category_commands'
15
15
  require File.dirname(__FILE__) + '/etsy4r/feedback_commands'
16
- require File.dirname(__FILE__) + '/etsy4r/image_parser'
16
+
@@ -18,52 +18,3 @@ module Etsy4rSpecHelper
18
18
  end
19
19
 
20
20
  end
21
-
22
- module Etsy4rImageParserSpecHelper
23
-
24
- def test_image_hash
25
- {
26
- "0" => {
27
- "image_url_430xN" => "http://ny-image2.etsy.com/il_430xN.53071410.jpg",
28
- "image_url_200x200" => "http://ny-image2.etsy.com/il_200x200.53071410.jpg",
29
- "image_url_155x125" => "http://ny-image2.etsy.com/il_155x125.53071410.jpg",
30
- "image_url_75x75" => "http://ny-image2.etsy.com/il_75x75.53071410.jpg",
31
- "image_url_50x50" => "http://ny-image2.etsy.com/il_50x50.53071410.jpg",
32
- "image_url_25x25" => "http://ny-image2.etsy.com/il_25x25.53071410.jpg"
33
- },
34
- "1" => {
35
- "image_url_430xN" => "http://ny-image2.etsy.com/il_430xN.53071678.jpg",
36
- "image_url_200x200" => "http://ny-image2.etsy.com/il_200x200.53071678.jpg",
37
- "image_url_155x125" => "http://ny-image2.etsy.com/il_155x125.53071678.jpg",
38
- "image_url_75x75" => "http://ny-image2.etsy.com/il_75x75.53071678.jpg",
39
- "image_url_50x50" => "http://ny-image2.etsy.com/il_50x50.53071678.jpg",
40
- "image_url_25x25" => "http://ny-image2.etsy.com/il_25x25.53071678.jpg"
41
- },
42
- "2" => {
43
- "image_url_430xN" => "http://ny-image0.etsy.com/il_430xN.53498548.jpg",
44
- "image_url_200x200" => "http://ny-image0.etsy.com/il_200x200.53498548.jpg",
45
- "image_url_155x125" => "http://ny-image0.etsy.com/il_155x125.53498548.jpg",
46
- "image_url_75x75" => "http://ny-image0.etsy.com/il_75x75.53498548.jpg",
47
- "image_url_50x50" => "http://ny-image0.etsy.com/il_50x50.53498548.jpg",
48
- "image_url_25x25" => "http://ny-image0.etsy.com/il_25x25.53498548.jpg"
49
- },
50
- "3" => {
51
- "image_url_430xN" => "http://ny-image1.etsy.com/il_430xN.53498749.jpg",
52
- "image_url_200x200" => "http://ny-image1.etsy.com/il_200x200.53498749.jpg",
53
- "image_url_155x125" => "http://ny-image1.etsy.com/il_155x125.53498749.jpg",
54
- "image_url_75x75" => "http://ny-image1.etsy.com/il_75x75.53498749.jpg",
55
- "image_url_50x50" => "http://ny-image1.etsy.com/il_50x50.53498749.jpg",
56
- "image_url_25x25" => "http://ny-image1.etsy.com/il_25x25.53498749.jpg"
57
- },
58
- "4" => {
59
- "image_url_430xN" => "http://ny-image1.etsy.com/il_430xN.62643641.jpg",
60
- "image_url_200x200" => "http://ny-image1.etsy.com/il_200x200.62643641.jpg",
61
- "image_url_155x125" => "http://ny-image1.etsy.com/il_155x125.62643641.jpg",
62
- "image_url_75x75" => "http://ny-image1.etsy.com/il_75x75.62643641.jpg",
63
- "image_url_50x50" => "http://ny-image1.etsy.com/il_50x50.62643641.jpg",
64
- "image_url_25x25" => "http://ny-image1.etsy.com/il_25x25.62643641.jpg"
65
- }
66
- }
67
- end
68
-
69
- end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tcocca-etsy4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Cocca
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-17 00:00:00 -07:00
12
+ date: 2009-04-28 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,16 +22,6 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: "0"
24
24
  version:
25
- - !ruby/object:Gem::Dependency
26
- name: hpricot
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: "0"
34
- version:
35
25
  description: Handcrafted API Wrapper for Etsy utilizing httparty
36
26
  email: tom.cocca@gmail.com
37
27
  executables: []
@@ -53,7 +43,6 @@ files:
53
43
  - lib/etsy4r/favorite_commands.rb
54
44
  - lib/etsy4r/feedback_commands.rb
55
45
  - lib/etsy4r/gift_guide_commands.rb
56
- - lib/etsy4r/image_parser.rb
57
46
  - lib/etsy4r/listing_commands.rb
58
47
  - lib/etsy4r/response.rb
59
48
  - lib/etsy4r/server_commands.rb
@@ -63,14 +52,12 @@ files:
63
52
  - spec/rcov.opts
64
53
  - spec/spec.opts
65
54
  - spec/spec_helper.rb
66
- - spec/fixtures/images.html
67
55
  - spec/etsy4r/category_commands_spec.rb
68
56
  - spec/etsy4r/client_spec.rb
69
57
  - spec/etsy4r/commands_spec.rb
70
58
  - spec/etsy4r/favorite_commands_spec.rb
71
59
  - spec/etsy4r/feedback_commands_spec.rb
72
60
  - spec/etsy4r/gift_guide_commands_spec.rb
73
- - spec/etsy4r/image_parser_spec.rb
74
61
  - spec/etsy4r/listing_commands_spec.rb
75
62
  - spec/etsy4r/server_commands_spec.rb
76
63
  - spec/etsy4r/shop_commands_spec.rb
@@ -1,47 +0,0 @@
1
- module Etsy4r
2
- class ImageParser
3
-
4
- attr_accessor :listing_id, :parse_url, :images
5
-
6
- def initialize(listing_id)
7
- @listing_id = listing_id
8
- @parse_url = set_parse_url
9
- @images = parse_images
10
- end
11
-
12
- def parse_images
13
- return @images if @images
14
-
15
- listing_images = {}
16
- require 'hpricot'
17
- require 'open-uri'
18
-
19
- image_list = []
20
- doc = open(@parse_url) {|f| Hpricot(f)}
21
- img_table = doc.search("/html/body/table/tr/td/table/tr[2]/td/table/tr[3]/td/table/tr[2]/td/table/tr/td[2]/table")
22
- img_table.first.search('img').each do |img|
23
- image_list << img.attributes['src']
24
- end
25
- image_list.each_with_index do |img_url, i|
26
- img_dom = /\/\/(\S*)\//.match(img_url)[1]
27
- img_id = /\.([\d]*)\./.match(img_url)[1]
28
- listing_images["#{i}"] = {
29
- "image_url_430xN" => "http://#{img_dom}/il_430xN.#{img_id}.jpg",
30
- "image_url_200x200" => "http://#{img_dom}/il_200x200.#{img_id}.jpg",
31
- "image_url_155x125" => "http://#{img_dom}/il_155x125.#{img_id}.jpg",
32
- "image_url_75x75" => "http://#{img_dom}/il_75x75.#{img_id}.jpg",
33
- "image_url_50x50" => "http://#{img_dom}/il_50x50.#{img_id}.jpg",
34
- "image_url_25x25" => "http://#{img_dom}/il_25x25.#{img_id}.jpg"
35
- }
36
- end
37
- return listing_images
38
- end
39
-
40
- private
41
-
42
- def set_parse_url
43
- "http://www.etsy.com/view_listing.php?listing_id=#{@listing_id}"
44
- end
45
-
46
- end
47
- end
@@ -1,33 +0,0 @@
1
- require File.dirname(__FILE__) + '/../spec_helper'
2
- require File.dirname(__FILE__) + '/../../lib/etsy4r'
3
-
4
- describe Etsy4r::ImageParser do
5
- include Etsy4rSpecHelper
6
- include Etsy4rImageParserSpecHelper
7
-
8
- before do
9
- Etsy4r::ImageParser.any_instance.stubs(:set_parse_url).returns(File.dirname(__FILE__) + "/../fixtures/images.html")
10
- @image_parser = Etsy4r::ImageParser.new(19781773)
11
- end
12
-
13
- describe 'initialize' do
14
- it 'should set the url for the page to parse' do
15
- @image_parser.parse_url.should_not be_blank
16
- end
17
-
18
- it 'should set the listing_id' do
19
- @image_parser.listing_id.should == 19781773
20
- end
21
-
22
- it 'should set the images hash' do
23
- @image_parser.images.should_not be_nil
24
- end
25
- end
26
-
27
- describe 'get_images' do
28
- it 'should set images as a hash' do
29
- @image_parser.images.should == test_image_hash
30
- end
31
- end
32
-
33
- end
@@ -1,624 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
2
- <html>
3
-
4
- <head>
5
- <title>Etsy :: maymaydesigns :: Tree of Life Bag</title>
6
-
7
- <meta name="keywords" content="handmade,bags_and_purses,handmade,laptop,tote,messenger,fabric,tree,brown,recycled,forest,acorn,applique,women,large,maymaydesigns">
8
- <meta name="description" content="Handmade, this bag is 100% one of a kind. The entire bag is made from recycled materials and discontinued samples. Fits all of your day to day items. Since there are no magnetic closures it is safe to use with laptops* and other electr...">
9
- <link rel="alternate" type="application/rss+xml" title="RSS" href="rss_shop.php?user_id=5565464">
10
-
11
- <link rel="shortcut icon" href="/images/favicon.ico">
12
- <link href="/styles.css?ver=20090303" rel="stylesheet" type="text/css">
13
-
14
-
15
-
16
- </head>
17
-
18
- <body >
19
- <table class="big_n_tall centered_text" style="vertical-align:top;">
20
- <tr>
21
- <td style="vertical-align:top;"><table class="centered_text" style="width:760px; text-align:left;">
22
-
23
- <!-- begin header -->
24
- <tr>
25
- <td><table style="width:100%;">
26
-
27
- <!-- begin login bar -->
28
- <tr>
29
- <td><table style="background-color:#F5F5F1; width:100%; height:34px;">
30
- <tr>
31
- <td style="vertical-align:middle; width:100%"><table style="width:100%">
32
- <tr>
33
- <td class="left_align" style="vertical-align:middle; padding:0px 0px 0px 10px;"><table class="left_align">
34
- <tr>
35
-
36
- <td style="padding:0px 5px 0px 5px;"><a href="/cart1.php" title="Cart"><img src="/images/icon_headerCart.jpg" width="21" height="17" alt="Cart"/></a></td>
37
- <td class="orange_text" style="vertical-align:middle; font-weight:bold;"><a href="/cart1.php" title="Cart">Cart</a> 0 items</td>
38
- </tr>
39
- </table></td>
40
- <td style="text-align:right; vertical-align:middle;" class="right_align"><table class="right_align">
41
- <tr>
42
- <td style="font-weight:bold;"><a href="/faq.php" title="Help">Help</a></td>
43
-
44
- <td style="color:#CCCCCC; padding:0px 7px 0px 7px;">|</td>
45
- <td style="font-weight:bold;"><a href="/register.php" title="Register">Register</a></td>
46
- <td style="color:#CCCCCC; padding:0px 7px 0px 7px;">|</td>
47
- <td style="font-weight:bold; padding:0px 5px 0px 0px;"><a href="/login.php?from_page=view_listing.php?listing_id=19781773" title="Sign In">Sign In</a></td>
48
- </tr>
49
- </table></td>
50
- <td style="width:11px;"><img src="/images/top_roundedCorner2.gif" height="34" width="11" alt=""/></td>
51
-
52
- </tr>
53
- </table></td>
54
- </tr>
55
- </table></td>
56
- </tr>
57
- <!-- end login bar -->
58
-
59
- <!-- begin spacer row -->
60
- <tr>
61
- <td style="height:10px"></td>
62
-
63
- </tr>
64
- <!-- end spacer row -->
65
-
66
- <!-- begin logonav -->
67
- <tr>
68
- <td><table style="width:100%;">
69
- <tr style="background-color:#666759; height:30px;">
70
- <td rowspan="3" style="width:154px; height:80px; "><a href="/" title="Etsy"><img src="/images/logo.gif" alt="Etsy" width="154" height="80"/></a></td>
71
- <td rowspan="3" style="width:1px; height:80px; background-color:#FFF;"><img src="/images/1x1.gif" width="1" alt=""/></td>
72
-
73
- <td style="height:30px; width:100%; vertical-align:middle; background-image:url('/images/layout_logonav_bg.gif');"><table class="left_align" style="height:100%; vertical-align:middle;">
74
- <tr>
75
- <td class="logonav_button white_border_right white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/buy.php" title="Buy">Buy</a></td>
76
- <td class="logonav_button white_border_right white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/how_selling_works.php" title="Sell">Sell</a></td>
77
- <td class="logonav_button white_border_right white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/alchemy/" title="Custom">Custom</a></td>
78
- <td class="logonav_button white_border_right white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/community.php" title="Community">Community</a></td>
79
-
80
- <td class="logonav_button white_border_right white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/storque/" title="Blog">Blog</a></td>
81
- <td class="logonav_button white_text white_link" style="padding:0px 15px 0px 15px;"><a href="/your_etsy.php" title="Your Etsy">Your Etsy</a></td>
82
-
83
- </tr>
84
- </table></td>
85
- <td style="width:14px; background-image:url('/images/layout_logonav_bg.gif');" class="right_align"><img class="right_align" src="/images/layout_logonav_corner_grad.gif" width="14" height="30" alt=""/></td>
86
-
87
-
88
- </tr>
89
-
90
- <tr>
91
- <td colspan="2" style="height:1px;"></td>
92
- </tr>
93
- <tr>
94
- <td colspan="2" class="centered_text" style="background-color:#98968A; height:49px; vertical-align:middle;"><form action="/search.php" method="GET"><table class="centered_text">
95
- <tr>
96
- <td style="padding:0px 3px 0px 3px; vertical-align:middle;"><select style="vertical-align:middle;" class="big_search_dropbar" name="search_type">
97
- <option value="tag_title">Handmade Items: tags, titles</option>
98
-
99
- <option value="tag_title_description">Handmade Items: tags, titles, descriptions</option>
100
- <option value="tag_title_supplies">Supplies: tags, titles</option>
101
- <option value="tag_title_vintage">Vintage: tags, titles</option>
102
- <option value="tag_title_all">All items: tags, titles</option>
103
- <option value="seller_usernames">Sellers: usernames</option>
104
- <option value="materials">Materials</option>
105
-
106
- </select></td>
107
-
108
- <td style="vertical-align:middle;"><input type="text" style="vertical-align:middle;" class="big_searchbar" name="search_query" value=""/></td>
109
-
110
- <td style="padding:0px 0px 0px 3px; vertical-align:middle;"><input style="vertical-align:middle;" type="image" value="Search" src="/images/button_search.gif" alt="search" class="big_search_submit"/></td>
111
- </tr>
112
- </table></form></td>
113
- </tr>
114
- </table></td>
115
-
116
- </tr>
117
-
118
- <!-- end logonav -->
119
-
120
- </table></td>
121
- </tr>
122
- <!-- end header -->
123
-
124
-
125
- <!-- begin content -->
126
-
127
- <tr>
128
- <td class="big_n_tall">
129
-
130
- <table style="width:100%;">
131
- <tr>
132
- <td class="dark_grey_text" style="font-size:11px; padding:5px 5px 5px 15px; "><a href="index.php">Home</a> &gt; <a href="shop.php?user_id=5565464">maymaydesigns's shop</a> &gt; <a href="shop.php?user_id=5565464&section_id=5883677">Bag</a> &gt; <strong style="font-weight:normal;">Tree of Life Bag</strong></td>
133
- </tr>
134
-
135
- <tr>
136
- <td style="height:1px; background-image: url(http://www.etsy.com/images/dotted.gif);"></td>
137
- </tr>
138
- <tr>
139
- <!-- begin actual content -->
140
- <td><table style="width:100%;">
141
- <tr>
142
- <td style="height:10px;"></td>
143
- </tr>
144
-
145
- <tr>
146
- <td><table style="width:100%;">
147
- <tr>
148
- <!-- begin item info cell -->
149
- <td style="width:430px;"><table>
150
- <tr>
151
- <td style="padding:15px 15px 5px 15px;"><h1 style="font-size:18px; font-weight:bold; margin:0px;">Tree of Life Bag</h1></td>
152
- </tr>
153
-
154
- <tr>
155
- <td class="left_align"><div id="fullimage_link1"><span style="cursor:pointer; cursor:hand;" onclick="window.open('http://ny-image2.etsy.com/il_fullxfull.53071410.jpg')" ><img src="http://ny-image2.etsy.com/il_430xN.53071410.jpg" class="grey_border" width="430" alt="Tree of Life Bag"/></span></div></td>
156
- </tr>
157
- <tr>
158
- <td class="right_align"><div id="fullimage_link2"><span style="cursor:pointer; cursor:hand;" onclick="window.open('http://ny-image2.etsy.com/il_fullxfull.53071410.jpg')" ><img src="http://www.etsy.com/images/icon_zoom.gif" class="right_align" width="40" height="12" alt="zoom"/></span></div></td>
159
- </tr>
160
- <tr>
161
- <td class="orange_text" style="padding:0px 0px 0px 15px; font-size:14px; font-weight:bold;">Description</td>
162
-
163
- </tr>
164
- <tr>
165
- <td style="padding:15px 0px 0px 15px; font-size:13px;">Handmade, this bag is 100% one of a kind. The entire bag is made from recycled materials and discontinued samples. <br /><br />Fits all of your day to day items. Since there are no magnetic closures it is safe to use with laptops* and other electronics. <br />A large pocket inside to hold your phone, GPS, charger, camera and other accessories �secured by a matching wooden button. <br /><br />The tree is made up of 3 shades of green textured faux leather and a brown trunk. An acorn design on the back bottom corner adds to the overall design. A sturdy, adjustable belt is used for the strap. Button & twine closure. <br /><br />The last photo is of a similar bag...this Tree of Life bag is slightly larger. <br /><br />++++++++++++++++++++++++++++++++++<br />This tree<br />Is not only a tree<br />It is a friendly tree,<br />that is always watching over you.<br />This tree<br />Is not only a tree<br />It is a magical tree.<br />That makes miracles happen,<br />Hopes become realities,<br />And nevers become alwayses.<br />This tree<br />Is not only a tree,<br />It is where everything started.<br />It is the tree of life.<br />~Mia Ocean<br />++++++++++++++++++++++++++++++++++<br /><br />Bag Dimensions: Approx: 12� x 14 �� x 2 �� <br />Pocket Dimensions: 8 �� x 5 �� <br /><br />*As each laptop and electronic device are different, please confirm with me the approximate size & weight of your devices before purchasing for this use. <br /><br />Spot Clean<br /><br />Made with love from a smoke free home. </td>
166
-
167
- </tr>
168
- <tr>
169
- <td class="dark_grey_text" style="padding:15px 0px 0px 15px; font-size:13px;">Added on Mar 19, 2009</td>
170
- </tr>
171
- <tr>
172
- <td style="height:10px;"></td>
173
- </tr>
174
- <tr>
175
-
176
- <td class="row_grey"><table style="width:100%;">
177
- <tr>
178
- <td style="padding:10px 10px 10px 10px; width:25px; vertical-align:middle;"><img style="vertical-align:middle;" src="http://www.etsy.com/images/icon_tags.gif" alt="tags" width="26" height="26"/></td>
179
- <td style="padding:10px 0px 10px 0px; font-weight:bold; vertical-align:middle;">Tags</td>
180
- <td style="padding:10px 10px 10px 0px;"></td>
181
- <td style="padding:10px 10px 10px 10px; width:250px; vertical-align:middle;"><h3 style="margin: 0px 3px 0px 0px; font-size: 12px; font-weight: normal; float: left;"><a href="search_results_tags.php?search_query=bags_and_purses">bags and purses</a>, <a href="search_results_tags.php?search_query=handmade">handmade</a>, <a href="search_results_tags.php?search_query=laptop">laptop</a>, <a href="search_results_tags.php?search_query=tote">tote</a>, <a href="search_results_tags.php?search_query=messenger">messenger</a>, <a href="search_results_tags.php?search_query=fabric">fabric</a>, <a href="search_results_tags.php?search_query=tree">tree</a>, <a href="search_results_tags.php?search_query=brown">brown</a>, <a href="search_results_tags.php?search_query=recycled">recycled</a>, <a href="search_results_tags.php?search_query=forest">forest</a>, <a href="search_results_tags.php?search_query=acorn">acorn</a>, <a href="search_results_tags.php?search_query=applique">applique</a>, <a href="search_results_tags.php?search_query=women">women</a>, <a href="search_results_tags.php?search_query=large">large</a></h3></td>
182
-
183
- </tr>
184
- <tr>
185
- <td colspan="4" style="height:1px; background-color:#D1D2CD;"></td>
186
- </tr>
187
- <tr>
188
- <td style="padding:10px 10px 10px 10px; width:25px; vertical-align:middle;"><img style="vertical-align:middle;" src="http://www.etsy.com/images/icon_materials.gif" alt="materials" width="26" height="26"/></td>
189
- <td style="padding:10px 0px 10px 0px; font-weight:bold; vertical-align:middle;">Materials</td>
190
- <td style="padding:10px 10px 10px 0px;"></td>
191
-
192
- <td style="padding:10px 10px 10px 10px; width:250px; vertical-align:middle;"><h3 style="margin: 0px 3px 0px 0px; font-size: 12px; font-weight: normal; float: left;"><a href="search_results_materials.php?search_query=faux_leather">faux leather</a>, <a href="search_results_materials.php?search_query=fabric">fabric</a>, <a href="search_results_materials.php?search_query=belt">belt</a>, <a href="search_results_materials.php?search_query=wooden_buttons">wooden buttons</a>, <a href="search_results_materials.php?search_query=love">love</a></h3></td>
193
- </tr>
194
- </table></td>
195
- </tr>
196
-
197
- <tr>
198
- <td style="height:20px;"></td>
199
- </tr>
200
- <tr>
201
- <td><table>
202
- <tr>
203
- <td class="orange_text" style="padding-left:15px; font-size:14px; font-weight:bold;">Shipping</td>
204
- <td style="padding-left:10px;"></td>
205
-
206
- </tr>
207
- </table></td>
208
- </tr>
209
- <tr>
210
- <td style="height:10px;"></td>
211
- </tr>
212
- <tr>
213
- <td style="padding-left:15px; font-size:13px;">Item ships from: United States</td>
214
-
215
- </tr>
216
- <tr>
217
- <td style="height:10px;"></td>
218
- </tr>
219
- <tr>
220
- <td style="padding-left:15px; font-size:13px; font-weight:bold;">ship to:</td>
221
- </tr>
222
- <tr>
223
-
224
- <td style="padding-left:15px;"><table>
225
- <tr>
226
- <td style="font-size:13px; width:156px;">&bull; Everywhere Else:</td>
227
- <td style="font-size:13px;">$10.00 <span class="dark_grey_text"> ($10.00 if shipped with another item)</span></td>
228
- </tr>
229
- </table></td>
230
-
231
- </tr>
232
- <tr>
233
- <td style="height:15px;"></td>
234
- </tr>
235
- <tr>
236
- <td style="height:1px; background-color:#D1D2CD;"></td>
237
- </tr>
238
- <tr>
239
- <td style="height:15px;"></td>
240
-
241
- </tr>
242
- <tr>
243
- <td><table>
244
- <tr>
245
- <td class="orange_text" style="padding-left:15px; font-size:14px; font-weight:bold;">Payment Methods</td>
246
- <td style="padding-left:10px;"></td>
247
- </tr>
248
- </table></td>
249
-
250
- </tr>
251
- <tr>
252
- <td style="height:10px;"></td>
253
- </tr>
254
- <tr>
255
- <td style="padding-left:15px; font-size:13px;">maymaydesigns accepts the following forms of payment:</td>
256
- </tr>
257
- <tr>
258
-
259
- <td style="height:10px;"></td>
260
- </tr>
261
- <tr>
262
- <td style="padding-left:15px;"><table>
263
- <tr>
264
- <td style="padding-right:7px; font-size:13px;">&bull;</td>
265
- <td style="font-size:13px;"><table>
266
- <tr>
267
- <td><img src="http://www.etsy.com/images/icon_paypal.gif" width="74" height="25" alt="PayPal"/></td>
268
-
269
- <td><img src="http://www.etsy.com/images/icon_cc.gif" width="115" height="25" alt="Credit Cards"/></td>
270
- </tr>
271
- </table></td>
272
- </tr>
273
- </table></td>
274
- </tr>
275
- <tr>
276
- <td style="height:20px;"></td>
277
- </tr>
278
-
279
- <tr>
280
- <td class="row_grey" style="padding:15px;"><table style="width:100%;">
281
- <!--
282
- <tr>
283
- <td style="font-size:13px; font-weight:bold;">Want to comment on this item?</td>
284
- </tr>
285
- <tr>
286
- <td style="font-size:13px;"><a href="#">write about it in your Etsy blog (everybody has one)</a></td>
287
- </tr>
288
- -->
289
- <tr>
290
- <td style="font-size:13px; font-weight:bold; padding-top:5px;">Got a question about this item?</td>
291
- </tr>
292
- <tr>
293
- <td style="font-size:13px;">&bull; <a href="convo_new.php?to_username=maymaydesigns&referring_listing_id=19781773">contact the seller</a></li></td>
294
-
295
- </tr>
296
- <tr>
297
- <td style="font-size:13px;">&bull; <a href="shop_policy.php?user_id=5565464">view this shop's policies</a></td>
298
- </tr>
299
- <!--
300
- <tr>
301
- <td style="font-size:13px; font-weight:bold; padding-top:5px;">Close to what you're looking for, but not quite?</td>
302
- </tr>
303
- <tr>
304
- <td style="font-size:13px;"><a href="#">request a custom item from this seller using Alchemy</a></td>
305
- </tr>
306
- -->
307
- </table></td>
308
- </tr>
309
- </table></td>
310
-
311
- <!-- end item info cell -->
312
-
313
- <!-- begin thumbnail cell -->
314
- <td><table>
315
- <tr>
316
- <td style="font-size:18px; font-weight:bold; padding:15px 0px 5px 0px; ">&nbsp;</td>
317
- </tr>
318
- <tr>
319
- <td style="padding:0px 0px 0px 10px;"><table>
320
- <tr>
321
-
322
- <td style="padding:0px 0px 3px 0px;"><img onclick='changeImage("http://ny-image2.etsy.com/il_430xN.53071410.jpg" , "http://ny-image2.etsy.com/il_fullxfull.53071410.jpg" , "Tree of Life Bag")' style="cursor:pointer; cursor:hand;" src="http://ny-image2.etsy.com/il_75x75.53071410.jpg" class="grey_border" width="75" height="75" alt="Tree of Life Bag"/></td>
323
- </tr>
324
- <tr>
325
- <td style="padding:0px 0px 3px 0px;"><img onclick='changeImage("http://ny-image2.etsy.com/il_430xN.53071678.jpg" , "http://ny-image2.etsy.com/il_fullxfull.53071678.jpg" , "Tree of Life Bag")' style="cursor:pointer; cursor:hand;" src="http://ny-image2.etsy.com/il_75x75.53071678.jpg" class="grey_border" width="75" height="75" alt="Tree of Life Bag"/></td>
326
- </tr>
327
- <tr>
328
- <td style="padding:0px 0px 3px 0px;"><img onclick='changeImage("http://ny-image0.etsy.com/il_430xN.53498548.jpg" , "http://ny-image0.etsy.com/il_fullxfull.53498548.jpg" , "Tree of Life Bag")' style="cursor:pointer; cursor:hand;" src="http://ny-image0.etsy.com/il_75x75.53498548.jpg" class="grey_border" width="75" height="75" alt="Tree of Life Bag"/></td>
329
- </tr>
330
- <tr>
331
-
332
- <td style="padding:0px 0px 3px 0px;"><img onclick='changeImage("http://ny-image1.etsy.com/il_430xN.53498749.jpg" , "http://ny-image1.etsy.com/il_fullxfull.53498749.jpg" , "Tree of Life Bag")' style="cursor:pointer; cursor:hand;" src="http://ny-image1.etsy.com/il_75x75.53498749.jpg" class="grey_border" width="75" height="75" alt="Tree of Life Bag"/></td>
333
- </tr>
334
- <tr>
335
- <td style="padding:0px 0px 3px 0px;"><img onclick='changeImage("http://ny-image1.etsy.com/il_430xN.62643641.jpg" , "http://ny-image1.etsy.com/il_fullxfull.62643641.jpg" , "Tree of Life Bag")' style="cursor:pointer; cursor:hand;" src="http://ny-image1.etsy.com/il_75x75.62643641.jpg" class="grey_border" width="75" height="75" alt="Tree of Life Bag"/></td>
336
- </tr>
337
-
338
- </table></td>
339
- </tr>
340
- </table></td>
341
- <!-- end thumbnail cell -->
342
-
343
-
344
- <!-- begin right sidebar -->
345
- <td style="width:200px; padding:15px 0px 0px 40px;"><table style="width:100%;">
346
- <tr>
347
- <td style="padding: 0px 0px 3px 0;"><table>
348
- <tr>
349
- <td> <table>
350
- <tr>
351
- <td class="centered_text" style="font-size:18px; font-weight:bold;">$</td><td style="font-size:18px; font-weight:bold;">120.00</td>
352
-
353
- </tr>
354
- <tr>
355
- <td class="centered_text"><img src="images/icon_currency_usd.gif" width="14" height="5" alt="usd"/></td><td></td>
356
- </tr>
357
- </table>
358
- </td>
359
-
360
- <td class="dark_grey_text" style="font-size:11px; padding:0px 0px 6px 10px; vertical-align:bottom;">1 in stock</td>
361
- </tr>
362
-
363
- </table></td>
364
- </tr>
365
- <!-- add to cart button -->
366
- <tr>
367
- <td><a href="add_to_cart.php?listing_id=19781773"><img src="http://www.etsy.com/images/button_add_to_cart.gif" alt="buy" width="154" height="44"/></a></td>
368
- </tr>
369
- <tr>
370
- <td style="padding:10px 0px 0px 0px;"><table class="grey_border">
371
- <tr>
372
-
373
- <td class="very_dark_grey_text row_white" style="width:200px; height:25px; vertical-align:middle; padding:0px 0px 0px 10px; font-weight:bold; background-repeat: repeat-y; background-image:url('http://www.etsy.com/images/bg_grey_gradient.gif');">maymaydesigns's info</td>
374
- </tr>
375
- <tr>
376
- <td class="row_light_grey" style="padding:0px 7px 12px 7px;"><table>
377
- <tr>
378
- <td><img src="http://ny-image0.etsy.com/iusa_50x50.5778460.jpg" class="grey_border" width="50" height="50" alt="maymaydesigns"/></td>
379
- <td style="vertical-align:middle; padding:0px 0px 0px 10px;"><table>
380
- <tr>
381
-
382
- <td style="font-size:13px; font-weight:bold;">maymaydesigns</td>
383
- </tr>
384
- <tr>
385
- <td style="font-size:11px;"><a href="shop.php?user_id=5565464">shop</a> . <a href="profile.php?user_id=5565464">profile</a> . <a href="convo_new.php?to_username=maymaydesigns">contact</a></td>
386
- </tr>
387
-
388
- </table></td>
389
- </tr>
390
-
391
- <tr>
392
- <td style="padding:10px 0px 0px 5px;" class="dark_grey_text">rating:</td>
393
- <td style="padding:10px 0px 0px 10px;"><a href="feedback_public.php?user_id=5565464">2, 100% pos.</a></td>
394
- </tr>
395
- <tr>
396
- <td style="padding:5px 0px 0px 5px;" class="dark_grey_text">joined:</td>
397
-
398
- <td style="padding:5px 0px 0px 10px;">Jan 23, 2008</td>
399
- </tr>
400
- <tr>
401
- <td style="padding:5px 0px 0px 5px;" class="dark_grey_text">location:</td>
402
- <td style="padding:5px 0px 0px 10px;"><a href="geolocator.php#/places/monroe,+ny,+usa/1/ ">Monroe, NY, USA</a></td>
403
- </tr>
404
- </table></td>
405
-
406
- </tr>
407
-
408
- <tr>
409
- <td class="very_dark_grey_text row_white" style="width:200px; height:25px; vertical-align:middle; padding:0px 0px 0px 10px; font-weight:bold; background-image:url('http://www.etsy.com/images/bg_grey_gradient.gif');">seller's other items</td>
410
- </tr>
411
- <tr>
412
- <td class="row_light_grey" style="padding:7px;"><table class="centered_text">
413
- <tr>
414
- <td style="padding:0px 3px 0px 0px; vertical-align:middle;">
415
-
416
- <a href="view_listing.php?listing_id=19940420"><img src="http://www.etsy.com/images/icon_arrow_left_grey.gif" alt="" width="7" height="13"/></a>
417
- </td>
418
- <td>
419
-
420
- <a href="view_listing.php?ref=vl_other_1&amp;listing_id=19940420"><img src="http://ny-image2.etsy.com/il_75x75.59938342.jpg" class="grey_border" width="75" height="75" alt="Turquoise Dragonfly Purse"/></a>
421
-
422
- </td>
423
- <td style="padding:0px 0px 0px 5px;">
424
- <a href="view_listing.php?ref=vl_other_2&amp;listing_id=19750120"><img src="http://ny-image0.etsy.com/il_75x75.52967144.jpg" class="grey_border" width="75" height="75" alt="Blue Floral Purse"/></a>
425
- </td>
426
- <td style="padding:0px 0px 0px 3px; vertical-align:middle;">
427
-
428
- <a href="view_listing.php?listing_id=19750120"><img src="http://www.etsy.com/images/icon_arrow_right_grey.gif" alt="" width="7" height="13"/></a>
429
- </td>
430
- </tr>
431
- <tr>
432
- <td></td>
433
- <td colspan="3" style="padding:8px 0px 0px 0px;" class="left_align"><a href="shop.php?user_id=5565464">39 items for sale</a></td>
434
- </tr>
435
- </table></td>
436
-
437
- </tr>
438
- <tr>
439
- <td class="very_dark_grey_text row_white" style="width:200px; height:25px; vertical-align:middle; padding:0px 0px 0px 10px; font-weight:bold; background-repeat: repeat-y; background-image:url('http://www.etsy.com/images/bg_grey_gradient.gif');">favorites</td>
440
- </tr>
441
- <tr>
442
- <td class="row_light_grey" style="padding:7px;"><table class="buttons">
443
- <tr>
444
-
445
- <td style="padding:3px 0px 0px 5px;"><img id="ajaxLoaderIconHeartItem" width="16" height="16" src="images/ajax-loader.gif" style="display: none;"/><img id="imgHeartItem" src="http://www.etsy.com/images/icon_add_item_to_favorites.gif" width="16" height="16" alt="Add item to favorites"/></td>
446
-
447
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><span id="spanHeartItemResult" style="display: none;">Item added to favorites</span><a id="aHeartItem" href="/login.php?from_page=%2Fview_listing.php%3Flisting_id%3D19781773">Add item to favorites</a></td>
448
- </tr>
449
- <tr>
450
- <td style="padding:3px 0px 0px 5px;"><img id="ajaxLoaderIconHeartSeller" width="16" height="16" src="images/ajax-loader.gif" style="display: none;"/><img id="imgHeartSeller" src="http://www.etsy.com/images/icon_add_seller_to_favorite.gif" width="16" height="16" alt="Add seller to favorites"/></td>
451
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><span id="spanHeartSellerResult" style="display: none;">Shop added to favorites</span><a id="aHeartSeller" href="/login.php?from_page=%2Fview_listing.php%3Flisting_id%3D19781773">Add seller to favorites</a></td>
452
- </tr>
453
-
454
-
455
-
456
- <tr>
457
-
458
- <td style="padding:3px 0px 0px 5px;"><img src="http://www.etsy.com/images/icon_see_who_hearts.gif" width="16" height="16" alt="See who hearts this shop"/></td>
459
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><a href="hearts_me.php?user_id=5565464" title="See who hearts this shop">See who hearts this shop</a></td>
460
- </tr>
461
- <tr>
462
- <td style="padding:3px 0px 0px 5px;"><img src="http://www.etsy.com/images/icon_see_who_hearts.gif" width="16" height="16" alt="See who hearts this item"/></td>
463
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><a href="hearts_me.php?listing_id=19781773" title="See who hearts this item">See who hearts this item</a></td>
464
- </tr>
465
- </table></td>
466
- </tr>
467
-
468
- <tr>
469
- <td class="very_dark_grey_text row_white" style="width:200px; height:25px; vertical-align:middle; padding:0px 0px 0px 10px; font-weight:bold; background-repeat: repeat-y; background-image:url('http://www.etsy.com/images/bg_grey_gradient.gif');">page tools</td>
470
- </tr>
471
- <tr>
472
- <td class="row_light_grey" style="padding:7px;"><table><tr>
473
- <td style="padding:3px 0px 0px 5px;"><img src="http://www.etsy.com/images/icon_email_friend.gif" width="16" height="16" alt="Tell a friend"/></td>
474
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><a href="mailto:?subject=Check out this shop on Etsy&body=Hi there,%0D%0A%0D%0AI saw this on Etsy and I liked it so much I wanted to share it with you.%0D%0A%0D%0Ahttp://maymaydesigns.etsy.com %0D%0A%0D%0AEtsy is an online marketplace for buying and selling all things handmade.">Tell a friend</a></td>
475
- </tr>
476
-
477
- <tr>
478
- <td style="padding:3px 0px 0px 5px;"><img src="/images/icon_share.gif" width="16" height="16" border="0" alt="" /></td>
479
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;">
480
- <script type="text/javascript">var addthis_pub = "etsyrules"; var addthis_options = "twitter,facebook,stumbleupon,myspace,google,kaboodle,stylehive,delicious,thisnext,friendfeed";var addthis_offset_top = -15;addthis_caption_share="Bookmark and share";</script>
481
- <a href="http://www.addthis.com/bookmark.php" onclick="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()">Bookmark and share</a>
482
- </td>
483
- </tr>
484
- <tr>
485
-
486
- <td style="padding:3px 0px 0px 5px;"><img src="/images/icon_rss.gif" width="16" height="16" alt="Tell a friend"/></td>
487
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;"><a href="/rss_shop.php?user_id=5565464">Subscribe to shop feed</a></td>
488
- </tr>
489
- <tr>
490
- <td style="padding:3px 0px 0px 5px;"><img src="images/icon_flag.gif" width="16" height="16" alt="Report this item to Etsy"/></td>
491
- <td style="padding:3px 0px 0px 5px; vertical-align:middle;" id="report">
492
- <div id="reporterLinkContainer" >
493
- <a id="reporter" href="/login.php?from_page=%2Fview_listing.php%3Flisting_id%3D19781773%26report%3Dreport%23report">Report this item to Etsy</a>
494
-
495
- </div>
496
- <div class="orange_text" id="reporterTitleContainer" style="font-weight:bold;display: none;">Report this item to Etsy</div>
497
- <div id="reporterCompleteContainer" class="grey_text" style="font-size:12px; display: none;">
498
- <span class="orange_text">You reported this item</span>
499
- </div>
500
- </td>
501
- </tr>
502
- <tr>
503
-
504
- <td colspan="2" style="padding:3px 0px 0px 5px;">
505
- </td>
506
- </tr> </table></td>
507
- </tr>
508
- <tr>
509
- <td class="very_dark_grey_text row_white" style="width:200px; height:25px; vertical-align:middle; padding:0px 0px 0px 10px; font-weight:bold; background-image:url('http://www.etsy.com/images/bg_grey_gradient.gif');">additional item info</td>
510
- </tr>
511
- <tr>
512
-
513
- <td class="row_light_grey" style="padding:10px;"><table>
514
- <tr>
515
- <td class="dark_grey_text" style="padding:0px 0px 3px 0px;">Listed on Mar 19, 2009</td>
516
- </tr>
517
- <tr>
518
- <td class="dark_grey_text" style="padding:0px 0px 3px 0px;">Listing # 19781773</td>
519
- </tr>
520
-
521
- <tr>
522
-
523
- <td class="dark_grey_text" style="padding:0px 0px 3px 0px;">
524
- Viewed 583 times
525
- </td>
526
- </tr>
527
- </table></td>
528
- </tr>
529
- </table></td>
530
- </tr>
531
- <input type="hidden" id="jsnnc" value="" />
532
-
533
- <tr>
534
-
535
- <td style="height:15px;"></td>
536
- </tr>
537
- <tr>
538
- <td style="padding:0px 0px 3px 10px;"><table>
539
- <tr>
540
- <td> <table>
541
- <tr>
542
- <td class="centered_text" style="font-size:18px; font-weight:bold;">$</td><td style="font-size:18px; font-weight:bold;">120.00</td>
543
-
544
- </tr>
545
- <tr>
546
- <td class="centered_text"><img src="images/icon_currency_usd.gif" width="14" height="5" alt="usd"/></td><td></td>
547
- </tr>
548
- </table>
549
- </td>
550
-
551
- <td class="dark_grey_text" style="font-size:11px; padding:0px 0px 6px 10px; vertical-align:bottom;">1 in stock</td>
552
- </tr>
553
-
554
- </table></td>
555
- </tr>
556
- <tr>
557
- <td style="padding: 0 0 6px 6px"><a href="add_to_cart.php?listing_id=19781773"><img src="http://www.etsy.com/images/button_add_to_cart.gif" alt="buy" width="154" height="44"/></a></td>
558
- </tr>
559
- </table></td>
560
- <!-- end right sidebar -->
561
- </tr>
562
- </table></td>
563
-
564
- </tr>
565
- </table><script type="text/javascript">
566
- function changeImage(imageUrl,fullimageUrl,title)
567
- {
568
- document.getElementById('fullimage_link1').innerHTML='<span style="cursor:pointer; cursor:hand;" onclick="window.open(\''+fullimageUrl+'\',\'_blank\'); return false;" ><img src="'+imageUrl+'" class="grey_border" width="430" alt="'+title+'"/><\/span>';
569
- document.getElementById('fullimage_link2').innerHTML='<span style="cursor:pointer; cursor:hand;" onclick="window.open(\''+fullimageUrl+'\',\'_blank\'); return false;" ><img src="http://www.etsy.com/images/icon_zoom.gif" class="right_align" width="40" height="12" alt="zoom"/><\/span>';
570
- }
571
- </script></td>
572
- <!-- end actual content -->
573
- </tr>
574
- </table></td>
575
- </tr>
576
- <!-- end content -->
577
- <!-- begin footer -->
578
- <tr>
579
-
580
- <td style="height:60px;"></td>
581
- </tr>
582
- <tr>
583
- <td style="border-width:1px 0px 0px 0px; border-style:solid; border-color:#EAEAEA;"><table style="width:100%; margin:7px 0px 7px 0px;">
584
- <tr>
585
-
586
- <td class="dark_grey_text" style="font-size:11px;"><a href="/about.php">About</a> | <a href="http://press.etsy.com">Press</a> | <a href="http://www.etsy.com/contact.php">Contact</a> | <a href="http://team.etsy.com">Teams</a> | <a href="http://www.etsy.com/jobs/">Jobs</a> | <a href="http://www.etsy.com/shop.php?user_id=5029420">Merch</a> | <a href="http://developer.etsy.com">Developers</a><br/>
587
-
588
- <a href="/terms_of_use.php">Terms of Use</a> | <a href="/privacy_policy.php">Privacy Policy</a> | <a href="/copyright_policy.php">Copyright Policy</a></td>
589
- <td class="dark_grey_text" style="text-align:right; font-size:11px;">&copy; 2009 Etsy Inc.</td>
590
-
591
- </tr>
592
- </table></td>
593
-
594
- </tr>
595
- <!-- end footer -->
596
-
597
- </table></td>
598
- </tr>
599
- </table>
600
-
601
- <script type="text/javascript">
602
- var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
603
- document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
604
- </script>
605
- <script type="text/javascript">
606
- var pageTracker = _gat._getTracker("UA-2409779-1");
607
- pageTracker._initData();
608
-
609
- pageTracker._trackPageview();
610
-
611
- var sellerPageTracker = _gat._getTracker("UA-7846240-1");
612
- sellerPageTracker._setDomainName("www.etsy.com");
613
- sellerPageTracker._setAllowLinker(true);
614
- sellerPageTracker._initData();
615
- sellerPageTracker._trackPageview();
616
-
617
- </script>
618
-
619
-
620
- <script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
621
-
622
- </body>
623
- </html>
624
- <!-- cached version -->