mofo 0.1 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. data/CHANGELOG +4 -0
  2. data/lib/microformat.rb +11 -1
  3. data/lib/microformat/simple.rb +21 -17
  4. data/lib/mofo/hentry.rb +1 -1
  5. data/lib/mofo/hreview.rb +0 -2
  6. data/lib/mofo/rel_tag.rb +0 -1
  7. data/tests/fixtures/bob.html +69 -0
  8. data/tests/fixtures/chowhound.html +1052 -0
  9. data/tests/fixtures/corkd.html +403 -0
  10. data/tests/fixtures/events.html +39 -0
  11. data/tests/fixtures/fake.html +1 -0
  12. data/tests/fixtures/fauxtank.html +535 -0
  13. data/tests/fixtures/hatom.html +1101 -0
  14. data/tests/fixtures/simple.html +5 -0
  15. data/tests/fixtures/upcoming.html +335 -0
  16. data/tests/format_test.rb +230 -0
  17. data/tests/hatom_test.rb +39 -0
  18. data/tests/test_helper.rb +6 -0
  19. data/tests/xoxo_test.rb +49 -0
  20. data/vendor/testspec-0.2.0/ChangeLog +120 -0
  21. data/vendor/testspec-0.2.0/README +206 -0
  22. data/vendor/testspec-0.2.0/ROADMAP +3 -0
  23. data/vendor/testspec-0.2.0/Rakefile +86 -0
  24. data/vendor/testspec-0.2.0/SPECS +101 -0
  25. data/vendor/testspec-0.2.0/TODO +1 -0
  26. data/vendor/testspec-0.2.0/bin/specrb +103 -0
  27. data/vendor/testspec-0.2.0/examples/stack.rb +38 -0
  28. data/vendor/testspec-0.2.0/examples/stack_spec.rb +119 -0
  29. data/vendor/testspec-0.2.0/lib/test/spec.rb +366 -0
  30. data/vendor/testspec-0.2.0/lib/test/spec/dox.rb +114 -0
  31. data/vendor/testspec-0.2.0/lib/test/spec/rdox.rb +25 -0
  32. data/vendor/testspec-0.2.0/lib/test/spec/should-output.rb +48 -0
  33. data/vendor/testspec-0.2.0/rdoc/classes/Kernel.html +105 -0
  34. data/vendor/testspec-0.2.0/rdoc/classes/Object.html +154 -0
  35. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec.html +132 -0
  36. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/DefinitionError.html +111 -0
  37. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/Should.html +863 -0
  38. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/ShouldNot.html +411 -0
  39. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/TestCase.html +220 -0
  40. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/TestCase/ClassMethods.html +290 -0
  41. data/vendor/testspec-0.2.0/rdoc/classes/Test/Spec/TestCase/InstanceMethods.html +195 -0
  42. data/vendor/testspec-0.2.0/rdoc/classes/Test/Unit/UI/RDox/TestRunner.html +222 -0
  43. data/vendor/testspec-0.2.0/rdoc/classes/Test/Unit/UI/SpecDox/TestRunner.html +468 -0
  44. data/vendor/testspec-0.2.0/rdoc/created.rid +1 -0
  45. data/vendor/testspec-0.2.0/rdoc/files/README.html +409 -0
  46. data/vendor/testspec-0.2.0/rdoc/files/ROADMAP.html +112 -0
  47. data/vendor/testspec-0.2.0/rdoc/files/SPECS.html +365 -0
  48. data/vendor/testspec-0.2.0/rdoc/files/lib/test/spec/dox_rb.html +108 -0
  49. data/vendor/testspec-0.2.0/rdoc/files/lib/test/spec/rdox_rb.html +108 -0
  50. data/vendor/testspec-0.2.0/rdoc/files/lib/test/spec/should-output_rb.html +114 -0
  51. data/vendor/testspec-0.2.0/rdoc/files/lib/test/spec_rb.html +123 -0
  52. data/vendor/testspec-0.2.0/rdoc/fr_class_index.html +37 -0
  53. data/vendor/testspec-0.2.0/rdoc/fr_file_index.html +33 -0
  54. data/vendor/testspec-0.2.0/rdoc/fr_method_index.html +95 -0
  55. data/vendor/testspec-0.2.0/rdoc/index.html +24 -0
  56. data/vendor/testspec-0.2.0/rdoc/rdoc-style.css +208 -0
  57. data/vendor/testspec-0.2.0/test/spec_dox.rb +39 -0
  58. data/vendor/testspec-0.2.0/test/spec_flexmock.rb +210 -0
  59. data/vendor/testspec-0.2.0/test/spec_mocha.rb +118 -0
  60. data/vendor/testspec-0.2.0/test/spec_nestedcontexts.rb +26 -0
  61. data/vendor/testspec-0.2.0/test/spec_should-output.rb +26 -0
  62. data/vendor/testspec-0.2.0/test/spec_testspec.rb +311 -0
  63. data/vendor/testspec-0.2.0/test/spec_testspec_order.rb +26 -0
  64. data/vendor/testspec-0.2.0/test/test_testunit.rb +21 -0
  65. metadata +81 -2
data/CHANGELOG CHANGED
@@ -1,2 +1,6 @@
1
+ = 0.1.1
2
+ - Moved from RSpec to test/spec (in vendor/)
3
+ - Built rel='tag' into the parser (no need to specify it in formats)
4
+
1
5
  = 0.1
2
6
  - First release.
data/lib/microformat.rb CHANGED
@@ -124,6 +124,11 @@ class Microformat
124
124
  hash[:bookmark] = bookmark
125
125
  end
126
126
 
127
+ # rel="tag" pattern
128
+ if tags = extract_tags(doc)
129
+ hash[:tags] = tags
130
+ end
131
+
127
132
  found = doc/".#{key.no_bang.to_s.gsub('_','-')}"
128
133
  raise InvalidMicroformat if found.empty? && key.to_s =~ /!/
129
134
  next if found.empty?
@@ -155,10 +160,15 @@ class Microformat
155
160
  end
156
161
 
157
162
  def extract_bookmark(doc)
158
- bookmark = doc.search("[@rel='bookmark']").first rescue nil
163
+ bookmark = doc.search("[@rel=bookmark]").first rescue nil
159
164
  bookmark.attributes['href'] if bookmark.respond_to? :attributes
160
165
  end
161
166
 
167
+ def extract_tags(doc)
168
+ return unless (tags = doc.search("[@rel=tag]")).size.nonzero?
169
+ tags.inject([]) { |array, tag| array + [tag.innerText] }
170
+ end
171
+
162
172
  def parse_element(element, target = nil)
163
173
  if target == :url
164
174
  case element.name
@@ -1,27 +1,31 @@
1
1
  require 'microformat'
2
2
 
