edge-parsley-ruby 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +26 -0
- data/CHANGELOG +3 -0
- data/README +32 -0
- data/Rakefile +57 -0
- data/VERSION +1 -0
- data/ext/cparsley.c +140 -0
- data/ext/extconf.rb +69 -0
- data/lib/parsley.rb +84 -0
- data/parsley-ruby.gemspec +58 -0
- data/test/test_parsley.rb +116 -0
- data/test/yelp-benchmark.rb +53 -0
- data/test/yelp-home.html +1004 -0
- data/test/yelp-home.let +6 -0
- data/test/yelp.html +2329 -0
- metadata +79 -0
@@ -0,0 +1,116 @@
|
|
1
|
+
require "test/unit"
|
2
|
+
require File.dirname(__FILE__) + "/../lib/parsley"
|
3
|
+
|
4
|
+
class TestParsley < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
@page = File.expand_path(File.dirname(__FILE__) + "/yelp.html")
|
7
|
+
@home = File.expand_path(File.dirname(__FILE__) + "/yelp-home.html")
|
8
|
+
@let = File.expand_path(File.dirname(__FILE__) + "/yelp-home.let")
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_segfault_regression
|
12
|
+
simple_html = <<-HTML
|
13
|
+
<html>
|
14
|
+
<body>
|
15
|
+
<h1 class="iCIMS_Header_JobTitle">CEO</h1>
|
16
|
+
</body>
|
17
|
+
</html>
|
18
|
+
HTML
|
19
|
+
|
20
|
+
struct = {
|
21
|
+
'jobs' => [{
|
22
|
+
'title' => ".iCIMS_Header_JobTitle",
|
23
|
+
'description?' => "blah",
|
24
|
+
'location?' => "blah",
|
25
|
+
'experience?' => "blah",
|
26
|
+
'education?' => "blah"
|
27
|
+
}]
|
28
|
+
}
|
29
|
+
parselet = Parsley.new(struct)
|
30
|
+
result = parselet.parse(:string => simple_html)
|
31
|
+
assert_equal "CEO", result['jobs'].first['title']
|
32
|
+
assert result['jobs'].first['description'].nil?
|
33
|
+
end
|
34
|
+
#
|
35
|
+
# def test_yelp
|
36
|
+
# @parsley = Parsley.new(File.read(@let))
|
37
|
+
# out = @parsley.parse(:file => @home)
|
38
|
+
# assert_equal "/c/sf/shopping", out["categories"][0]["href"]
|
39
|
+
# end
|
40
|
+
#
|
41
|
+
# def test_parsley_should_raise_if_value_syntax_error
|
42
|
+
# assert_raises(ParsleyError) do
|
43
|
+
# Parsley.new({"foo" => nil})
|
44
|
+
# end
|
45
|
+
#
|
46
|
+
# assert_raises(ParsleyError) do
|
47
|
+
# Parsley.new({"foo" => ""})
|
48
|
+
# end
|
49
|
+
#
|
50
|
+
# assert_raises(ParsleyError) do
|
51
|
+
# Parsley.new({"foo" => "<<<<<<<<<<<"})
|
52
|
+
# end
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# def test_yelp_xml
|
56
|
+
# @parsley = Parsley.new(File.read(@let))
|
57
|
+
# out = @parsley.parse(:file => @home, :output => :xml)
|
58
|
+
# end
|
59
|
+
#
|
60
|
+
# def test_broken
|
61
|
+
# @parsley = Parsley.new("hi" => "no-ns:match(h1)")
|
62
|
+
# assert_raises(ParsleyError) {
|
63
|
+
# @parsley.parse(:file => @page)
|
64
|
+
# }
|
65
|
+
# end
|
66
|
+
#
|
67
|
+
# def test_simple
|
68
|
+
# @parsley = Parsley.new("hi" => "h1")
|
69
|
+
# assert_equal({"hi" => "Nick's Crispy Tacos"}, @parsley.parse(:file => @page))
|
70
|
+
# end
|
71
|
+
#
|
72
|
+
# def test_simple_string
|
73
|
+
# @parsley = Parsley.new("hi" => "h1")
|
74
|
+
# assert_equal({"hi" => "Nick's Crispy Tacos"}, @parsley.parse(:string => "<html><body><h1>Nick's Crispy Tacos</h1></body></html>"))
|
75
|
+
# end
|
76
|
+
#
|
77
|
+
# def test_xml
|
78
|
+
# @parsley = Parsley.new("hi" => "h1")
|
79
|
+
# xml = "<?xml version=\"1.0\"?>\n<parsley:root xmlns:parsley=\"http://parselets.com/json\"><hi position=\"63\">Nick's Crispy Tacos</hi></parsley:root>\n"
|
80
|
+
# assert_equal(xml, @parsley.parse(:file => @page, :output => :xml))
|
81
|
+
# end
|
82
|
+
#
|
83
|
+
# def test_sgwrap
|
84
|
+
# @parsley = Parsley.new("hi" => "p sg_wrap")
|
85
|
+
# html = "<p><b>hi</b>world</p>"
|
86
|
+
# assert_equal({"hi" => "world"}, @parsley.parse(:string => html, :sgwrap => true))
|
87
|
+
# end
|
88
|
+
#
|
89
|
+
# def test_sgwrap_off
|
90
|
+
# @parsley = Parsley.new("hi" => "p sg_wrap")
|
91
|
+
# html = "<p><b>hi</b>world</p>"
|
92
|
+
# assert_raises(ParsleyError) do
|
93
|
+
# @parsley.parse(:string => html, :sgwrap => false)
|
94
|
+
# end
|
95
|
+
# end
|
96
|
+
#
|
97
|
+
#
|
98
|
+
# def test_json
|
99
|
+
# @parsley = Parsley.new("hi" => "h1")
|
100
|
+
# assert_equal('{ "hi": "Nick\'s Crispy Tacos" }', @parsley.parse(:file => @page, :output => :json))
|
101
|
+
# end
|
102
|
+
#
|
103
|
+
# def test_rescuable_file_error
|
104
|
+
# @parsley = Parsley.new("hi" => "h1")
|
105
|
+
# @nonexistant_file = File.dirname(__FILE__) + "/../fixtures/yelp.html"
|
106
|
+
# assert_equal({"hi" => "Nick's Crispy Tacos"}, @parsley.parse(:file => @nonexistant_file)) rescue nil
|
107
|
+
# end
|
108
|
+
#
|
109
|
+
# def test_array_string
|
110
|
+
# @parsley = Parsley.new({"foo" => ["li"]})
|
111
|
+
# out = @parsley.parse(:file => @page)
|
112
|
+
# assert_kind_of Hash, out
|
113
|
+
# assert_kind_of Array, out["foo"], out.inspect
|
114
|
+
# assert out["foo"].length > 1
|
115
|
+
# end
|
116
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require "rubygems"
|
2
|
+
require "nokogiri"
|
3
|
+
require "hpricot"
|
4
|
+
require "parsley"
|
5
|
+
require "benchmark"
|
6
|
+
require "pp"
|
7
|
+
|
8
|
+
YELP_HTML = File.dirname(__FILE__) + "/yelp.html"
|
9
|
+
|
10
|
+
def noko
|
11
|
+
parse Nokogiri.Hpricot(File.open(YELP_HTML))
|
12
|
+
end
|
13
|
+
|
14
|
+
def hpri
|
15
|
+
parse Hpricot(File.open(YELP_HTML))
|
16
|
+
end
|
17
|
+
|
18
|
+
def parse(doc)
|
19
|
+
out = {}
|
20
|
+
out["name"] = (doc / "h1").first.inner_text
|
21
|
+
out["phone"] = (doc / "#bizPhone").first.inner_text
|
22
|
+
out["address"] = (doc / "address").first.inner_text
|
23
|
+
out["reviews"] = (doc / ".nonfavoriteReview").map do |node|
|
24
|
+
review = {}
|
25
|
+
review["date"] = (node / ".ieSucks .smaller").first.inner_text
|
26
|
+
review["user_name"] = (node / ".reviewer_info a").first.inner_text
|
27
|
+
review["comment"] = (node / ".review_comment").first.inner_text
|
28
|
+
review
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def pars
|
33
|
+
parslet = Parsley.new({
|
34
|
+
"name" => "h1",
|
35
|
+
"phone" => "#bizPhone",
|
36
|
+
"address" => "address",
|
37
|
+
"reviews(.nonfavoriteReview)" => [
|
38
|
+
{
|
39
|
+
"date" => ".ieSucks .smaller",
|
40
|
+
"user_name" => ".reviewer_info a",
|
41
|
+
"comment" => ".review_comment"
|
42
|
+
}
|
43
|
+
]
|
44
|
+
})
|
45
|
+
pp parslet.parse(:file => YELP_HTML)
|
46
|
+
end
|
47
|
+
|
48
|
+
Benchmark.bm do |x|
|
49
|
+
x.report("nokogiri: ") { 3.times { noko } }
|
50
|
+
x.report("hpricot: ") { 3.times { hpri } }
|
51
|
+
x.report("parsley: ") { 3.times { pars } }
|
52
|
+
end
|
53
|
+
|
data/test/yelp-home.html
ADDED
@@ -0,0 +1,1004 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
2
|
+
"http://www.w3.org/TR/html4/strict.dtd">
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
<html>
|
20
|
+
<head>
|
21
|
+
|
22
|
+
<title>San Francisco Restaurants, Dentists, Bars, Beauty Salons, Doctors</title>
|
23
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
24
|
+
|
25
|
+
<meta name="description" content="San Francisco - User Reviews and Recommendations of Top Restaurants, Shopping, Nightlife, Entertainment, Services and More at Yelp">
|
26
|
+
<meta name="keywords" content="Yelp,recommendation,San Francisco, bay area, local,business,review,friend,restaurant,dentist,doctor,salon,spa,shopping,store,share,community,massage,sushi,pizza,nails,New York,Los Angeles">
|
27
|
+
<meta http-equiv="imagetoolbar" content="no">
|
28
|
+
<link rel="shortcut icon" href="/favicon.ico" type="image/ico">
|
29
|
+
<link rel="search" type="application/opensearchdescription+xml" href="/html/moz-plug/yelp.xml" title="Yelp">
|
30
|
+
<link rel="stylesheet" type="text/css" media="all" href="http://static.px.yelp.com/static/20090220/css/base_versioned.css">
|
31
|
+
<link rel="stylesheet" type="text/css" media="print" href="http://static.px.yelp.com/static/20090220/css/print.css">
|
32
|
+
<link rel="stylesheet" type="text/css" media="all" href="http://static.px.yelp.com/static/20090220/css/home.css">
|
33
|
+
<link rel="alternate" type="application/rss+xml" title="Yelp - Recent Reviews Near San Francisco, CA" href="http://www.yelp.com/syndicate/area/rss.xml?loc=San+Francisco%2C+CA">
|
34
|
+
<script type="text/javascript">
|
35
|
+
var imagesHostUrl = "http://static.px.yelp.com/";
|
36
|
+
var Yelp = {
|
37
|
+
img_serial : "20090220",
|
38
|
+
js_serial : "20090218a",
|
39
|
+
css_serial : "20090220",
|
40
|
+
unique_request_id : "5cd4a34fd29ef3d7",
|
41
|
+
cookie_domain: ".yelp.com"
|
42
|
+
};
|
43
|
+
</script>
|
44
|
+
|
45
|
+
<script type="text/javascript" src="http://static.px.yelp.com/static/20090218a/js/site.min.js"></script>
|
46
|
+
<script type="text/javascript">
|
47
|
+
Yelp.lang_pref = ["en_US"];
|
48
|
+
|
49
|
+
|
50
|
+
function trackUnload(e) {
|
51
|
+
if (Yelp.JSONCookie.get('js_track') != "") {
|
52
|
+
return;
|
53
|
+
} else {
|
54
|
+
var trackRequest = new Ajax.Request("/unload_tracker", {
|
55
|
+
method: 'get',
|
56
|
+
parameters: "r=5cd4a34fd29ef3d7&ctime=" + (new Date()).getTime(),
|
57
|
+
onComplete: function() { },
|
58
|
+
asynchronous: false
|
59
|
+
});
|
60
|
+
}
|
61
|
+
}
|
62
|
+
Event.observe(window, 'unload', trackUnload);
|
63
|
+
Event.observe(window, 'load', function(){
|
64
|
+
|
65
|
+
var header_hoods = $('header_hoods');
|
66
|
+
if(header_hoods){
|
67
|
+
Element.addClassName(header_hoods,'pseudoLink');
|
68
|
+
Event.observe($('header_hoods'), 'click', function(){
|
69
|
+
Yelp.startHoods($('header_hoods'), 'dropperText_Mast', {'x':-80,'y':20});
|
70
|
+
});
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
});
|
75
|
+
document.observe("dom:loaded", function(){
|
76
|
+
var user_loc = $('dropperText_Mast');
|
77
|
+
if(user_loc){
|
78
|
+
var userloc_ac = new Yelp.autocomplete(user_loc, ['canada', 'uk', 'usa']);
|
79
|
+
}
|
80
|
+
});
|
81
|
+
|
82
|
+
</script>
|
83
|
+
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
|
84
|
+
</script>
|
85
|
+
<script type="text/javascript">
|
86
|
+
GS_googleAddAdSenseService("ca-pub-1718795974733941");
|
87
|
+
GS_googleEnableAllServices();
|
88
|
+
</script>
|
89
|
+
<script type="text/javascript">
|
90
|
+
GA_googleAddSlot("ca-pub-1718795974733941", "Welcome_BOY_590x100");
|
91
|
+
GA_googleAddSlot("ca-pub-1718795974733941", "Welcome_Box_300x250");
|
92
|
+
</script>
|
93
|
+
<script type="text/javascript">
|
94
|
+
GA_googleAddAttr("country", "us");
|
95
|
+
GA_googleAddAttr("section", "welcome");
|
96
|
+
GA_googleAddAttr("signed_in", "no");
|
97
|
+
GA_googleAddAttr("mode", "live");
|
98
|
+
GA_googleAddAttr("dma_code", "807");
|
99
|
+
</script>
|
100
|
+
<script type="text/javascript">
|
101
|
+
GA_googleFetchAds();
|
102
|
+
</script>
|
103
|
+
|
104
|
+
<!-- Revision: main 45627 -->
|
105
|
+
<style type="text/css">
|
106
|
+
#mastHead{
|
107
|
+
height:51px;
|
108
|
+
background-position:0px -15px;
|
109
|
+
}
|
110
|
+
#mastHead #logo{
|
111
|
+
background-image:url(http://static.px.yelp.com/static/20090220/i/new/gfx/newHeader/ExternalHeaderLogo.gif);
|
112
|
+
width:285px;
|
113
|
+
height:51px;
|
114
|
+
}
|
115
|
+
#mastHead #logo a{
|
116
|
+
width:285px;
|
117
|
+
height:51px;
|
118
|
+
}
|
119
|
+
#mastHead #rightEdge{
|
120
|
+
height:51px;
|
121
|
+
}
|
122
|
+
#mastHead #uk_promo{
|
123
|
+
top:10px;
|
124
|
+
}
|
125
|
+
</style>
|
126
|
+
</head>
|
127
|
+
|
128
|
+
<body id="yelp_main_body" class="us">
|
129
|
+
<script type="text/javascript">
|
130
|
+
Yelp.JSONCookie.clear('js_track');
|
131
|
+
Event.observe(document.body, 'mousedown', function(event) {
|
132
|
+
Yelp.JSTrack.handleClickOnLink(event);
|
133
|
+
});
|
134
|
+
|
135
|
+
Event.observe(document, 'keypress', function(event) {
|
136
|
+
if (event.keyCode == Event.KEY_RETURN) {
|
137
|
+
var searchButton = $('headerSearchBtn');
|
138
|
+
if (searchButton) {
|
139
|
+
Yelp.JSTrack.handleSearchKeyPress(searchButton);
|
140
|
+
}
|
141
|
+
}
|
142
|
+
});
|
143
|
+
|
144
|
+
</script>
|
145
|
+
<!-- google_ad_section_start(weight=ignore) -->
|
146
|
+
<div id="mastHead">
|
147
|
+
<div id="logo"><a href="/">Yelp</a></div>
|
148
|
+
|
149
|
+
<div id="uk_promo"><a href="/london" alt="Now in the UK!"><img src="http://static.px.yelp.com/static/20090220/i/new/gfx/ukTag.png" width="96" height="26"></a></div>
|
150
|
+
<div id="rightEdge"></div>
|
151
|
+
</div>
|
152
|
+
|
153
|
+
|
154
|
+
<div id="navContainer">
|
155
|
+
<ul>
|
156
|
+
<li id="welcome"><a href="/" class="tabon">Welcome</a></li>
|
157
|
+
<li id="aboutMe"> <a href="/signup?return_url=%2Fuser_details" rel="nofollow" id="Zabout_me"> About Me</a></li>
|
158
|
+
<li id="writeReview"> <a href="/signup?return_url=%2Fwriteareview" rel="nofollow" id="Zwrite_a_review"> Write a Review</a></li>
|
159
|
+
<li id="findReview"><a rel="nofollow" href="/find">Find Reviews</a></li>
|
160
|
+
<li id="invite"> <a href="/signup?return_url=%2Finvite_friends" rel="nofollow" id="Zinvite_friends"> Invite Friends</a></li>
|
161
|
+
<li id="messaging"> <a rel="nofollow" href="/signup?return_url=%2Fmail" id="Zmail"> Messaging</a></li>
|
162
|
+
<li id="talk"><a href="/talk">Talk</a></li>
|
163
|
+
|
164
|
+
<li id="events"><a href="/events/sf">Events</a></li>
|
165
|
+
<li class="header_login" id="rt"><a rel="nofollow" href="/login?return_url=%2F">Log In</a></li>
|
166
|
+
<li class="header_login"><a href="/signup?return_url=%2Fprofile" rel="nofollow" id="Zprofile">Account</a> | </li>
|
167
|
+
<li class="header_login"><a href="/member_search" rel="nofollow">Member Search</a> | </li>
|
168
|
+
</ul>
|
169
|
+
</div>
|
170
|
+
|
171
|
+
<p id="mobile_message">On a mobile device? <a href="http://mobile.yelp.com" rel="nofollow">Try our mobile site, optimized for faster browsing.</a></p>
|
172
|
+
<!-- google_ad_section_end -->
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
<div id="bodyContainer">
|
178
|
+
|
179
|
+
<div id="expanded_city">
|
180
|
+
<div class="cities">
|
181
|
+
<a rel="nofollow" class="floatlink" href="/">Hide</a>
|
182
|
+
<p class="suggestion">Are You Looking For <a href="/sf">Yelp San Francisco</a>?</p>
|
183
|
+
<ul>
|
184
|
+
<li >
|
185
|
+
<a href="/atlanta">Atlanta</a>
|
186
|
+
</li>
|
187
|
+
<li >
|
188
|
+
<a href="/austin">Austin</a>
|
189
|
+
</li>
|
190
|
+
<li >
|
191
|
+
<a href="/berkeley">Berkeley</a>
|
192
|
+
</li>
|
193
|
+
<li >
|
194
|
+
<a href="/boston">Boston</a>
|
195
|
+
</li>
|
196
|
+
<li >
|
197
|
+
<a href="/brooklyn">Brooklyn</a>
|
198
|
+
</li>
|
199
|
+
<li >
|
200
|
+
<a href="/chicago">Chicago</a>
|
201
|
+
</li>
|
202
|
+
</ul>
|
203
|
+
<ul>
|
204
|
+
<li class="right" >
|
205
|
+
<a href="/dallas">Dallas</a>
|
206
|
+
</li>
|
207
|
+
<li class="right" >
|
208
|
+
<a href="/denver">Denver</a>
|
209
|
+
</li>
|
210
|
+
<li class="right" >
|
211
|
+
<a href="/detroit">Detroit</a>
|
212
|
+
</li>
|
213
|
+
<li class="right" >
|
214
|
+
<a href="/honolulu">Honolulu</a>
|
215
|
+
</li>
|
216
|
+
<li class="right" >
|
217
|
+
<a href="/houston">Houston</a>
|
218
|
+
</li>
|
219
|
+
</ul>
|
220
|
+
<ul>
|
221
|
+
<li class="right" >
|
222
|
+
<a href="/lasvegas">Las Vegas</a>
|
223
|
+
</li>
|
224
|
+
<li class="right" >
|
225
|
+
<a href="/london">London</a>
|
226
|
+
</li>
|
227
|
+
<li class="right" >
|
228
|
+
<a href="/la">Los Angeles</a>
|
229
|
+
</li>
|
230
|
+
<li class="right" >
|
231
|
+
<a href="/miami">Miami</a>
|
232
|
+
</li>
|
233
|
+
<li class="right" >
|
234
|
+
<a href="/minneapolis">Minneapolis</a>
|
235
|
+
</li>
|
236
|
+
</ul>
|
237
|
+
<ul>
|
238
|
+
<li class="right" >
|
239
|
+
<a href="/nyc">New York</a>
|
240
|
+
</li>
|
241
|
+
<li class="right" >
|
242
|
+
<a href="/oakland">Oakland</a>
|
243
|
+
</li>
|
244
|
+
<li class="right" >
|
245
|
+
<a href="/santa-ana-ca">Orange County</a>
|
246
|
+
</li>
|
247
|
+
<li class="right" >
|
248
|
+
<a href="/palo-alto-ca">Palo Alto</a>
|
249
|
+
</li>
|
250
|
+
<li class="right" >
|
251
|
+
<a href="/philadelphia">Philadelphia</a>
|
252
|
+
</li>
|
253
|
+
</ul>
|
254
|
+
<ul>
|
255
|
+
<li class="right" >
|
256
|
+
<a href="/phoenix">Phoenix</a>
|
257
|
+
</li>
|
258
|
+
<li class="right" >
|
259
|
+
<a href="/portland">Portland</a>
|
260
|
+
</li>
|
261
|
+
<li class="right" >
|
262
|
+
<a href="/sacramento">Sacramento</a>
|
263
|
+
</li>
|
264
|
+
<li class="right" >
|
265
|
+
<a href="/stlouis">Saint Louis</a>
|
266
|
+
</li>
|
267
|
+
<li class="right" >
|
268
|
+
<a href="/sandiego">San Diego</a>
|
269
|
+
</li>
|
270
|
+
</ul>
|
271
|
+
<ul>
|
272
|
+
<li class="right" >
|
273
|
+
<a href="/sanjose">San Jose</a>
|
274
|
+
</li>
|
275
|
+
<li class="right" >
|
276
|
+
<a href="/seattle">Seattle</a>
|
277
|
+
</li>
|
278
|
+
<li class="right" >
|
279
|
+
<a href="/toronto">Toronto</a>
|
280
|
+
</li>
|
281
|
+
<li class="right" >
|
282
|
+
<a href="/vancouver">Vancouver</a>
|
283
|
+
</li>
|
284
|
+
<li class="right" >
|
285
|
+
<a href="/dc">Washington, DC</a>
|
286
|
+
</li>
|
287
|
+
<li class="right" >
|
288
|
+
<strong><a href="/locations">More Cities»</a></strong>
|
289
|
+
</li>
|
290
|
+
</ul>
|
291
|
+
</div>
|
292
|
+
<div class="citybar">
|
293
|
+
<h3>Yelp San Francisco</h3>
|
294
|
+
</div>
|
295
|
+
</div>
|
296
|
+
|
297
|
+
|
298
|
+
<h2 id="nonMemberWelcome">
|
299
|
+
<a rel="nofollow" href="/signup">Yelp is the fun and easy way to find, review and talk about what's great - and not so great, in your area.</a>
|
300
|
+
</h2>
|
301
|
+
<div id="external_search">
|
302
|
+
<form method="get" action="/search" name="external_search">
|
303
|
+
<p><label for="find_desc_ext">Search for <em>(e.g. taco, salon, Max's)</em></label>
|
304
|
+
<input type="text" maxlength="64" id="find_desc_ext" name="find_desc" tabindex="1"></p>
|
305
|
+
|
306
|
+
<p>
|
307
|
+
<label for="find_loc_ext">Near <em>(Address, <span id="external_hoods" class="pseudoLink">Neighborhood</span>, City, State or Zip)</em></label>
|
308
|
+
<input type="text" maxlength="64" name="find_loc" id="find_loc_ext" tabindex="2" value="San Francisco, CA">
|
309
|
+
<input type="hidden" name="ns" value="1">
|
310
|
+
<input type="hidden" name="rpp" value="10">
|
311
|
+
</p>
|
312
|
+
<button type="submit" id="ex_submit_button" class="form_img_btn" tabindex="3" onclick="document.external_search.rpp.value=Yelp.readRppFromSearchPrefsCookie();">Search</button>
|
313
|
+
</form>
|
314
|
+
</div>
|
315
|
+
|
316
|
+
|
317
|
+
|
318
|
+
<div id="column_wrapper" class="clearfix">
|
319
|
+
<div id="leftColumn">
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
|
324
|
+
<div class="googlead_box">
|
325
|
+
<script type="text/javascript">
|
326
|
+
GA_googleFillSlot("Welcome_BOY_590x100");
|
327
|
+
</script>
|
328
|
+
</div>
|
329
|
+
|
330
|
+
<div id="bestOfYelpModule" class="clearfix external">
|
331
|
+
|
332
|
+
<div id="best_cats">
|
333
|
+
<a rel="nofollow" href="/find"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/more_best_of.gif" alt="More Best Of" style="float: right; margin-right: 5px; margin-top: 5px;" /></a>
|
334
|
+
<h3>Top reviewed businesses in San Francisco</h3>
|
335
|
+
|
336
|
+
<div class="clearfix">
|
337
|
+
<div class="bestCat">
|
338
|
+
<h4 style="margin-bottom:0px;" title="Best Restaurants in San Francisco"><a href="/c/sf/restaurants">Restaurants</a></h4>
|
339
|
+
<em>3822 reviewed</em>
|
340
|
+
|
341
|
+
|
342
|
+
|
343
|
+
<div class="clearStyles bizPhotoBox">
|
344
|
+
<a href="/biz/la-tiendita-san-francisco"><img src="http://static.px.yelp.com/bphoto/_22tVvLUnlu7tcMM3_dSrQ/m" style="" alt="La Tiendita, San Francisco"></a>
|
345
|
+
</div>
|
346
|
+
<ol>
|
347
|
+
<li><strong><a rel="nofollow" href="/biz/la-tiendita-san-francisco">La Tiendita</a></strong></li>
|
348
|
+
<li><a rel="nofollow" href="/biz/ikes-place-san-francisco">Ike's Place</a></li>
|
349
|
+
<li><a rel="nofollow" href="/biz/petite-deli-san-francisco-2">Petite Deli</a></li>
|
350
|
+
<li><a rel="nofollow" href="/biz/gary-danko-san-francisco-2">Gary Danko</a></li>
|
351
|
+
<li><a rel="nofollow" href="/biz/roxie-food-center-san-francisco">Roxie Food Center</a></li>
|
352
|
+
</ol>
|
353
|
+
<p><a href="/c/sf/restaurants">... see more »</a></p>
|
354
|
+
</div>
|
355
|
+
<div class="bestCat">
|
356
|
+
<h4 style="margin-bottom:0px;" title="Best Shopping in San Francisco"><a href="/c/sf/shopping">Shopping</a></h4>
|
357
|
+
<em>4041 reviewed</em>
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
<div class="clearStyles bizPhotoBox">
|
362
|
+
<a href="/biz/greencitizen-san-francisco-2"><img src="http://static.px.yelp.com/bphoto/r6LzylhDwE55LjkM60C_Ew/m" style="" alt="recycling electronics for a cleaner future"></a>
|
363
|
+
</div>
|
364
|
+
<ol>
|
365
|
+
<li><strong><a rel="nofollow" href="/biz/greencitizen-san-francisco-2">GreenCitizen</a></strong></li>
|
366
|
+
<li><a rel="nofollow" href="/biz/diannes-old-and-new-estates-san-francisco-2">Dianne's Old & New…</a></li>
|
367
|
+
<li><a rel="nofollow" href="/biz/my-trick-pony-san-francisco">My Trick Pony</a></li>
|
368
|
+
<li><a rel="nofollow" href="/biz/not-just-flowers-san-francisco">Not Just Flowers</a></li>
|
369
|
+
<li><a rel="nofollow" href="/biz/zoe-bikini-san-francisco">Zoe Bikini</a></li>
|
370
|
+
</ol>
|
371
|
+
<p><a href="/c/sf/shopping">... see more »</a></p>
|
372
|
+
</div>
|
373
|
+
</div>
|
374
|
+
<div class="clearfix">
|
375
|
+
<div class="bestCat">
|
376
|
+
<h4 style="margin-bottom:0px;" title="Best Nightlife in San Francisco"><a href="/c/sf/nightlife">Nightlife</a></h4>
|
377
|
+
<em>961 reviewed</em>
|
378
|
+
|
379
|
+
|
380
|
+
|
381
|
+
<div class="clearStyles bizPhotoBox">
|
382
|
+
<a href="/biz/cairo-nights-san-francisco"><img src="http://static.px.yelp.com/bphoto/JWNZlCwcSOrLtvpll4Om0A/m" style="" alt="Cairo Nights, San Francisco"></a>
|
383
|
+
</div>
|
384
|
+
<ol>
|
385
|
+
<li><strong><a rel="nofollow" href="/biz/cairo-nights-san-francisco">Cairo Nights</a></strong></li>
|
386
|
+
<li><a rel="nofollow" href="/biz/sunshine-coast-san-francisco">Sunshine Coast</a></li>
|
387
|
+
<li><a rel="nofollow" href="/biz/san-francisco-wine-trading-company-san-francisco">San Francisco Wine…</a></li>
|
388
|
+
<li><a rel="nofollow" href="/biz/william-cross-wine-merchants-and-wine-bar-san-francisco">William Cross Wine…</a></li>
|
389
|
+
<li><a rel="nofollow" href="/biz/church-key-san-francisco">Church Key</a></li>
|
390
|
+
</ol>
|
391
|
+
<p><a href="/c/sf/nightlife">... see more »</a></p>
|
392
|
+
</div>
|
393
|
+
<div class="bestCat">
|
394
|
+
<h4 style="margin-bottom:0px;" title="Best Beauty and Spas in San Francisco"><a href="/c/sf/beautysvc">Beauty and Spas</a></h4>
|
395
|
+
<em>1791 reviewed</em>
|
396
|
+
|
397
|
+
|
398
|
+
|
399
|
+
<div class="clearStyles bizPhotoBox">
|
400
|
+
<a href="/biz/mad-about-brows-san-francisco"><img src="http://static.px.yelp.com/bphoto/UR9de_TvJC47KXZHIgMXLQ/m" style="" alt="Just one example..."></a>
|
401
|
+
</div>
|
402
|
+
<ol>
|
403
|
+
<li><strong><a rel="nofollow" href="/biz/mad-about-brows-san-francisco">Mad About Brows</a></strong></li>
|
404
|
+
<li><a rel="nofollow" href="/biz/urban-allure-san-francisco">Urban Allure</a></li>
|
405
|
+
<li><a rel="nofollow" href="/biz/oxygen-massage-therapy-san-francisco">Oxygen Massage…</a></li>
|
406
|
+
<li><a rel="nofollow" href="/biz/gentle-star-medspa-san-francisco">Gentle Star Medspa</a></li>
|
407
|
+
<li><a rel="nofollow" href="/biz/acme-head-and-body-san-francisco-2">Acme Head & Body</a></li>
|
408
|
+
</ol>
|
409
|
+
<p><a href="/c/sf/beautysvc">... see more »</a></p>
|
410
|
+
</div>
|
411
|
+
</div>
|
412
|
+
|
413
|
+
</div>
|
414
|
+
<div id="cat_list">
|
415
|
+
<h4 class="ieSucks">Browse by Category</h4>
|
416
|
+
<ul class="stripped ieSucks">
|
417
|
+
|
418
|
+
<li class="shopping"><a href="/c/sf/shopping">Shopping</a> 4087</li>
|
419
|
+
<li class="restaurants"><a href="/c/sf/restaurants">Restaurants</a> 3899</li>
|
420
|
+
<li class="food"><a href="/c/sf/food">Food</a> 2440</li>
|
421
|
+
<li class="health"><a href="/c/sf/health">Health and Medical</a> 2382</li>
|
422
|
+
<li class="beautysvc"><a href="/c/sf/beautysvc">Beauty and Spas</a> 1818</li>
|
423
|
+
<li class="homeservices"><a href="/c/sf/homeservices">Home Services</a> 1443</li>
|
424
|
+
<li class="localservices"><a href="/c/sf/localservices">Local Services</a> 1414</li>
|
425
|
+
<li class="eventservices"><a href="/c/sf/eventservices">Event Planning & Services</a> 1238</li>
|
426
|
+
<li class="arts"><a href="/c/sf/arts">Arts & Entertainment</a> 1100</li>
|
427
|
+
<li class="active"><a href="/c/sf/active">Active Life</a> 1066</li>
|
428
|
+
<li class="nightlife"><a href="/c/sf/nightlife">Nightlife</a> 971</li>
|
429
|
+
<li class="auto"><a href="/c/sf/auto">Automotive</a> 803</li>
|
430
|
+
<li class="hotelstravel"><a href="/c/sf/hotelstravel">Hotels & Travel</a> 740</li>
|
431
|
+
<li class="professional"><a href="/c/sf/professional">Professional Services</a> 688</li>
|
432
|
+
<li class="education"><a href="/c/sf/education">Education</a> 585</li>
|
433
|
+
<li class="realestate"><a href="/c/sf/realestate">Real Estate</a> 462</li>
|
434
|
+
<li class="pets"><a href="/c/sf/pets">Pets</a> 351</li>
|
435
|
+
<li class="financialservices"><a href="/c/sf/financialservices">Financial Services</a> 331</li>
|
436
|
+
<li class="publicservicesgovt"><a href="/c/sf/publicservicesgovt">Public Services &…</a> 329</li>
|
437
|
+
<li class="localflavor"><a href="/c/sf/localflavor">Local Flavor</a> 304</li>
|
438
|
+
<li class="massmedia"><a href="/c/sf/massmedia">Mass Media</a> 202</li>
|
439
|
+
<li class="religiousorgs"><a href="/c/sf/religiousorgs">Religious Organizations</a> 149</li>
|
440
|
+
|
441
|
+
</ul>
|
442
|
+
<p style="font-size:1px;clear:both;margin:0px;"> </p>
|
443
|
+
</div>
|
444
|
+
</div>
|
445
|
+
|
446
|
+
|
447
|
+
<div id="hot_and_new" class="external">
|
448
|
+
<h3>Hot on Yelp</h3>
|
449
|
+
<p class="smaller"><em>Hottest in the past month, based on bookmarks</em></p>
|
450
|
+
|
451
|
+
|
452
|
+
<div class="clearStyles bizPhotoBox">
|
453
|
+
<a rel="nofollow" href="/biz/humphry-slocombe-ice-cream-san-francisco#hrid:nr3FUteW2TCGYVodIod0Iw"><img src="http://static.px.yelp.com/bphoto/mXInwpdyN0n6CFvAYopI2w/m" style="" alt="Humphry Slocombe Ice Cream, San Francisco, CA"></a>
|
454
|
+
</div>
|
455
|
+
|
456
|
+
<div class="rating stars_4_half">4.5 star rating</div>
|
457
|
+
<h4>1. <a rel="nofollow" href="/biz/humphry-slocombe-ice-cream-san-francisco#hrid:nr3FUteW2TCGYVodIod0Iw">Humphry Slocombe Ice Cream</a></h4>
|
458
|
+
<p>Just came from Humphry's after picking up 2 pints of bb viet coffee and 2 pints of secret breakfast. While I was there, I was talking to the nice, handsome gentleman behind the counter (i didn't get…</p>
|
459
|
+
<div id="hot_list">
|
460
|
+
<h4>More Hot Picks</h4>
|
461
|
+
<ul class="stripped">
|
462
|
+
<li>2. <a rel="nofollow" href="/biz/nopa-san-francisco">NOPA</a></li>
|
463
|
+
<li>3. <a rel="nofollow" href="/biz/st-francis-fountain-san-francisco">St. Francis Fountain</a></li>
|
464
|
+
<li>4. <a rel="nofollow" href="/biz/nopalito-san-francisco">Nopalito</a></li>
|
465
|
+
<li>5. <a rel="nofollow" href="/biz/chez-maman-san-francisco">Chez Maman</a></li>
|
466
|
+
<li><a href="/top?most=hot&find_loc=San+Francisco%2C+CA">...See more »</a></li>
|
467
|
+
</ul>
|
468
|
+
</div>
|
469
|
+
<div id="weeklyYelpModule" class="clearfix">
|
470
|
+
<img src="http://static.px.yelp.com/static/20090220/i/new/ico/weekly_mailbox.png" alt="mailbox image" width="43" height="43" />
|
471
|
+
<p><strong>Stay up on what's hot and new.</strong>
|
472
|
+
Sign up and get The Weekly Yelp delivered to your inbox every Tuesday.</p>
|
473
|
+
<a rel="nofollow" href="/weekly/signup"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/get_it.png" alt="Get it" width="88" height="23" /></a>
|
474
|
+
</div>
|
475
|
+
|
476
|
+
</div>
|
477
|
+
|
478
|
+
<div id="neighborhoods" class="clearfix">
|
479
|
+
<h3>Browse By Neighborhood</h3>
|
480
|
+
<ul class="stripped">
|
481
|
+
<li><a href="/search?find_loc=Castro%2C+San+Francisco%2C+CA">Castro</a></li>
|
482
|
+
<li><a href="/search?find_loc=Civic+Center%2FTenderloin%2C+San+Francisco%2C+CA">Civic Center/Tenderloin</a></li>
|
483
|
+
<li><a href="/search?find_loc=Financial+District%2C+San+Francisco%2C+CA">Financial District</a></li>
|
484
|
+
<li><a href="/search?find_loc=Inner+Richmond%2C+San+Francisco%2C+CA">Inner Richmond</a></li>
|
485
|
+
<li><a href="/search?find_loc=Marina%2FCow+Hollow%2C+San+Francisco%2C+CA">Marina/Cow Hollow</a></li>
|
486
|
+
</ul>
|
487
|
+
<ul class="stripped">
|
488
|
+
<li><a href="/search?find_loc=Mission%2C+San+Francisco%2C+CA">Mission</a></li>
|
489
|
+
<li><a href="/search?find_loc=Nob+Hill%2C+San+Francisco%2C+CA">Nob Hill</a></li>
|
490
|
+
<li><a href="/search?find_loc=North+Beach%2FTelegraph+Hill%2C+San+Francisco%2C+CA">North Beach/Telegraph Hill</a></li>
|
491
|
+
<li><a href="/search?find_loc=Outer+Richmond%2C+San+Francisco%2C+CA">Outer Richmond</a></li>
|
492
|
+
<li><a href="/search?find_loc=Outer+Sunset%2C+San+Francisco%2C+CA">Outer Sunset</a></li>
|
493
|
+
</ul>
|
494
|
+
<ul class="stripped">
|
495
|
+
<li><a href="/search?find_loc=Pacific+Heights%2C+San+Francisco%2C+CA">Pacific Heights</a></li>
|
496
|
+
<li><a href="/search?find_loc=SOMA%2C+San+Francisco%2C+CA">SOMA</a></li>
|
497
|
+
<li><a href="/search?find_loc=Union+Square%2C+San+Francisco%2C+CA">Union Square</a></li>
|
498
|
+
<li><a href="/search?find_loc=Western+Addition%2FNOPA%2C+San+Francisco%2C+CA">Western Addition/NOPA</a></li>
|
499
|
+
<li><a href="/search?find_loc=San+Francisco%2C+CA&cflt=" id="more_hoods">More Neighborhoods »</a></li>
|
500
|
+
</ul>
|
501
|
+
</div>
|
502
|
+
|
503
|
+
|
504
|
+
<div id="popular_events" class="clearfix events_border_top">
|
505
|
+
<a class="floatLink" href="/events"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/browseAllEvents.png" alt="Browse all events" width="111" height="23" /></a>
|
506
|
+
|
507
|
+
<h3>Popular Events This Week</h3>
|
508
|
+
<ul class="stripped external">
|
509
|
+
<li>
|
510
|
+
<a rel="nofollow" href="/events/berkeley-a-midsummer-nights-dream" class="event_photo"><img src="http://static.px.yelp.com/ephoto/CXBRZa8LaxIItQg9Y2s8sg/ss" alt="Photo of A Midsummer Night's Dream" height="40" width="40" /></a>
|
511
|
+
|
512
|
+
<a rel="nofollow" href="/events/berkeley-a-midsummer-nights-dream" class="name">A Midsummer Night's Dream</a>
|
513
|
+
<p class="time">Today, Feb 26, 8:00 PM</p>
|
514
|
+
</li>
|
515
|
+
<li>
|
516
|
+
<a rel="nofollow" href="/events/san-francisco-7th-annual-celebrity-crab-fest" class="event_photo"><img src="http://static.px.yelp.com/ephoto/fFAkl4pgRoA6G9CktyNQng/ss" alt="Photo of 7Th Annual Celebrity Crab Fest" height="40" width="40" /></a>
|
517
|
+
|
518
|
+
<a rel="nofollow" href="/events/san-francisco-7th-annual-celebrity-crab-fest" class="name">7Th Annual Celebrity Crab Fest</a>
|
519
|
+
<p class="time">Saturday, Feb 28, 12:00 PM</p>
|
520
|
+
</li>
|
521
|
+
<li>
|
522
|
+
<a rel="nofollow" href="/events/san-francisco-weekly-small-dog-beach-walk" class="event_photo"><img src="http://static.px.yelp.com/ephoto/beLCvyMvtaSt3p63HL4KoA/ss" alt="Photo of Weekly Small Dog Beach Walk" height="40" width="40" /></a>
|
523
|
+
|
524
|
+
<a rel="nofollow" href="/events/san-francisco-weekly-small-dog-beach-walk" class="name">Weekly Small Dog Beach Walk</a>
|
525
|
+
<p class="time">Saturday, Feb 28, 10:00 AM</p>
|
526
|
+
</li>
|
527
|
+
<li>
|
528
|
+
<a rel="nofollow" href="/events/oakland-belgium-brewsky-blowout-at-the-trappist" class="event_photo"><img src="http://static.px.yelp.com/ephoto/hdBE4pMDMbhZN_r7StEBQQ/ss" alt="Photo of Belgium brewsky blowout at The Trappist!" height="40" width="40" /></a>
|
529
|
+
|
530
|
+
<a rel="nofollow" href="/events/oakland-belgium-brewsky-blowout-at-the-trappist" class="name">Belgium brewsky blowout at The Trappist!</a>
|
531
|
+
<p class="time">Today, Feb 26, 7:30 PM</p>
|
532
|
+
</li>
|
533
|
+
</ul>
|
534
|
+
|
535
|
+
</div>
|
536
|
+
|
537
|
+
|
538
|
+
<div class="recentReviewsBox external">
|
539
|
+
|
540
|
+
<a href="/browse/reviews/recent"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/more.gif" style="float: right; margin-right: 5px; margin-top: 5px;" alt="more" /></a>
|
541
|
+
<h3>New Reviews Near You</h3>
|
542
|
+
|
543
|
+
<div style="margin-bottom:10px;">
|
544
|
+
<div class="clearStyles photoBox" >
|
545
|
+
<a rel="nofollow" href="/user_details?userid=opf-1hn9saWidD2nQLE59g"><img src="http://static.px.yelp.com/photo/gSAS2pOtygH96OP9Manj5A/ss" style="height:40px;width:40px;" alt="Photo of Menaka M." /></a>
|
546
|
+
</div>
|
547
|
+
|
548
|
+
<a rel="nofollow" class="highlight2" href="/biz/killian-clinton-attorney-oakland#hrid:7Kznr-Ss__N32MRwrOC2kQ">Killian Clinton Attorney</a>
|
549
|
+
<em>A moment ago</em>
|
550
|
+
<p style="margin:5px 5px 5px 53px;">
|
551
|
+
I contacted this attorney asking for a consultation. He would not…
|
552
|
+
</p>
|
553
|
+
</div>
|
554
|
+
<div style="margin-bottom:10px;">
|
555
|
+
<div class="clearStyles photoBox" >
|
556
|
+
<a rel="nofollow" href="/user_details?userid=uQ4ukgdAE2Eg-IKwhUNMiw"><img src="http://static.px.yelp.com/photo/6UmkFos3wcHxUmst4L5yRQ/ss" style="height:40px;width:40px;" alt="Photo of Brian S." /></a>
|
557
|
+
</div>
|
558
|
+
|
559
|
+
<a rel="nofollow" class="highlight2" href="/biz/the-monks-kettle-san-francisco#hrid:34Z7Zf3jLrDW3MspeTUc7Q">The Monk's Kettle</a>
|
560
|
+
<em>A moment ago</em>
|
561
|
+
<p style="margin:5px 5px 5px 53px;">
|
562
|
+
It is either a beer lovers paradise or an agoraphobes worst nightmare,…
|
563
|
+
</p>
|
564
|
+
</div>
|
565
|
+
<div style="margin-bottom:10px;">
|
566
|
+
<div class="clearStyles photoBox" >
|
567
|
+
<a rel="nofollow" href="/user_details?userid=PxsIw258MI67vtZNNa1Z-Q"><img src="http://static.px.yelp.com/static/20090220/i/new/gfx/blank_user_small.gif" style="height:40px;width:40px;" alt="Photo of Kevin B." /></a>
|
568
|
+
</div>
|
569
|
+
|
570
|
+
<a rel="nofollow" class="highlight2" href="/biz/a-really-clean-home-alameda-2#hrid:o4FJM6sA0T9l6ruEm1FOJA">A Really Clean Home</a>
|
571
|
+
<em>A moment ago</em>
|
572
|
+
<p style="margin:5px 5px 5px 53px;">
|
573
|
+
I have been a satisfied customer of Lorna Leitao of A Really Clean Home for…
|
574
|
+
</p>
|
575
|
+
</div>
|
576
|
+
|
577
|
+
<a href="/browse/reviews/recent">More New Reviews Near You »</a>
|
578
|
+
|
579
|
+
|
580
|
+
|
581
|
+
</div>
|
582
|
+
|
583
|
+
</div>
|
584
|
+
<div id="rightColumn">
|
585
|
+
|
586
|
+
|
587
|
+
|
588
|
+
<div id="reviewPicksModule" class="clearfix">
|
589
|
+
<a href="/browse/reviews/picks" class="floatLink"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/archive_btn.gif" width="60" height="23" alt="Archive"></a>
|
590
|
+
<h3>Review of the Day</h3>
|
591
|
+
<p>
|
592
|
+
Voted by our members!
|
593
|
+
</p>
|
594
|
+
<div id="reviewerInfo">
|
595
|
+
<div class="clearStyles photoBox" >
|
596
|
+
<a rel="nofollow" href="/user_details?userid=GeRP723KwUXL32S_h-OdCg"><img src="http://static.px.yelp.com/photo/drnM3lGPFsMzgvwthensiw/m" style="" alt="Photo of Patricia P." /></a>
|
597
|
+
</div>
|
598
|
+
|
599
|
+
<p><a rel="nofollow" href="/user_details?userid=GeRP723KwUXL32S_h-OdCg">Patricia P.</a></p>
|
600
|
+
<p style="margin-top:0px;">
|
601
|
+
Glamour and glitter, fashion… </p>
|
602
|
+
</div>
|
603
|
+
<div id="reviewPick">
|
604
|
+
<div class="rating stars_5">5 star rating</div>
|
605
|
+
<p><a rel="nofollow" href="/biz/miscreants-cabaret-san-francisco#hrid:TlPRa2WzsZgQ_hZYvyaR0w">Miscreant's Cabaret</a></p>
|
606
|
+
<p style="padding-top:.3em;">
|
607
|
+
Since no gentleman will have me, I decided to escort myself on a lovely Valentine's date to see the Miscreants Cabaret's "The Nightmare Before Valentine's Day: a massacre you'll love to hate". Taking… <a rel="nofollow" href="/biz/miscreants-cabaret-san-francisco#hrid:TlPRa2WzsZgQ_hZYvyaR0w">Read more »</a>
|
608
|
+
</p>
|
609
|
+
</div>
|
610
|
+
</div>
|
611
|
+
|
612
|
+
|
613
|
+
<div class="googlead_bigbox">
|
614
|
+
<script type="text/javascript">
|
615
|
+
GA_googleFillSlot("Welcome_Box_300x250");
|
616
|
+
</script>
|
617
|
+
</div>
|
618
|
+
|
619
|
+
|
620
|
+
<div id="recent_offers">
|
621
|
+
<a href="/specialoffers" class="floatLink"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/more.gif" alt="More"></a>
|
622
|
+
<h3>Sales & Offers Near You</h3>
|
623
|
+
<ul class="stripped">
|
624
|
+
<li>
|
625
|
+
|
626
|
+
|
627
|
+
<div class="clearStyles bizPhotoBox">
|
628
|
+
<a rel="nofollow" href="/biz/la-borinquena-mex-icatessen-and-specialty-shop-oakland"><img src="http://static.px.yelp.com/bphoto/Cdy0JYZYu9ceJm5kLp6Z2w/ss" style="height:40px;width:40px;" alt="business image"></a>
|
629
|
+
</div>
|
630
|
+
|
631
|
+
<h4><a href="/biz/la-borinquena-mex-icatessen-and-specialty-shop-oakland" rel="nofollow">La Borinqueña Mex-icatessen &…</a></h4>
|
632
|
+
<p>Frozen pork tamale special $22.99</p>
|
633
|
+
<p class="grey">1dz pre-cooked frozen tamales with…</p>
|
634
|
+
</li>
|
635
|
+
<li>
|
636
|
+
|
637
|
+
|
638
|
+
<div class="clearStyles bizPhotoBox">
|
639
|
+
<a rel="nofollow" href="/biz/jeanty-at-jacks-san-francisco"><img src="http://static.px.yelp.com/bphoto/F5dMbtoFV84oQFM0wjVDEA/ss" style="height:40px;width:40px;" alt="business image"></a>
|
640
|
+
</div>
|
641
|
+
|
642
|
+
<h4><a href="/biz/jeanty-at-jacks-san-francisco" rel="nofollow">Jeanty At Jacks</a></h4>
|
643
|
+
<p>Happiness is a truly great deal!</p>
|
644
|
+
<p class="grey">$1 Oysters everyday of the week…</p>
|
645
|
+
</li>
|
646
|
+
</ul>
|
647
|
+
</div>
|
648
|
+
|
649
|
+
|
650
|
+
<div id="freshListsModule">
|
651
|
+
<a href="/list_search?q=&sort=time_updated&location=San+Francisco%2C+CA" class="floatLink"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/more.gif" alt="Search lists"></a>
|
652
|
+
<h3>Fresh Lists</h3>
|
653
|
+
<p>The newest of our users' favorites</p>
|
654
|
+
|
655
|
+
<div class="clearfix">
|
656
|
+
<div class="clearStyles photoBox" >
|
657
|
+
<a rel="nofollow" href="/user_details?userid=_vk88Fk8e7_HkXSMb9M9AQ"><img src="http://static.px.yelp.com/photo/KVOCARzgaMXWqp-nywrGWw/ss" style="height:40px;width:40px;" alt="Photo ofT A." /></a>
|
658
|
+
</div>
|
659
|
+
|
660
|
+
<p>
|
661
|
+
<a rel="nofollow" href="/list/ju-lika-da-salsas-oakland">Ju Lika Da Salsas?</a>
|
662
|
+
<br />I love hot hot salsas and good, homemade beans & Al Pastor. Trust me, I know what's up! Here are some places I like and some I don't. You should know…
|
663
|
+
</p>
|
664
|
+
</div>
|
665
|
+
<div class="clearfix">
|
666
|
+
<div class="clearStyles photoBox" >
|
667
|
+
<a rel="nofollow" href="/user_details?userid=NpU44ANnUUNQWY4U0eUGvA"><img src="http://static.px.yelp.com/photo/hJRhFbeepF0dJPPvzUVAFw/ss" style="height:40px;width:40px;" alt="Photo ofclaudia y." /></a>
|
668
|
+
</div>
|
669
|
+
|
670
|
+
<p>
|
671
|
+
<a rel="nofollow" href="/list/union-square-places-san-francisco">union square places</a>
|
672
|
+
<br />if you like or dont like rubbing elbows with tourists
|
673
|
+
</p>
|
674
|
+
</div>
|
675
|
+
<div class="clearfix">
|
676
|
+
<div class="clearStyles photoBox" >
|
677
|
+
<a rel="nofollow" href="/user_details?userid=-yGb8SsPHuY7r8kmGRc3aw"><img src="http://static.px.yelp.com/photo/zHMR2g1L_U4vBLiT3oE6aA/ss" style="height:40px;width:40px;" alt="Photo ofVictor F." /></a>
|
678
|
+
</div>
|
679
|
+
|
680
|
+
<p>
|
681
|
+
<a rel="nofollow" href="/list/burgers-hayward">Burgers</a>
|
682
|
+
<br />burgers and stuff
|
683
|
+
</p>
|
684
|
+
</div>
|
685
|
+
<div class="clearfix">
|
686
|
+
<div class="clearStyles photoBox" >
|
687
|
+
<a rel="nofollow" href="/user_details?userid=b6_gR3caZcaf3PIein5ktA"><img src="http://static.px.yelp.com/photo/BXVGMfVVoPd_Roga0HFFwQ/ss" style="height:40px;width:40px;" alt="Photo ofCaro S." /></a>
|
688
|
+
</div>
|
689
|
+
|
690
|
+
<p>
|
691
|
+
<a rel="nofollow" href="/list/the-very-best-of-fro-yo-in-da-bay-yo-alameda-2">The Very Best of Fro-Yo in Da Bay Yo!</a>
|
692
|
+
<br />This is a list of the frozen yogurt I have tried in the Bay Area listed in order of yummyness.
|
693
|
+
</p>
|
694
|
+
</div>
|
695
|
+
<div class="clearfix">
|
696
|
+
<div class="clearStyles photoBox" >
|
697
|
+
<a rel="nofollow" href="/user_details?userid=PXmf3LDRKKTxY6kq1Ozdag"><img src="http://static.px.yelp.com/photo/zy2G3qwdRlLjM2dckagYIA/ss" style="height:40px;width:40px;" alt="Photo ofYvette B." /></a>
|
698
|
+
</div>
|
699
|
+
|
700
|
+
<p>
|
701
|
+
<a rel="nofollow" href="/list/sweet-spots-downtown-san-francisco">Sweet Spots Downtown</a>
|
702
|
+
<br />Here's where I go for my afternoon sugar fix!
|
703
|
+
</p>
|
704
|
+
</div>
|
705
|
+
|
706
|
+
</div>
|
707
|
+
|
708
|
+
|
709
|
+
|
710
|
+
<div id="talkTeaserModule" class="clearfix">
|
711
|
+
<a href="/talk"><img src="http://static.px.yelp.com/static/20090220/i/new/btn/more.gif" alt="More" style="float: right; margin-right: 5px; margin-top: 5px;" /></a>
|
712
|
+
<h3>Today in Talk</h3>
|
713
|
+
|
714
|
+
<div class="ieSucks">
|
715
|
+
<div class="clearStyles photoBox" >
|
716
|
+
<a rel="nofollow" href="/user_details?userid=6KsokXIYFybIKQ7dVeT-2A"><img src="http://static.px.yelp.com/photo/KsbKAFKzX55LfrJFHIDSIA/xss" style="height:20px;width:20px;" alt="Photo of Kristen Q." /></a>
|
717
|
+
</div>
|
718
|
+
<p class="time"><em>A moment ago</em></p>
|
719
|
+
<p class="talkMessage">
|
720
|
+
<a rel="nofollow" href="/topic/oakland-how-to-politely-ask-your-so-to-stop-singing">How to politely ask your SO to stop singing?</a>
|
721
|
+
</p>
|
722
|
+
</div>
|
723
|
+
<div class="ieSucks">
|
724
|
+
<div class="clearStyles photoBox" >
|
725
|
+
<a rel="nofollow" href="/user_details?userid=Cwqto4UK8q7rdHmG707q2Q"><img src="http://static.px.yelp.com/photo/L_C7tanc6RjK0pCPQ-h8Dw/xss" style="height:20px;width:20px;" alt="Photo of Wes O." /></a>
|
726
|
+
</div>
|
727
|
+
<p class="time"><em>A moment ago</em></p>
|
728
|
+
<p class="talkMessage">
|
729
|
+
<a rel="nofollow" href="/topic/oakland-2-pretty-good-short-films-you-vote">2 pretty good short films... you vote!</a>
|
730
|
+
</p>
|
731
|
+
</div>
|
732
|
+
<div class="ieSucks">
|
733
|
+
<div class="clearStyles photoBox" >
|
734
|
+
<a rel="nofollow" href="/user_details?userid=4oVfjRRCNVyiDtZQgE5lgQ"><img src="http://static.px.yelp.com/photo/Zt0XruWsOto49hk1SqAZEQ/xss" style="height:20px;width:20px;" alt="Photo of kris r." /></a>
|
735
|
+
</div>
|
736
|
+
<p class="time"><em>1 minute ago</em></p>
|
737
|
+
<p class="talkMessage">
|
738
|
+
<a rel="nofollow" href="/topic/san-rafael-what-are-you-eating-for-lunch">What are you eating for lunch?</a>
|
739
|
+
</p>
|
740
|
+
</div>
|
741
|
+
<div class="ieSucks">
|
742
|
+
<div class="clearStyles photoBox" >
|
743
|
+
<a rel="nofollow" href="/user_details?userid=htbA2K31pdZMRSfUf-8joA"><img src="http://static.px.yelp.com/photo/umc4h5mMsq5TSQF4dlp1BQ/xss" style="height:20px;width:20px;" alt="Photo of Mike B." /></a>
|
744
|
+
</div>
|
745
|
+
<p class="time"><em>1 minute ago</em></p>
|
746
|
+
<p class="talkMessage">
|
747
|
+
<a rel="nofollow" href="/topic/oakland-my-review-got-yanked">My review got yanked</a>
|
748
|
+
</p>
|
749
|
+
</div>
|
750
|
+
<div class="ieSucks">
|
751
|
+
<div class="clearStyles photoBox" >
|
752
|
+
<a rel="nofollow" href="/user_details?userid=_V6qMBCSzhwx96FLB3CJRw"><img src="http://static.px.yelp.com/photo/GLDHvzxO-XEWe1wMLdzFfg/xss" style="height:20px;width:20px;" alt="Photo of Pam B." /></a>
|
753
|
+
</div>
|
754
|
+
<p class="time"><em>1 minute ago</em></p>
|
755
|
+
<p class="talkMessage">
|
756
|
+
<a rel="nofollow" href="/topic/san-francisco-talk-to-me-goose">Talk to me goose</a>
|
757
|
+
</p>
|
758
|
+
</div>
|
759
|
+
|
760
|
+
</div>
|
761
|
+
|
762
|
+
<div id="topYelpersModule" class="clearfix external">
|
763
|
+
<h3>Featured Yelpers</h3>
|
764
|
+
<div class="divider">
|
765
|
+
<div>
|
766
|
+
<div class="clearStyles photoBox" >
|
767
|
+
<a rel="nofollow" href="/user_details?userid=vH5Z1-pp49t1MwXOBMzGtA"><img src="http://static.px.yelp.com/photo/Zd1KkfSu1dwPkAonSy5VXQ/ss" style="height:40px;width:40px;" alt="Photo of Wing C." /></a>
|
768
|
+
</div>
|
769
|
+
<p>
|
770
|
+
<a rel="nofollow" href="/user_details?userid=vH5Z1-pp49t1MwXOBMzGtA">Wing C.</a>
|
771
|
+
</p>
|
772
|
+
</div>
|
773
|
+
<div>
|
774
|
+
<div class="clearStyles photoBox" >
|
775
|
+
<a rel="nofollow" href="/user_details?userid=GS8xb9iS04zMQLUt_9nY0A"><img src="http://static.px.yelp.com/photo/IyKJLgLAHGXyAc3xgrsCzg/ss" style="height:40px;width:40px;" alt="Photo of Nicole S." /></a>
|
776
|
+
</div>
|
777
|
+
<p>
|
778
|
+
<a rel="nofollow" href="/user_details?userid=GS8xb9iS04zMQLUt_9nY0A">Nicole S.</a>
|
779
|
+
</p>
|
780
|
+
<p>
|
781
|
+
<em class="smaller">White Washed</em>
|
782
|
+
</p>
|
783
|
+
</div>
|
784
|
+
</div>
|
785
|
+
<div class="divider">
|
786
|
+
<div>
|
787
|
+
<div class="clearStyles photoBox" >
|
788
|
+
<a rel="nofollow" href="/user_details?userid=u8sT3aophVgbWOeFAhGuBA"><img src="http://static.px.yelp.com/photo/uKU7cWo7jmJjO-HTusjMHA/ss" style="height:40px;width:40px;" alt="Photo of Mark G." /></a>
|
789
|
+
</div>
|
790
|
+
<p>
|
791
|
+
<a rel="nofollow" href="/user_details?userid=u8sT3aophVgbWOeFAhGuBA">Mark G.</a>
|
792
|
+
</p>
|
793
|
+
</div>
|
794
|
+
<div>
|
795
|
+
<div class="clearStyles photoBox" >
|
796
|
+
<a rel="nofollow" href="/user_details?userid=91Duq33VbEw4YTwm3HyTIA"><img src="http://static.px.yelp.com/photo/-lYIvUrHmdxsW3h5aPcXLg/ss" style="height:40px;width:40px;" alt="Photo of James S." /></a>
|
797
|
+
</div>
|
798
|
+
<p>
|
799
|
+
<a rel="nofollow" href="/user_details?userid=91Duq33VbEw4YTwm3HyTIA">James S.</a>
|
800
|
+
</p>
|
801
|
+
</div>
|
802
|
+
</div>
|
803
|
+
|
804
|
+
</div>
|
805
|
+
|
806
|
+
|
807
|
+
</div>
|
808
|
+
</div>
|
809
|
+
</div>
|
810
|
+
<div id="pressLinks"><img src="http://static.px.yelp.com/static/20090220/i/new/gfx/hpAdsStatic.png" width="950" height="84" usemap="#pressMap" alt="homepage footer ads" />
|
811
|
+
<map name="pressMap">
|
812
|
+
<area rel="nofollow" href="/weekly" alt="The Weekly Yelp" coords="10,6,232,79">
|
813
|
+
<area rel="nofollow" href="/store" alt="Yelp Apparel Store" coords="245,6,469,79">
|
814
|
+
<area rel="nofollow" href="http://officialblog.yelp.com" alt="The Yelp Blog" coords="481,6,705,79">
|
815
|
+
<area rel="nofollow" href="/press" alt="In the News" coords="718,6,941,79">
|
816
|
+
</map>
|
817
|
+
</div>
|
818
|
+
<script type="text/javascript">
|
819
|
+
Event.observe(window, 'load', function(){
|
820
|
+
if(document.viewport.getScrollOffsets().top <= 0)
|
821
|
+
document.external_search.find_desc.focus();
|
822
|
+
var hp_ac = new Yelp.autocomplete('find_loc_ext', ['canada', 'uk', 'usa']);
|
823
|
+
$('more_hoods', 'external_hoods').each(function(el){
|
824
|
+
if(el){
|
825
|
+
if(el.id=='more_hoods') {
|
826
|
+
var type = 'browse_hoods';
|
827
|
+
var pos = {'x':135,'y':-150};
|
828
|
+
}else{
|
829
|
+
var type = document.external_search.find_loc;
|
830
|
+
var pos = {'x':-80,'y':20};
|
831
|
+
}
|
832
|
+
Event.observe(el, 'click', function(e){e.stop();Yelp.startHoods(this, type, pos)});
|
833
|
+
}
|
834
|
+
});
|
835
|
+
});
|
836
|
+
</script>
|
837
|
+
|
838
|
+
<!-- google_ad_section_start(weight=ignore) -->
|
839
|
+
<div id="footer">
|
840
|
+
|
841
|
+
<div>
|
842
|
+
<ul id="aboutSite">
|
843
|
+
<li><a href="/business?country=US" rel="nofollow">Business Owners</a></li>
|
844
|
+
<li> | <a href="/signup" rel="nofollow" id="Zprofile_footer">My Account</a></li>
|
845
|
+
<li> | <a href="/about" rel="nofollow">About Yelp</a></li>
|
846
|
+
<li> | <a href="/faq" rel="nofollow">FAQ</a></li>
|
847
|
+
<li> | <a href="/weekly">The Weekly Yelp</a></li>
|
848
|
+
<li> | <a href="http://officialblog.yelp.com">Yelp Blog</a></li>
|
849
|
+
<li> | <a href="/yelpmobile" rel="nofollow">Yelp Mobile</a></li>
|
850
|
+
<li> | <a href="/toronto">Yelp Canada</a></li>
|
851
|
+
<li> | <a href="/london">Yelp UK</a></li>
|
852
|
+
<li> | <a href="/rss" rel="nofollow">RSS</a></li>
|
853
|
+
<li> | <a href="/developers?country=US" rel="nofollow">Developers</a></li>
|
854
|
+
<li> | <a href="/contact" rel="nofollow">Feedback</a></li>
|
855
|
+
<li> | <a href="/jobs?country=US" rel="nofollow">Jobs</a></li>
|
856
|
+
</ul>
|
857
|
+
</div>
|
858
|
+
|
859
|
+
<p> </p>
|
860
|
+
<div class="directory">
|
861
|
+
<span class="azlist">
|
862
|
+
Business Listings
|
863
|
+
<a href="/sm/num">#</a>
|
864
|
+
<a href="/sm/a">A</a>
|
865
|
+
<a href="/sm/b">B</a>
|
866
|
+
<a href="/sm/c">C</a>
|
867
|
+
<a href="/sm/d">D</a>
|
868
|
+
<a href="/sm/e">E</a>
|
869
|
+
<a href="/sm/f">F</a>
|
870
|
+
<a href="/sm/g">G</a>
|
871
|
+
<a href="/sm/h">H</a>
|
872
|
+
<a href="/sm/i">I</a>
|
873
|
+
<a href="/sm/j">J</a>
|
874
|
+
<a href="/sm/k">K</a>
|
875
|
+
<a href="/sm/l">L</a>
|
876
|
+
<a href="/sm/m">M</a>
|
877
|
+
<a href="/sm/n">N</a>
|
878
|
+
<a href="/sm/o">O</a>
|
879
|
+
<a href="/sm/p">P</a>
|
880
|
+
<a href="/sm/q">Q</a>
|
881
|
+
<a href="/sm/r">R</a>
|
882
|
+
<a href="/sm/s">S</a>
|
883
|
+
<a href="/sm/t">T</a>
|
884
|
+
<a href="/sm/u">U</a>
|
885
|
+
<a href="/sm/v">V</a>
|
886
|
+
<a href="/sm/w">W</a>
|
887
|
+
<a href="/sm/x">X</a>
|
888
|
+
<a href="/sm/y">Y</a>
|
889
|
+
<a href="/sm/z">Z</a>
|
890
|
+
| <a href="/sm/san-francisco-ca-added">Newly Added</a>
|
891
|
+
</span>
|
892
|
+
</div>
|
893
|
+
<p> </p>
|
894
|
+
<p>Use of this site is subject to express <a href="/static?p=tos&country=US" rel="nofollow"><strong>Terms of Service</strong></a>. By continuing past this page, you agree to abide by these terms.</p>
|
895
|
+
<p>Copyright © 2004-2009 Yelp | <a href="/static?p=privacy&country=US" rel="nofollow">Privacy Policy</a><br><br></p>
|
896
|
+
|
897
|
+
|
898
|
+
|
899
|
+
<div class="directory">
|
900
|
+
<ul>
|
901
|
+
<li class="first"><strong>Site Map</strong></li>
|
902
|
+
<li> | <a href="/atlanta">Atlanta</a></li>
|
903
|
+
<li> | <a href="/austin">Austin</a></li>
|
904
|
+
<li> | <a href="/boston">Boston</a></li>
|
905
|
+
<li> | <a href="/chicago">Chicago</a></li>
|
906
|
+
<li> | <a href="/dallas">Dallas</a></li>
|
907
|
+
<li> | <a href="/denver">Denver</a></li>
|
908
|
+
<li> | <a href="/detroit">Detroit</a></li>
|
909
|
+
<li> | <a href="/honolulu">Honolulu</a></li>
|
910
|
+
<li> | <a href="/houston">Houston</a></li>
|
911
|
+
<li> | <a href="/la">Los Angeles</a></li>
|
912
|
+
<li> | <a href="/miami">Miami</a></li>
|
913
|
+
<li> | <a href="/minneapolis">Minneapolis</a></li>
|
914
|
+
<li> | <a href="/nyc">New York</a></li>
|
915
|
+
<li> | <a href="/philadelphia">Philadelphia</a></li>
|
916
|
+
<li> | <a href="/portland">Portland</a></li>
|
917
|
+
<li> | <a href="/sacramento">Sacramento</a></li>
|
918
|
+
<li> | <a href="/sandiego">San Diego</a></li>
|
919
|
+
<li> | <a href="/sf">San Francisco</a></li>
|
920
|
+
<li> | <a href="/sanjose">San Jose</a></li>
|
921
|
+
<li> | <a href="/seattle">Seattle</a></li>
|
922
|
+
<li> | <a href="/dc">Washington, DC</a></li>
|
923
|
+
<li> | <a href="/locations">More Cities</a></li>
|
924
|
+
</ul>
|
925
|
+
</div>
|
926
|
+
|
927
|
+
<div class="directory">
|
928
|
+
<ul>
|
929
|
+
<li class="first"><strong>Review Directories</strong></li>
|
930
|
+
<li> | <a href="/reviews/12_Atlanta_GA.html">Atlanta</a></li>
|
931
|
+
<li> | <a href="/reviews/12_Austin_TX.html">Austin</a></li>
|
932
|
+
<li> | <a href="/reviews/12_Boston_MA.html">Boston</a></li>
|
933
|
+
<li> | <a href="/reviews/12_Chicago_IL.html">Chicago</a></li>
|
934
|
+
<li> | <a href="/reviews/12_Dallas_TX.html">Dallas</a></li>
|
935
|
+
<li> | <a href="/reviews/12_Denver_CO.html">Denver</a></li>
|
936
|
+
<li> | <a href="/reviews/12_Honolulu_HI.html">Honolulu</a></li>
|
937
|
+
<li> | <a href="/reviews/12_Houston_TX.html">Houston</a></li>
|
938
|
+
<li> | <a href="/reviews/12_Las_Vegas_NV.html">Las Vegas</a></li>
|
939
|
+
<li> | <a href="/reviews/12_Los_Angeles_CA.html">Los Angeles</a></li>
|
940
|
+
<li> | <a href="/reviews/12_Miami_FL.html">Miami</a></li>
|
941
|
+
<li> | <a href="/reviews/12_New_York_NY.html">New York</a></li>
|
942
|
+
<li> | <a href="/reviews/12_Philadelphia_PA.html">Philadelphia</a></li>
|
943
|
+
<li> | <a href="/reviews/12_Phoenix_AZ.html">Phoenix</a></li>
|
944
|
+
<li> | <a href="/reviews/12_Portland_OR.html">Portland</a></li>
|
945
|
+
<li> | <a href="/reviews/12_Sacramento_CA.html">Sacramento</a></li>
|
946
|
+
<li> | <a href="/reviews/12_San_Diego_CA.html">San Diego</a></li>
|
947
|
+
<li> | <a href="/reviews/12_San_Francisco_CA.html">San Francisco</a></li>
|
948
|
+
<li> | <a href="/reviews/12_San_Jose_CA.html">San Jose</a></li>
|
949
|
+
<li> | <a href="/reviews/12_Seattle_WA.html">Seattle</a></li>
|
950
|
+
<li> | <a href="/reviews/12_Washington_DC.html">Washington, DC</a></li>
|
951
|
+
</ul>
|
952
|
+
</div>
|
953
|
+
|
954
|
+
<div class="directory">
|
955
|
+
<ul>
|
956
|
+
<li class="first"><strong>Talk Directories</strong></li>
|
957
|
+
<li> | <a href="/archived_topics/Austin_TX.html">Austin</a></li>
|
958
|
+
<li> | <a href="/archived_topics/Boston_MA.html">Boston</a></li>
|
959
|
+
<li> | <a href="/archived_topics/Chicago_IL.html">Chicago</a></li>
|
960
|
+
<li> | <a href="/archived_topics/Los_Angeles_CA.html">Los Angeles</a></li>
|
961
|
+
<li> | <a href="/archived_topics/New_York_NY.html">New York</a></li>
|
962
|
+
<li> | <a href="/archived_topics/San_Diego_CA.html">San Diego</a></li>
|
963
|
+
<li> | <a href="/archived_topics/San_Francisco_CA.html">San Francisco</a></li>
|
964
|
+
<li> | <a href="/archived_topics/San_Jose_CA.html">San Jose</a></li>
|
965
|
+
<li> | <a href="/archived_topics/Seattle_WA.html">Seattle</a></li>
|
966
|
+
<li> | <a href="/archived_topics/Washington_DC.html">Washington, DC</a></li>
|
967
|
+
</ul>
|
968
|
+
</div>
|
969
|
+
|
970
|
+
<div class="directory">
|
971
|
+
<ul>
|
972
|
+
<li class="first"><strong>Search Directories</strong></li>
|
973
|
+
<li> | <a href="/topsearches/austin">Austin</a></li>
|
974
|
+
<li> | <a href="/topsearches/boston">Boston</a></li>
|
975
|
+
<li> | <a href="/topsearches/chicago">Chicago</a></li>
|
976
|
+
<li> | <a href="/topsearches/la">Los Angeles</a></li>
|
977
|
+
<li> | <a href="/topsearches/nyc">New York</a></li>
|
978
|
+
<li> | <a href="/topsearches/sandiego">San Diego</a></li>
|
979
|
+
<li> | <a href="/topsearches/sf">San Francisco</a></li>
|
980
|
+
<li> | <a href="/topsearches/sanjose">San Jose</a></li>
|
981
|
+
<li> | <a href="/topsearches/seattle">Seattle</a></li>
|
982
|
+
<li> | <a href="/topsearches/dc">Washington, DC</a></li>
|
983
|
+
</ul>
|
984
|
+
</div>
|
985
|
+
|
986
|
+
</div>
|
987
|
+
|
988
|
+
<!-- google_ad_section_end -->
|
989
|
+
|
990
|
+
|
991
|
+
<img src="/spice?r=5cd4a34fd29ef3d7" />
|
992
|
+
|
993
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
994
|
+
</script>
|
995
|
+
<script type="text/javascript">
|
996
|
+
_uacct = "UA-30501-1";
|
997
|
+
urchinTracker();
|
998
|
+
</script>
|
999
|
+
|
1000
|
+
|
1001
|
+
|
1002
|
+
|
1003
|
+
</body>
|
1004
|
+
</html>
|