3
- class Microformat::Simple < String
4
- extend Microformat::Base
3
+ class Microformat
4
+ class Simple < String
5
+ extend Microformat::Base
5
6
 
6
- class << self
7
- def find_first(doc)
8
- find_every(doc).first
9
- end
7
+ class << self
8
+ def find_first(doc)
9
+ find_every(doc).first
10
+ end
11
+
12
+ def find_occurances(doc)
13
+ @from ? doc/from_as_xpath : super(doc)
14
+ end
10
15
 
11
- def build_class(tags)
12
- @from.inject([]) do |array, (key, value)|
13
- tags.each_child do |tag|
14
- next unless tag.respond_to? :attributes
15
- array << new(tag.innerHTML) if tag.attributes[key.to_s] == value.to_s
16
+ def build_class(tag)
17
+ new(tag.innerText)
18
+ end
19
+
20
+ def from(options)
21
+ @from ||= []
22
+ options.each do |tag, value|
23
+ @from << "@#{tag}=#{value}"
16
24
  end
17
- array
18
25
  end
19
- end
20
26
 
21
- def from(options)
22
- @from ||= {}
23
- options.each do |tag, value|
24
- @from[tag] = value
27
+ def from_as_xpath
28
+ "[#{@from.to_a * "|"}]"
25
29
  end
26
30
  end
27
31
  end
data/lib/mofo/hentry.rb CHANGED
@@ -7,5 +7,5 @@ class HEntry < Microformat
7
7
  one :entry_title!, :entry_summary, :updated, :published,
8
8
  :author => HCard
9
9
 
10
- many :entry_content, :tags => RelTag
10
+ many :entry_content
11
11
  end
data/lib/mofo/hreview.rb CHANGED
@@ -11,6 +11,4 @@ class HReview < Microformat
11
11
  one :item! do
12
12
  one :fn
13
13
  end
14
-
15
- many :tags => RelTag
16
14
  end
data/lib/mofo/rel_tag.rb CHANGED
@@ -2,6 +2,5 @@
2
2
  require 'microformat/simple'
3
3
 
4
4
  class RelTag < Microformat::Simple
5
- container :tags
6
5
  from :rel => :tag
7
6
  end
@@ -0,0 +1,69 @@
1
+ <!DOCTYPE html
2
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
4
+ <html>
5
+
6
+ <head>
7
+
8
+ <base target="_top" />
9
+ <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
10
+ <title>nubhub: the essential you</title>
11
+
12
+ <link href="/stylesheets/yahoo/reset.css?1161835296" media="screen" rel="Stylesheet" type="text/css" />
13
+ <link href="/stylesheets/yahoo/fonts.css?1161835296" media="screen" rel="Stylesheet" type="text/css" />
14
+ <link href="/stylesheets/standard.css?1161835296" media="screen" rel="Stylesheet" type="text/css" />
15
+
16
+ <script src="/javascripts/prototype.js?1161835296" type="text/javascript"></script>
17
+ <script src="/javascripts/effects.js?1161835296" type="text/javascript"></script>
18
+ <script src="/javascripts/dragdrop.js?1161835296" type="text/javascript"></script>
19
+ <script src="/javascripts/controls.js?1161835296" type="text/javascript"></script>
20
+ <script src="/javascripts/application.js?1161835296" type="text/javascript"></script>
21
+
22
+ </head>
23
+
24
+ <body>
25
+
26
+ <div id="top_nav_left">
27
+ <a href="/">nubhub</a>
28
+ </div>
29
+
30
+ <div id="top_nav_right">
31
+
32
+ <a href="/session/new">login</a> |
33
+ <a href="/accounts/new">signup</a>
34
+
35
+ </div>
36
+
37
+
38
+ <div class="box1" id="card">
39
+
40
+ <div class="vcard">
41
+
42
+
43
+ <h1>
44
+ <a href="http://nubhub.com/bob" class="url fn n">
45
+ <span class="given-name">Robert</span>
46
+ <span class="additional-name">Albert</span>
47
+ <span class="family-name">Smith</span>
48
+ </a>
49
+ </h1>
50
+
51
+ <h2 class="org">Acme Corp</h2>
52
+
53
+ Home: <a class="email" href="mailto:bob@gmail.com"><span class="type" style="display:none;">home</span> <span class="value">bob@gmail.com</span></a><br>
54
+ Work: <a class="email" href="mailto:robert@yahoo.com"><span class="type" style="display:none;">work</span> <span class="value">robert@yahoo.com</span></a><br>
55
+ Home: <a class="email" href="mailto:bobby@gmail.com"><span class="type" style="display:none;">home</span> <span class="value">bobby@gmail.com</span></a><br>
56
+
57
+ Home: <span class="tel"><span class="type" style="display:none;">home</span> <span class="value">707-555-9990</span></span><br>
58
+ Cell: <span class="tel"><span class="type" style="display:none;">cell</span> <span class="value">707-555-4756</span></span><br>
59
+
60
+
61
+
62
+
63
+ </div><!-- /vcard -->
64
+
65
+ </div><!-- /card -->
66
+
67
+ </body>
68
+
69
+ </html>
@@ -0,0 +1,1052 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+
5
+ <head>
6
+
7
+ <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
8
+
9
+ <title>Home - Chowhound</title>
10
+
11
+ <link href="/stylesheets/dragonwell.1163017989.css" media="screen" rel="Stylesheet" type="text/css" />
12
+ <link href="/stylesheets/redbox.1161392969.css" media="screen" rel="Stylesheet" type="text/css" />
13
+
14
+ <script src="/javascripts/prototype.1145428694.js" type="text/javascript"></script>
15
+ <script src="/javascripts/effects.1150692787.js" type="text/javascript"></script>
16
+ <script src="/javascripts/dragdrop.1150692787.js" type="text/javascript"></script>
17
+ <script src="/javascripts/controls.1150851066.js" type="text/javascript"></script>
18
+ <script src="/javascripts/application.1161555687.js" type="text/javascript"></script>
19
+
20
+ <script src="/javascripts/redbox.1161392909.js" type="text/javascript"></script>
21
+ <script src="/javascripts/spy.1158862094.js" type="text/javascript"></script>
22
+
23
+
24
+
25
+ <!--[if IE]>
26
+ <link rel="stylesheet" type="text/css" href="/stylesheets/ie-overrides-global.css" />
27
+ <![endif]-->
28
+
29
+ </head>
30
+
31
+ <body>
32
+
33
+ <div id="container">
34
+
35
+ <!-- start _header -->
36
+
37
+ <div id="banner">
38
+ <div class="inner">
39
+
40
+ <h1><a href="/">Chowhound</a></h1>
41
+
42
+
43
+ <div id="userinfo">
44
+ <a href="/account/login?return_to=%2F">Log in</a> | <a href="/account/signup?return_to=%2F">Sign up</a>
45
+ <br>
46
+ <table align=right><tr><td height=3></td></tr><tr><td><a href="/boards/show/43"><font color="#8c0000">Help</font></a></td><td></td></tr></table>
47
+ </div><!-- /userinfo -->
48
+
49
+ <ul id="nav">
50
+ <li id="forums-tab"><a style="cursor: pointer;" onclick="Effect.toggle('amazonas', 'blind',{ duration:.3})" class="active"><span>Boards</span></a></li>
51
+ <li id="features-tab"><a href="/features"><span>Features</span></a></li>
52
+ <li id="chownews-tab"><a href="/news"><span>Digest</span></a></li>
53
+ <li id="newposts-tab"><a href="/hot_posts"><span>Hot Posts</span></a></li>
54
+ <li id="doggiebag-tab"><a href="/users/dashboard"><span>My Doggie Bag</span></a></li>
55
+ <li id="about-tab"><a href="/home/getting_started" onclick="Board.hidePopup('started')" onmouseout="Board.hidePopup('started')" onmouseover="Board.showPopup('started')"><span>Getting Started</span></a></li>
56
+ <li id="chow-tab"><a href="http://www.chow.com"><span>Chow</span></a></li>
57
+ </ul><!-- /nav -->
58
+
59
+
60
+ <div class="clearing"></div>
61
+
62
+
63
+ </div><!-- /inner -->
64
+
65
+ <div id="started" style="z-index: 9999; display:none;" onmouseout="Board.hidePopup('started')" onmouseover="Board.showPopup('started')">
66
+ <ul style="list-style:vertical">
67
+ <li><a href="/home/etiquette">Etiquette</a></li>
68
+ <li><a href="/home/manifesto">Manifesto</a></li>
69
+ <li><a href="/home/faq">FAQ</a></li>
70
+ </ul>
71
+ </div><!-- /started -->
72
+
73
+
74
+ <div id="amazonas" class="amazonas" style="display:none">
75
+ <div align="right" class="amzclosebox"><a href="#" onclick="$('amazonas').hide(); return false;">close x</a></div>
76
+ <table style="margin-left: 50px; width: 900px;">
77
+ <tr>
78
+ <td style="padding-left: 10px; padding-top:15px; padding-bottom: 10px;" colspan="4">
79
+ <h1 style="color: #9d2117; font-size:24px;">The Boards</h1>
80
+ </td>
81
+ </tr>
82
+
83
+ <tr valign="top" style="line-height:1.5em;">
84
+ <td style="padding: 10px;">
85
+ <ul class="xoxo">
86
+ <li class="group_header">Pacific Northwest
87
+ <ul>
88
+ <li><a href="/boards/show/4" style="color:#9d2117">Pacific Northwest</a></li>
89
+ </ul>
90
+ </li>
91
+ <li class="group_header">California
92
+ <ul>
93
+ <li><a href="/boards/show/1" style="color:#9d2117">San Francisco Bay Area</a></li>
94
+ <li><a href="/boards/show/2" style="color:#9d2117">Los Angeles Area</a></li>
95
+ <li><a href="/boards/show/3" style="color:#9d2117">California</a></li>
96
+ </ul>
97
+ </li>
98
+ <li class="group_header">Southwest
99
+ <ul>
100
+ <li><a href="/boards/show/5" style="color:#9d2117">Texas</a></li>
101
+ <li><a href="/boards/show/6" style="color:#9d2117">Southwest</a></li>
102
+ </ul>
103
+ </li>
104
+ <li class="group_header">Midwest
105
+ <ul>
106
+ <li><a href="/boards/show/7" style="color:#9d2117">Chicago Area</a></li>
107
+ <li><a href="/boards/show/8" style="color:#9d2117">Midwest</a></li>
108
+ </ul>
109
+ </li>
110
+ <li class="group_header">South
111
+ <ul>
112
+ <li><a href="/boards/show/9" style="color:#9d2117">New Orleans</a></li>
113
+ <li><a href="/boards/show/10" style="color:#9d2117">Florida</a></li>
114
+ <li><a href="/boards/show/11" style="color:#9d2117">South</a></li>
115
+ </ul>
116
+ </li>
117
+ </ul>
118
+ </td>
119
+ <td style="padding: 10px;">
120
+ <ul class="xoxo">
121
+ <li class="group_header">Mid-Atlantic
122
+ <ul>
123
+ <li><a href="/boards/show/14" style="color:#9d2117">Washington DC & Baltimore Area</a></li>
124
+ <li><a href="/boards/show/15" style="color:#9d2117">Pennsylvania</a></li>
125
+ <li><a href="/boards/show/16" style="color:#9d2117">Mid-Atlantic</a></li>
126
+ </ul>
127
+ </li>
128
+ <li class="group_header">NYC Metro (and north)
129
+ <ul>
130
+ <li><a href="/boards/show/17" style="color:#9d2117">What's My Craving?</a></li>
131
+ <li><a href="/boards/show/18" style="color:#9d2117">Manhattan</a></li>
132
+ <li><a href="/boards/show/19" style="color:#9d2117">Outer Boroughs</a></li>
133
+ <li><a href="/boards/show/20" style="color:#9d2117">Tristate Region</a></li>
134
+ <li><a href="/boards/show/21" style="color:#9d2117">The Best...</a></li>
135
+ </ul>
136
+ </li>
137
+ <li class="group_header">New England
138
+ <ul>
139
+ <li><a href="/boards/show/12" style="color:#9d2117">Boston Area</a></li>
140
+ <li><a href="/boards/show/13" style="color:#9d2117">New England</a></li>
141
+ </ul>
142
+ </li>
143
+ </ul>
144
+ </td>
145
+ <td style="padding: 10px;">
146
+ <ul class="xoxo">
147
+ <li class="group_header">Topical
148
+ <ul>
149
+ <li><a href="/boards/show/27" style="color:#9d2117">General Chowhounding Topics</a></li>
150
+ <li><a href="/boards/show/29" style="color:#9d2117">Not About Food</a></li>
151
+ <li><a href="/boards/show/31" style="color:#9d2117">Home Cooking</a></li>
152
+ <li><a href="/boards/show/33" style="color:#9d2117">Food Media and News</a></li>
153
+ <li><a href="/boards/show/34" style="color:#9d2117">Wine</a></li>
154
+ <li><a href="/boards/show/35" style="color:#9d2117">Beer</a></li>
155
+ <li><a href="/boards/show/36" style="color:#9d2117">Spirits</a></li>
156
+ <li><a href="/boards/show/41" style="color:#9d2117">Cookware</a></li>
157
+ <li><a href="/boards/show/60" style="color:#9d2117">CHOWTour</a></li>
158
+ </ul>
159
+ </li>
160
+ <li class="group_header">Site Specific
161
+ <ul>
162
+ <li><a href="/boards/show/30" style="color:#9d2117">Site Talk</a></li>
163
+ <li><a href="/boards/show/40" style="color:#9d2117">Feedback: Report Problems</a></li>
164
+ <li><a href="/boards/show/43" style="color:#9d2117">User Help</a></li>
165
+ <li><a href="/boards/show/59" style="color:#9d2117">CHOW Feedback</a></li>
166
+ </ul>
167
+ </li>
168
+ <li class="group_header">National
169
+ <ul>
170
+ <li><a href="/boards/show/25" style="color:#9d2117">Elsewhere In America</a></li>
171
+ <li><a href="/boards/show/28" style="color:#9d2117">Kosher</a></li>
172
+ <li><a href="/boards/show/32" style="color:#9d2117">Chains</a></li>
173
+ </ul>
174
+ </li>
175
+ </ul>
176
+ </td>
177
+ <td style="padding: 10px;">
178
+ <ul class="xoxo">
179
+ <li class="group_header">International
180
+ <ul>
181
+ <li><a href="/boards/show/22" style="color:#9d2117">Quebec (including Montreal)</a></li>
182
+ <li><a href="/boards/show/23" style="color:#9d2117">Ontario (including Toronto)</a></li>
183
+ <li><a href="/boards/show/24" style="color:#9d2117">Canada</a></li>
184
+ <li><a href="/boards/show/26" style="color:#9d2117">International</a></li>
185
+ <li><a href="/boards/show/37" style="color:#9d2117">Australia/New Zealand</a></li>
186
+ <li><a href="/boards/show/42" style="color:#9d2117">U.K./Ireland</a></li>
187
+ <li><a href="/boards/show/44" style="color:#9d2117">South Asia</a></li>
188
+ <li><a href="/boards/show/45" style="color:#9d2117">Japan</a></li>
189
+ <li><a href="/boards/show/46" style="color:#9d2117">China</a></li>
190
+ <li><a href="/boards/show/47" style="color:#9d2117">Russia</a></li>
191
+ <li><a href="/boards/show/48" style="color:#9d2117">Greater Asia</a></li>
192
+ <li><a href="/boards/show/49" style="color:#9d2117">France</a></li>
193
+ <li><a href="/boards/show/50" style="color:#9d2117">Spain/Portugal</a></li>
194
+ <li><a href="/boards/show/51" style="color:#9d2117">Africa</a></li>
195
+ <li><a href="/boards/show/52" style="color:#9d2117">Turkey/Greece</a></li>
196
+ <li><a href="/boards/show/53" style="color:#9d2117">Middle East and Africa</a></li>
197
+ <li><a href="/boards/show/54" style="color:#9d2117">Caribbean</a></li>
198
+ <li><a href="/boards/show/55" style="color:#9d2117">Mexico</a></li>
199
+ <li><a href="/boards/show/56" style="color:#9d2117">South America</a></li>
200
+ <li><a href="/boards/show/57" style="color:#9d2117">Western Canada</a></li>
201
+ <li><a href="/boards/show/58" style="color:#9d2117">Italy</a></li>
202
+ </ul>
203
+ </li>
204
+ </ul>
205
+ </td>
206
+ </tr>
207
+ </table>
208
+ </div><!-- /amazonas -->
209
+
210
+ <div style="background:#ded8b9">
211
+
212
+ <form action="/search/std" method="get">
213
+
214
+ <table cellpadding="0" cellspacing="0" border="0" height="44" width="960">
215
+ <tr>
216
+ <td align=center>
217
+ <table bgcolor="#ded8b9" cellpadding="0" cellspacing="0" border="0" height="44">
218
+ <tr>
219
+ <td>
220
+ <fieldset><!-- was id "search_string -->
221
+ <input id="search_query_header" name="q" type="text" size="50" value="" />
222
+ </fieldset>
223
+ </td>
224
+ <td>&nbsp;&nbsp;</td>
225
+ <td>
226
+ <fieldset>
227
+ <table cellpadding=0 cellspacing=0 border=0><tr><td><input type="image" value="Perform Search" alt="Perform Search" title="Perform Search" class="button" src="/images/search_btn.gif" /></td></tr></table>
228
+ </fieldset>
229
+ </td>
230
+ <td>
231
+ &nbsp;&nbsp;<a style="color: #8c0000; font-size: 11px;" href="/search/std?adv=1">advanced</a>
232
+ </td>
233
+ </tr>
234
+ </table>
235
+ </td>
236
+ </tr>
237
+ </table>
238
+
239
+
240
+ </form>
241
+
242
+ </div>
243
+
244
+
245
+ </div><!--/banner-->
246
+
247
+ <!-- end _header -->
248
+
249
+
250
+
251
+ <div id="content">
252
+
253
+ <div class="inner">
254
+
255
+ <div id="maincontent">
256
+
257
+
258
+
259
+
260
+
261
+ <div id="home-features" class="addShadow">
262
+ <h3 id="home-recent-postings">
263
+ <div style="float:right;"><span class="hotposts-pause"><a href="#" onClick="toggleSpy()" id="toggle-link">pause</a></span></div>
264
+ <span>Recent Postings</span></h3>
265
+ <ul class="posts" id="recent-posts">
266
+
267
+ <li class="post hentry">
268
+
269
+ <table>
270
+ <tr>
271
+ <td class="postreplies">
272
+
273
+ <span class="reply-number">0</span>
274
+ <a href="/topics/show/341055#comments">replies</a>
275
+
276
+ </td>
277
+ <td style="padding:8px 10px 10px 10px; width:310px;">
278
+
279
+ <p class="title entry-title">
280
+ <a href="/topics/show/341055" rel="bookmark">Lunch at KiWe</a> </p>
281
+
282
+ <span class="vcard author fn"><a href="/users/show/20174" class="url">miranda</a></span>
283
+
284
+ in <a href="/boards/show/23">Ontario (including Toronto)</a>
285
+
286
+ </td>
287
+ <td style="width: 160px;">
288
+
289
+ <div class="last-post">
290
+ last post by <a href="/users/show/20174" class="url">miranda</a><br/>
291
+ <small>less than a minute ago</small>
292
+ </div>
293
+
294
+ </td>
295
+ </tr>
296
+ </table>
297
+
298
+ </li>
299
+
300
+
301
+ <script type="text/javascript"> setLastPostId(2006749); </script>
302
+
303
+
304
+ <li class="post hentry">
305
+
306
+ <table>
307
+ <tr>
308
+ <td class="postreplies">
309
+
310
+ <span class="reply-number">1</span>
311
+ <a href="/topics/show/341045#comments">reply</a>
312
+
313
+ </td>
314
+ <td style="padding:8px 10px 10px 10px; width:310px;">
315
+
316
+ <p class="title entry-title">
317
+ <a href="/topics/show/341045" rel="bookmark">Dinner on the way to San Diego</a> </p>
318
+
319
+ <span class="vcard author fn"><a href="/users/show/44063" class="url">Henry2054</a></span>
320
+
321
+ in <a href="/boards/show/2">Los Angeles Area</a>
322
+
323
+ </td>
324
+ <td style="width: 160px;">
325
+
326
+ <div class="last-post">
327
+ last post by <a href="/users/show/12873" class="url">OCAnn</a><br/>
328
+ <small>1 minute ago</small>
329
+ </div>
330
+
331
+ </td>
332
+ </tr>
333
+ </table>
334
+
335
+ </li>
336
+
337
+
338
+
339
+ <li class="post hentry">
340
+
341
+ <table>
342
+ <tr>
343
+ <td class="postreplies">
344
+
345
+ <span class="reply-number">1</span>
346
+ <a href="/topics/show/341050#comments">reply</a>
347
+
348
+ </td>
349
+ <td style="padding:8px 10px 10px 10px; width:310px;">
350
+
351
+ <p class="title entry-title">
352
+ <a href="/topics/show/341050" rel="bookmark">Fort Greene grub</a> </p>
353
+
354
+ <span class="vcard author fn"><a href="/users/show/26568" class="url">euroskip</a></span>
355
+
356
+ in <a href="/boards/show/19">Outer Boroughs</a>
357
+
358
+ </td>
359
+ <td style="width: 160px;">
360
+
361
+ <div class="last-post">
362
+ last post by <a href="/users/show/50477" class="url">Happygirl</a><br/>
363
+ <small>2 minutes ago</small>
364
+ </div>
365
+
366
+ </td>
367
+ </tr>
368
+ </table>
369
+
370
+ </li>
371
+
372
+
373
+
374
+ <li class="post hentry">
375
+
376
+ <table>
377
+ <tr>
378
+ <td class="postreplies">
379
+
380
+ <span class="reply-number">2</span>
381
+ <a href="/topics/show/340941#comments">replies</a>
382
+
383
+ </td>
384
+ <td style="padding:8px 10px 10px 10px; width:310px;">
385
+
386
+ <p class="title entry-title">
387
+ <a href="/topics/show/340941" rel="bookmark">Is corkage legal in Florida?</a> </p>
388
+
389
+ <span class="vcard author fn"><a href="/users/show/12858" class="url">Covert Ops</a></span>
390
+
391
+ in <a href="/boards/show/10">Florida</a>
392
+
393
+ </td>
394
+ <td style="width: 160px;">
395
+
396
+ <div class="last-post">
397
+ last post by <a href="/users/show/11157" class="url">Bob Mervine</a><br/>
398
+ <small>3 minutes ago</small>
399
+ </div>
400
+
401
+ </td>
402
+ </tr>
403
+ </table>
404
+
405
+ </li>
406
+
407
+
408
+
409
+ <li class="post hentry">
410
+
411
+ <table>
412
+ <tr>
413
+ <td class="postreplies">
414
+
415
+ <span class="reply-number">7</span>
416
+ <a href="/topics/show/340776#comments">replies</a>
417
+
418
+ </td>
419
+ <td style="padding:8px 10px 10px 10px; width:310px;">
420
+
421
+ <p class="title entry-title">
422
+ <a href="/topics/show/340776" rel="bookmark">Classy Casserole / Stew / Soup ???</a> </p>
423
+
424
+ <span class="vcard author fn"><a href="/users/show/12840" class="url">Mila</a></span>
425
+
426
+ in <a href="/boards/show/31">Home Cooking</a>
427
+
428
+ </td>
429
+ <td style="width: 160px;">
430
+
431
+ <div class="last-post">
432
+ last post by <a href="/users/show/12388" class="url">JalamaMama</a><br/>
433
+ <small>3 minutes ago</small>
434
+ </div>
435
+
436
+ </td>
437
+ </tr>
438
+ </table>
439
+
440
+ </li>
441
+
442
+
443
+
444
+ <li class="post hentry">
445
+
446
+ <table>
447
+ <tr>
448
+ <td class="postreplies">
449
+
450
+ <span class="reply-number">15</span>
451
+ <a href="/topics/show/340492#comments">replies</a>
452
+
453
+ </td>
454
+ <td style="padding:8px 10px 10px 10px; width:310px;">
455
+
456
+ <p class="title entry-title">
457
+ <a href="/topics/show/340492" rel="bookmark">6th St Indian suggestions</a> </p>
458
+
459
+ <span class="vcard author fn"><a href="/users/show/45264" class="url">buzzard83</a></span>
460
+
461
+ in <a href="/boards/show/18">Manhattan</a>
462
+
463
+ </td>
464
+ <td style="width: 160px;">
465
+
466
+ <div class="last-post">
467
+ last post by <a href="/users/show/38183" class="url">AKR</a><br/>
468
+ <small>3 minutes ago</small>
469
+ </div>
470
+
471
+ </td>
472
+ </tr>
473
+ </table>
474
+
475
+ </li>
476
+
477
+
478
+
479
+ <li class="post hentry">
480
+
481
+ <table>
482
+ <tr>
483
+ <td class="postreplies">
484
+
485
+ <span class="reply-number">9</span>
486
+ <a href="/topics/show/340056#comments">replies</a>
487
+
488
+ </td>
489
+ <td style="padding:8px 10px 10px 10px; width:310px;">
490
+
491
+ <p class="title entry-title">
492
+ <a href="/topics/show/340056" rel="bookmark">Duck's Japanese restaurant in San Gabriel</a> </p>
493
+
494
+ <span class="vcard author fn"><a href="/users/show/10786" class="url">calabasas_trafalgar</a></span>
495
+
496
+ in <a href="/boards/show/2">Los Angeles Area</a>
497
+
498
+ </td>
499
+ <td style="width: 160px;">
500
+
501
+ <div class="last-post">
502
+ last post by <a href="/users/show/10786" class="url">calabasas_trafalgar</a><br/>
503
+ <small>4 minutes ago</small>
504
+ </div>
505
+
506
+ </td>
507
+ </tr>
508
+ </table>
509
+
510
+ </li>
511
+
512
+
513
+
514
+ <li class="post hentry">
515
+
516
+ <table>
517
+ <tr>
518
+ <td class="postreplies">
519
+
520
+ <span class="reply-number">8</span>
521
+ <a href="/topics/show/341026#comments">replies</a>
522
+
523
+ </td>
524
+ <td style="padding:8px 10px 10px 10px; width:310px;">
525
+
526
+ <p class="title entry-title">
527
+ <a href="/topics/show/341026" rel="bookmark">The history of food delivery</a> </p>
528
+
529
+ <span class="vcard author fn"><a href="/users/show/20828" class="url">foodrocks</a></span>
530
+
531
+ in <a href="/boards/show/29">Not About Food</a>
532
+
533
+ </td>
534
+ <td style="width: 160px;">
535
+
536
+ <div class="last-post">
537
+ last post by <a href="/users/show/10285" class="url">Candy</a><br/>
538
+ <small>4 minutes ago</small>
539
+ </div>
540
+
541
+ </td>
542
+ </tr>
543
+ </table>
544
+
545
+ </li>
546
+
547
+
548
+
549
+ <li class="post hentry">
550
+
551
+ <table>
552
+ <tr>
553
+ <td class="postreplies">
554
+
555
+ <span class="reply-number">10</span>
556
+ <a href="/topics/show/340235#comments">replies</a>
557
+
558
+ </td>
559
+ <td style="padding:8px 10px 10px 10px; width:310px;">
560
+
561
+ <p class="title entry-title">
562
+ <a href="/topics/show/340235" rel="bookmark">Black Olive</a> </p>
563
+
564
+ <span class="vcard author fn"><a href="/users/show/11562" class="url">Hue</a></span>
565
+
566
+ in <a href="/boards/show/14">Washington DC & Baltimore Area</a>
567
+
568
+ </td>
569
+ <td style="width: 160px;">
570
+
571
+ <div class="last-post">
572
+ last post by <a href="/users/show/38647" class="url">Satellite</a><br/>
573
+ <small>4 minutes ago</small>
574
+ </div>
575
+
576
+ </td>
577
+ </tr>
578
+ </table>
579
+
580
+ </li>
581
+
582
+
583
+
584
+ <li class="post hentry">
585
+
586
+ <table>
587
+ <tr>
588
+ <td class="postreplies">
589
+
590
+ <span class="reply-number">19</span>
591
+ <a href="/topics/show/340910#comments">replies</a>
592
+
593
+ </td>
594
+ <td style="padding:8px 10px 10px 10px; width:310px;">
595
+
596
+ <p class="title entry-title">
597
+ <a href="/topics/show/340910" rel="bookmark">Bittman's No-Knead Bread...Wow!</a> </p>
598
+
599
+ <span class="vcard author fn"><a href="/users/show/14139" class="url">Kagey</a></span>
600
+
601
+ in <a href="/boards/show/31">Home Cooking</a>
602
+
603
+ </td>
604
+ <td style="width: 160px;">
605
+
606
+ <div class="last-post">
607
+ last post by <a href="/users/show/14389" class="url">dchow</a><br/>
608
+ <small>4 minutes ago</small>
609
+ </div>
610
+
611
+ </td>
612
+ </tr>
613
+ </table>
614
+
615
+ </li>
616
+
617
+
618
+
619
+ <li class="post hentry">
620
+
621
+ <table>
622
+ <tr>
623
+ <td class="postreplies">
624
+
625
+ <span class="reply-number">11</span>
626
+ <a href="/topics/show/322376#comments">replies</a>
627
+
628
+ </td>
629
+ <td style="padding:8px 10px 10px 10px; width:310px;">
630
+
631
+ <p class="title entry-title">
632
+ <a href="/topics/show/322376" rel="bookmark">Florence's: Fabulous West African in Harlem</a> </p>
633
+
634
+ <span class="vcard author fn"><a href="/users/show/10736" class="url">Peter Cherches</a></span>
635
+
636
+ in <a href="/boards/show/18">Manhattan</a>
637
+
638
+ </td>
639
+ <td style="width: 160px;">
640
+
641
+ <div class="last-post">
642
+ last post by <a href="/users/show/11394" class="url">Steve R</a><br/>
643
+ <small>5 minutes ago</small>
644
+ </div>
645
+
646
+ </td>
647
+ </tr>
648
+ </table>
649
+
650
+ </li>
651
+
652
+
653
+
654
+ <li class="post hentry">
655
+
656
+ <table>
657
+ <tr>
658
+ <td class="postreplies">
659
+
660
+ <span class="reply-number">10</span>
661
+ <a href="/topics/show/340954#comments">replies</a>
662
+
663
+ </td>
664
+ <td style="padding:8px 10px 10px 10px; width:310px;">
665
+
666
+ <p class="title entry-title">
667
+ <a href="/topics/show/340954" rel="bookmark">good Asian eats near Moscone?</a> </p>
668
+
669
+ <span class="vcard author fn"><a href="/users/show/12335" class="url">cheryl_h</a></span>
670
+
671
+ in <a href="/boards/show/1">San Francisco Bay Area</a>
672
+
673
+ </td>
674
+ <td style="width: 160px;">
675
+
676
+ <div class="last-post">
677
+ last post by <a href="/users/show/10039" class="url">Melanie Wong</a><br/>
678
+ <small>5 minutes ago</small>
679
+ </div>
680
+
681
+ </td>
682
+ </tr>
683
+ </table>
684
+
685
+ </li>
686
+
687
+
688
+
689
+ <li class="post hentry">
690
+
691
+ <table>
692
+ <tr>
693
+ <td class="postreplies">
694
+
695
+ <span class="reply-number">3</span>
696
+ <a href="/topics/show/340898#comments">replies</a>
697
+
698
+ </td>
699
+ <td style="padding:8px 10px 10px 10px; width:310px;">
700
+
701
+ <p class="title entry-title">
702
+ <a href="/topics/show/340898" rel="bookmark">Did the group choose a cookbook for Nov. or are we still on Braising? [moved from L.A. board]</a> </p>
703
+
704
+ <span class="vcard author fn"><a href="/users/show/12655" class="url">ZoeZ</a></span>
705
+
706
+ in <a href="/boards/show/31">Home Cooking</a>
707
+
708
+ </td>
709
+ <td style="width: 160px;">
710
+
711
+ <div class="last-post">
712
+ last post by <a href="/users/show/23603" class="url">ceeceee</a><br/>
713
+ <small>5 minutes ago</small>
714
+ </div>
715
+
716
+ </td>
717
+ </tr>
718
+ </table>
719
+
720
+ </li>
721
+
722
+
723
+
724
+ <li class="post hentry">
725
+
726
+ <table>
727
+ <tr>
728
+ <td class="postreplies">
729
+
730
+ <span class="reply-number">0</span>
731
+ <a href="/topics/show/341053#comments">replies</a>
732
+
733
+ </td>
734
+ <td style="padding:8px 10px 10px 10px; width:310px;">
735
+
736
+ <p class="title entry-title">
737
+ <a href="/topics/show/341053" rel="bookmark">Review - Becco (355 WEST 46TH ST , 212-397-7597 , WWW.LIDIASITALY.COM)</a> </p>
738
+
739
+ <span class="vcard author fn"><a href="/users/show/38183" class="url">AKR</a></span>
740
+
741
+ in <a href="/boards/show/18">Manhattan</a>
742
+
743
+ </td>
744
+ <td style="width: 160px;">
745
+
746
+ <div class="last-post">
747
+ last post by <a href="/users/show/38183" class="url">AKR</a><br/>
748
+ <small>5 minutes ago</small>
749
+ </div>
750
+
751
+ </td>
752
+ </tr>
753
+ </table>
754
+
755
+ </li>
756
+
757
+
758
+
759
+ <li class="post hentry">
760
+
761
+ <table>
762
+ <tr>
763
+ <td class="postreplies">
764
+
765
+ <span class="reply-number">24</span>
766
+ <a href="/topics/show/334140#comments">replies</a>
767
+
768
+ </td>
769
+ <td style="padding:8px 10px 10px 10px; width:310px;">
770
+
771
+ <p class="title entry-title">
772
+ <a href="/topics/show/334140" rel="bookmark">Old Fashioned American Brekafast in North Seattle?</a> </p>
773
+
774
+ <span class="vcard author fn"><a href="/users/show/46830" class="url">jbaum</a></span>
775
+
776
+ in <a href="/boards/show/4">Pacific Northwest</a>
777
+
778
+ </td>
779
+ <td style="width: 160px;">
780
+
781
+ <div class="last-post">
782
+ last post by <a href="/users/show/14958" class="url">MightyMac</a><br/>
783
+ <small>5 minutes ago</small>
784
+ </div>
785
+
786
+ </td>
787
+ </tr>
788
+ </table>
789
+
790
+ </li>
791
+
792
+
793
+
794
+ <li class="post hentry">
795
+
796
+ <table>
797
+ <tr>
798
+ <td class="postreplies">
799
+
800
+ <span class="reply-number">14</span>
801
+ <a href="/topics/show/340902#comments">replies</a>
802
+
803
+ </td>
804
+ <td style="padding:8px 10px 10px 10px; width:310px;">
805
+
806
+ <p class="title entry-title">
807
+ <a href="/topics/show/340902" rel="bookmark">Tijuana dogs (bacon wrapped, street vendor hot dogs)-Where???</a> </p>
808
+
809
+ <span class="vcard author fn"><a href="/users/show/19396" class="url">upstarter</a></span>
810
+
811
+ in <a href="/boards/show/2">Los Angeles Area</a>
812
+
813
+ </td>
814
+ <td style="width: 160px;">
815
+
816
+ <div class="last-post">
817
+ last post by <a href="/users/show/17338" class="url">bo_burger</a><br/>
818
+ <small>6 minutes ago</small>
819
+ </div>
820
+
821
+ </td>
822
+ </tr>
823
+ </table>
824
+
825
+ </li>
826
+
827
+
828
+
829
+ <li class="post hentry">
830
+
831
+ <table>
832
+ <tr>
833
+ <td class="postreplies">
834
+
835
+ <span class="reply-number">0</span>
836
+ <a href="/topics/show/341052#comments">replies</a>
837
+
838
+ </td>
839
+ <td style="padding:8px 10px 10px 10px; width:310px;">
840
+
841
+ <p class="title entry-title">
842
+ <a href="/topics/show/341052" rel="bookmark">Dinner with the girls?</a> </p>
843
+
844
+ <span class="vcard author fn"><a href="/users/show/13553" class="url">LMWW</a></span>
845
+
846
+ in <a href="/boards/show/7">Chicago Area</a>
847
+
848
+ </td>
849
+ <td style="width: 160px;">
850
+
851
+ <div class="last-post">
852
+ last post by <a href="/users/show/13553" class="url">LMWW</a><br/>
853
+ <small>6 minutes ago</small>
854
+ </div>
855
+
856
+ </td>
857
+ </tr>
858
+ </table>
859
+
860
+ </li>
861
+
862
+
863
+ </ul>
864
+ </div><!--/home-features-->
865
+
866
+
867
+
868
+ </div><!--/maincontent-->
869
+
870
+ <div id="sidecontent">
871
+
872
+
873
+
874
+ <div class="s1">
875
+ <div class="s2">
876
+ <div class="s3">
877
+ <div class="advert">
878
+
879
+ <div id="ad_box">
880
+ <!-- MAC ad --><div style="text-align:center"><img src="http://i.i.com.com/cnwk.1d/Ads/common/advertisement.gif" width="120" height="10" alt="advertisement"><br /></div><a href="http://adlog.com.com/adlog/c/r=10409&s=670696&t=2006.11.08.21.12.49&o=12862:&h=cn&p=2&b=23&l=en_US&site=90&pt=FD&nd=&pid=&cid=&pp=100&e=&rqid=00c17-ad-e14540F3CD1C6E1EC/http://chowhound.com/" target="_blank"><img src="http://adlog.com.com/adlog/i/r=10409&s=670696&t=2006.11.08.21.12.49&o=12862:&h=cn&p=2&b=23&l=en_US&site=90&pt=FD&nd=&pid=&cid=&pp=100&e=&rqid=00c17-ad-e14540F3CD1C6E1EC/http://i.i.com.com/cnwk.1d/Ads/7883/10/Chound_ad3.jpg" height="250" width="300" alt="Click Here" border="0" /></a><!-- MAC [r20060725-jakeh-v1-13-2-bufferHandler-trigger:1.13.2] c17-ad-xw4.cnet.com::3971636144 2006.11.08.21.12.49 --><!-- MAC T 0.0.2.2 -->
881
+ </div>
882
+
883
+ </div>
884
+ </div>
885
+ </div>
886
+ </div>
887
+
888
+ <div class="ieSpacer"></div>
889
+
890
+
891
+ <div class="sideblock addShadow" id="side-features">
892
+ <div class="sideinner">
893
+
894
+ <a href="http://www.chow.com/tour"><img alt="Feature_chowtour_chips" src="/images/feature_chowtour_chips.1161810835.jpg" /></a>
895
+
896
+ </div>
897
+ </div>
898
+
899
+ <div class="ieSpacer"></div>
900
+
901
+
902
+
903
+
904
+
905
+ <div class="sideblock addShadow" id="side-features">
906
+
907
+ <div class="sideinner">
908
+ <h3 style="background: #960807 url(/images/overheard_hd.jpg) 18px 9px no-repeat;"><span>Features</span></h3>
909
+ <ul>
910
+ <li class="post" id="jimleff" onmouseover="this.style.backgroundColor='#f7de8e'" onmouseout="this.style.backgroundColor='#f3e6c3'">
911
+ <p class="title"><a href="/topics/show/340077">Cheap eats in Stockholm</a></a></p>
912
+
913
+ <p class="jump">posted by: <a href="/users/show/12107">fatbully</a><br>
914
+ board: <a href="/boards/show/26">International</a></a></p>
915
+ </li>
916
+ </ul>
917
+ </div>
918
+ </div>
919
+
920
+
921
+
922
+
923
+
924
+ </div><!--/sidecontent-->
925
+
926
+ <div class="clearing"></div>
927
+
928
+ </div><!--/inner-->
929
+
930
+ </div><!--/content-->
931
+
932
+ <!-- start _footer -->
933
+
934
+ <div style="background:#ded8b9">
935
+
936
+ <form action="/search/std" method="get">
937
+
938
+ <table cellpadding="0" cellspacing="0" border="0" height="44" width="960">
939
+ <tr>
940
+ <td align=center>
941
+ <table bgcolor="#ded8b9" cellpadding="0" cellspacing="0" border="0" height="44">
942
+ <tr>
943
+ <td>
944
+ <fieldset><!-- was id "search_string -->
945
+ <input id="search_query_header" name="q" type="text" size="50" value="" />
946
+ </fieldset>
947
+ </td>
948
+ <td>&nbsp;&nbsp;</td>
949
+ <td>
950
+ <fieldset>
951
+ <table cellpadding=0 cellspacing=0 border=0><tr><td><input type="image" value="Perform Search" alt="Perform Search" title="Perform Search" class="button" src="/images/search_btn.gif" /></td></tr></table>
952
+ </fieldset>
953
+ </td>
954
+ <td>
955
+ &nbsp;&nbsp;<a style="color: #8c0000; font-size: 11px;" href="/search/std?adv=1">advanced</a>
956
+ </td>
957
+ </tr>
958
+ </table>
959
+ </td>
960
+ </tr>
961
+ </table>
962
+
963
+
964
+ </form>
965
+
966
+ </div>
967
+
968
+
969
+ <div id="footer">
970
+
971
+
972
+ <div class="inner">
973
+
974
+ <h2><a href="#"><span>Chowhound</span></a></h2>
975
+
976
+ <div id="footer-lists">
977
+ <div id="footer-nav">
978
+ <h3>DIG IN:</h3>
979
+ <ul>
980
+ <li><a href="/">Home</a></li>
981
+ <li><a href="/boards/list">Boards</a></li>
982
+ <li><a href="/features">Features</a></li>
983
+ <li><a href="/news">Digest</a></li>
984
+ <li><a href="/users/dashboard">my CHOW</a></li>
985
+ <li><a href="/home/about">About Chowhound</a></li>
986
+ </ul>
987
+ </div>
988
+ <div id="footer-features">
989
+ <h3>CHOWHOUND FEATURES:</h3>
990
+ <ul>
991
+ <li><a href="/features/show/10019">Jim Leff Eats His Way Across North America</a></li>
992
+ <li><a href="/features/show/10003">Welcome to Radio Free Chowhound</a></li>
993
+ <li><a href="/features/show/10004">A Tale of Two Chowhounds</a></li>
994
+ <li><a href="/features/show/10005">How I Learned to Stop Worrying and Love the Artificial Flavors</a></li>
995
+ </ul>
996
+ <p><a href="/features">All Features</a></p>
997
+
998
+ </div>
999
+ <div id="footer-news">
1000
+ <h3>CHOWHOUND NEWS:</h3>
1001
+ <ul>
1002
+ <li><a href="/news/show/10982">Chapli Kebab at Darbar</a></li>
1003
+ <li><a href="/news/show/10981">New Pupuseria in Santa Rosa</a></li>
1004
+ <li><a href="/news/show/10980">Pushcart Derby: Midtown's Best Meat on Wheels</a></li>
1005
+ <li><a href="/news/show/10979">La Lunetta: Italian Bites and a Cobble Hill Makeover</a></li>
1006
+ </ul>
1007
+ <p><a href="/news">Chowhound News</a></p>
1008
+ </div>
1009
+ </div><!--/footer-lists-->
1010
+
1011
+ <div id="legal">
1012
+
1013
+ <span class="legalcopy" id="legalcopy">
1014
+ <a href="http://www.bnet.com" target="_blank">BNET</a> |
1015
+ <a href="http://www.cnet.com" target="_blank">CNET.com</a> |
1016
+ <a href="http://www.cnetchannel.com/main/default.aspx">CNET Channel</a> |
1017
+ <a href="http://www.download.com" target="_blank">CNET Download.com</a> |
1018
+ <a href="http://www.news.com" target="_blank">CNET News.com</a> |
1019
+ <a href="http://reviews.cnet.com" target="_blank">CNET Reviews</a> |
1020
+ <a href="http://shopper.cnet.com" target="_blank">CNET Shopper.com</a> |
1021
+ <a href="http://www.gamespot.com" target="_blank">GameSpot</a> |
1022
+ <a href="http://www.cnetnetworks.com/advertise/properties/international.html" target="_blank">International Media</a> |
1023
+ <a href="http://www.mp3.com" target="_blank">MP3.com</a> |
1024
+ <a href="http://www.mysimon.com" target="_blank">mySimon</a> |
1025
+ <a href="http://www.release1-0.com" target="_blank">Release 1.0</a> |
1026
+ <a href="http://www.search.com" target="_blank">Search.com</a> |
1027
+ <a href="http://www.techrepublic.com" target="_blank">TechRepublic</a> |
1028
+ <a href="http://www.tv.com" target="_blank">TV.com</a> |
1029
+ <a href="http://www.webshots.com/" target="_blank">Webshots</a> |
1030
+ <a href="http://www.zdnet.com" target="_blank">ZDNet</a></font><br/>
1031
+ <br/>
1032
+ <a href="http://www.cnet.com/aboutcnet/">About CNET Networks</a> |
1033
+ <a href="http://www.cnet.com/aboutcnet/employment/index.html?tag=nav">Jobs</a> |
1034
+ <a href="http://www.cnet.com/html/aboutcnet/editorial/privacy.html" style="font-weight: bold;">Privacy Policy</a> |
1035
+ <a href="/home/terms">Terms of Use</a> |
1036
+ <a href="http://www.cnet.com/aboutcnet/editorial/copyright.html">Copyright</a> |
1037
+ &copy;2006 CNET Networks, Inc. All Rights Reserved.
1038
+ <img src="http://dw.com.com/clear/c.gif?sid=90&ts=1163020369" height="1" width="1" />
1039
+ </span>
1040
+
1041
+ </div><!-- /legal -->
1042
+
1043
+ </div><!--/inner-->
1044
+ </div><!--/footer-->
1045
+
1046
+ <!-- end _footer -->
1047
+
1048
+
1049
+ </div><!--/container-->
1050
+
1051
+ </body>
1052
+ </html>