gtl-parsley-ruby 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (299) hide show
  1. data/CHANGELOG +3 -0
  2. data/README +32 -0
  3. data/Rakefile +57 -0
  4. data/VERSION +1 -0
  5. data/ext/cparsley.c +152 -0
  6. data/ext/extconf.rb +82 -0
  7. data/ext/parsley/.gitignore +32 -0
  8. data/ext/parsley/AUTHORS +1 -0
  9. data/ext/parsley/ChangeLog +0 -0
  10. data/ext/parsley/HACKING +4 -0
  11. data/ext/parsley/INSTALL +73 -0
  12. data/ext/parsley/INTRO +84 -0
  13. data/ext/parsley/Makefile.am +80 -0
  14. data/ext/parsley/Makefile.in +1009 -0
  15. data/ext/parsley/NEWS +0 -0
  16. data/ext/parsley/PAPER +36 -0
  17. data/ext/parsley/Portfile +18 -0
  18. data/ext/parsley/Portfile.in +17 -0
  19. data/ext/parsley/README.C-LANG +92 -0
  20. data/ext/parsley/README.markdown +1 -0
  21. data/ext/parsley/TODO +39 -0
  22. data/ext/parsley/VERSION +1 -0
  23. data/ext/parsley/aclocal.m4 +8918 -0
  24. data/ext/parsley/bootstrap.sh +6 -0
  25. data/ext/parsley/config.guess +1561 -0
  26. data/ext/parsley/config.sub +1686 -0
  27. data/ext/parsley/configure +13437 -0
  28. data/ext/parsley/configure.ac +46 -0
  29. data/ext/parsley/depcomp +630 -0
  30. data/ext/parsley/functions.c +368 -0
  31. data/ext/parsley/functions.h +19 -0
  32. data/ext/parsley/generate_bisect.sh +12 -0
  33. data/ext/parsley/hooks/prepare-commit-msg +16 -0
  34. data/ext/parsley/install-sh +520 -0
  35. data/ext/parsley/json-c-0.9/AUTHORS +2 -0
  36. data/ext/parsley/json-c-0.9/COPYING +19 -0
  37. data/ext/parsley/json-c-0.9/ChangeLog +103 -0
  38. data/ext/parsley/json-c-0.9/INSTALL +302 -0
  39. data/ext/parsley/json-c-0.9/Makefile.am +43 -0
  40. data/ext/parsley/json-c-0.9/Makefile.in +800 -0
  41. data/ext/parsley/json-c-0.9/NEWS +1 -0
  42. data/ext/parsley/json-c-0.9/README +20 -0
  43. data/ext/parsley/json-c-0.9/README-WIN32.html +57 -0
  44. data/ext/parsley/json-c-0.9/README.html +32 -0
  45. data/ext/parsley/json-c-0.9/aclocal.m4 +8909 -0
  46. data/ext/parsley/json-c-0.9/arraylist.c +94 -0
  47. data/ext/parsley/json-c-0.9/arraylist.h +53 -0
  48. data/ext/parsley/json-c-0.9/bits.h +27 -0
  49. data/ext/parsley/json-c-0.9/config.guess +1561 -0
  50. data/ext/parsley/json-c-0.9/config.h +125 -0
  51. data/ext/parsley/json-c-0.9/config.h.in +124 -0
  52. data/ext/parsley/json-c-0.9/config.h.win32 +94 -0
  53. data/ext/parsley/json-c-0.9/config.sub +1686 -0
  54. data/ext/parsley/json-c-0.9/configure +13084 -0
  55. data/ext/parsley/json-c-0.9/configure.in +33 -0
  56. data/ext/parsley/json-c-0.9/debug.c +98 -0
  57. data/ext/parsley/json-c-0.9/debug.h +50 -0
  58. data/ext/parsley/json-c-0.9/depcomp +630 -0
  59. data/ext/parsley/json-c-0.9/doc/html/annotated.html +40 -0
  60. data/ext/parsley/json-c-0.9/doc/html/arraylist_8h.html +240 -0
  61. data/ext/parsley/json-c-0.9/doc/html/bits_8h.html +150 -0
  62. data/ext/parsley/json-c-0.9/doc/html/classes.html +36 -0
  63. data/ext/parsley/json-c-0.9/doc/html/config_8h.html +612 -0
  64. data/ext/parsley/json-c-0.9/doc/html/debug_8h.html +392 -0
  65. data/ext/parsley/json-c-0.9/doc/html/doxygen.css +441 -0
  66. data/ext/parsley/json-c-0.9/doc/html/doxygen.png +0 -0
  67. data/ext/parsley/json-c-0.9/doc/html/files.html +42 -0
  68. data/ext/parsley/json-c-0.9/doc/html/functions.html +206 -0
  69. data/ext/parsley/json-c-0.9/doc/html/functions_vars.html +206 -0
  70. data/ext/parsley/json-c-0.9/doc/html/globals.html +459 -0
  71. data/ext/parsley/json-c-0.9/doc/html/globals_defs.html +202 -0
  72. data/ext/parsley/json-c-0.9/doc/html/globals_enum.html +50 -0
  73. data/ext/parsley/json-c-0.9/doc/html/globals_eval.html +135 -0
  74. data/ext/parsley/json-c-0.9/doc/html/globals_func.html +194 -0
  75. data/ext/parsley/json-c-0.9/doc/html/globals_type.html +70 -0
  76. data/ext/parsley/json-c-0.9/doc/html/globals_vars.html +50 -0
  77. data/ext/parsley/json-c-0.9/doc/html/index.html +25 -0
  78. data/ext/parsley/json-c-0.9/doc/html/json_8h.html +32 -0
  79. data/ext/parsley/json-c-0.9/doc/html/json__object_8h.html +1150 -0
  80. data/ext/parsley/json-c-0.9/doc/html/json__object__private_8h.html +75 -0
  81. data/ext/parsley/json-c-0.9/doc/html/json__tokener_8h.html +366 -0
  82. data/ext/parsley/json-c-0.9/doc/html/json__util_8h.html +106 -0
  83. data/ext/parsley/json-c-0.9/doc/html/linkhash_8h.html +740 -0
  84. data/ext/parsley/json-c-0.9/doc/html/printbuf_8h.html +214 -0
  85. data/ext/parsley/json-c-0.9/doc/html/structarray__list.html +104 -0
  86. data/ext/parsley/json-c-0.9/doc/html/structjson__object.html +141 -0
  87. data/ext/parsley/json-c-0.9/doc/html/structjson__object__iter.html +87 -0
  88. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener.html +206 -0
  89. data/ext/parsley/json-c-0.9/doc/html/structjson__tokener__srec.html +104 -0
  90. data/ext/parsley/json-c-0.9/doc/html/structlh__entry.html +105 -0
  91. data/ext/parsley/json-c-0.9/doc/html/structlh__table.html +275 -0
  92. data/ext/parsley/json-c-0.9/doc/html/structprintbuf.html +87 -0
  93. data/ext/parsley/json-c-0.9/doc/html/tab_b.gif +0 -0
  94. data/ext/parsley/json-c-0.9/doc/html/tab_l.gif +0 -0
  95. data/ext/parsley/json-c-0.9/doc/html/tab_r.gif +0 -0
  96. data/ext/parsley/json-c-0.9/doc/html/tabs.css +105 -0
  97. data/ext/parsley/json-c-0.9/doc/html/unionjson__object_1_1data.html +140 -0
  98. data/ext/parsley/json-c-0.9/install-sh +520 -0
  99. data/ext/parsley/json-c-0.9/json.h +31 -0
  100. data/ext/parsley/json-c-0.9/json.pc +11 -0
  101. data/ext/parsley/json-c-0.9/json.pc.in +11 -0
  102. data/ext/parsley/json-c-0.9/json_object.c +512 -0
  103. data/ext/parsley/json-c-0.9/json_object.h +319 -0
  104. data/ext/parsley/json-c-0.9/json_object_private.h +52 -0
  105. data/ext/parsley/json-c-0.9/json_tokener.c +628 -0
  106. data/ext/parsley/json-c-0.9/json_tokener.h +98 -0
  107. data/ext/parsley/json-c-0.9/json_util.c +122 -0
  108. data/ext/parsley/json-c-0.9/json_util.h +31 -0
  109. data/ext/parsley/json-c-0.9/libjson.la +41 -0
  110. data/ext/parsley/json-c-0.9/libtool +8890 -0
  111. data/ext/parsley/json-c-0.9/linkhash.c +216 -0
  112. data/ext/parsley/json-c-0.9/linkhash.h +272 -0
  113. data/ext/parsley/json-c-0.9/ltmain.sh +8406 -0
  114. data/ext/parsley/json-c-0.9/missing +376 -0
  115. data/ext/parsley/json-c-0.9/printbuf.c +149 -0
  116. data/ext/parsley/json-c-0.9/printbuf.h +64 -0
  117. data/ext/parsley/json-c-0.9/stamp-h1 +1 -0
  118. data/ext/parsley/json-c-0.9/test1 +130 -0
  119. data/ext/parsley/json-c-0.9/test1.c +164 -0
  120. data/ext/parsley/json-c-0.9/test2 +130 -0
  121. data/ext/parsley/json-c-0.9/test2.c +20 -0
  122. data/ext/parsley/json-c-0.9/test3 +130 -0
  123. data/ext/parsley/json-c-0.9/test3.c +23 -0
  124. data/ext/parsley/libtool +8890 -0
  125. data/ext/parsley/ltmain.sh +8406 -0
  126. data/ext/parsley/missing +376 -0
  127. data/ext/parsley/parsed_xpath.c +168 -0
  128. data/ext/parsley/parsed_xpath.h +34 -0
  129. data/ext/parsley/parser.y +631 -0
  130. data/ext/parsley/parsley.c +793 -0
  131. data/ext/parsley/parsley.h +87 -0
  132. data/ext/parsley/parsley_main.c +185 -0
  133. data/ext/parsley/parsleyc_main.c +108 -0
  134. data/ext/parsley/regexp.c +359 -0
  135. data/ext/parsley/regexp.h +36 -0
  136. data/ext/parsley/scanner.l +221 -0
  137. data/ext/parsley/test/ambiguous.html +207 -0
  138. data/ext/parsley/test/ambiguous.json +1 -0
  139. data/ext/parsley/test/ambiguous.let +6 -0
  140. data/ext/parsley/test/array-regression.html +5 -0
  141. data/ext/parsley/test/array-regression.json +1 -0
  142. data/ext/parsley/test/array-regression.let +10 -0
  143. data/ext/parsley/test/backslash.html +5 -0
  144. data/ext/parsley/test/backslash.json +1 -0
  145. data/ext/parsley/test/backslash.let +3 -0
  146. data/ext/parsley/test/bang.html +17 -0
  147. data/ext/parsley/test/bang.json +1 -0
  148. data/ext/parsley/test/bang.let +6 -0
  149. data/ext/parsley/test/collate_regression.html +324 -0
  150. data/ext/parsley/test/collate_regression.json +1 -0
  151. data/ext/parsley/test/collate_regression.let +9 -0
  152. data/ext/parsley/test/contains.html +3 -0
  153. data/ext/parsley/test/contains.json +1 -0
  154. data/ext/parsley/test/contains.let +3 -0
  155. data/ext/parsley/test/content.html +13 -0
  156. data/ext/parsley/test/content.json +1 -0
  157. data/ext/parsley/test/content.let +7 -0
  158. data/ext/parsley/test/cool.html +575 -0
  159. data/ext/parsley/test/cool.json +1 -0
  160. data/ext/parsley/test/cool.let +9 -0
  161. data/ext/parsley/test/craigs-simple.html +207 -0
  162. data/ext/parsley/test/craigs-simple.json +1 -0
  163. data/ext/parsley/test/craigs-simple.let +6 -0
  164. data/ext/parsley/test/craigs.html +207 -0
  165. data/ext/parsley/test/craigs.json +1 -0
  166. data/ext/parsley/test/craigs.let +9 -0
  167. data/ext/parsley/test/crash.html +157 -0
  168. data/ext/parsley/test/crash.json +1 -0
  169. data/ext/parsley/test/crash.let +1 -0
  170. data/ext/parsley/test/css_attr.html +3 -0
  171. data/ext/parsley/test/css_attr.json +1 -0
  172. data/ext/parsley/test/css_attr.let +3 -0
  173. data/ext/parsley/test/default-namespace.json +1 -0
  174. data/ext/parsley/test/default-namespace.let +3 -0
  175. data/ext/parsley/test/default-namespace.xml +1493 -0
  176. data/ext/parsley/test/div.html +8 -0
  177. data/ext/parsley/test/div.json +1 -0
  178. data/ext/parsley/test/div.let +10 -0
  179. data/ext/parsley/test/empty.html +3 -0
  180. data/ext/parsley/test/empty.json +1 -0
  181. data/ext/parsley/test/empty.let +1 -0
  182. data/ext/parsley/test/emptyish.html +207 -0
  183. data/ext/parsley/test/emptyish.let +3 -0
  184. data/ext/parsley/test/fictional-opt.html +43 -0
  185. data/ext/parsley/test/fictional-opt.json +1 -0
  186. data/ext/parsley/test/fictional-opt.let +14 -0
  187. data/ext/parsley/test/fictional.html +43 -0
  188. data/ext/parsley/test/fictional.json +1 -0
  189. data/ext/parsley/test/fictional.let +14 -0
  190. data/ext/parsley/test/function-magic.html +9 -0
  191. data/ext/parsley/test/function-magic.json +1 -0
  192. data/ext/parsley/test/function-magic.let +8 -0
  193. data/ext/parsley/test/hn.html +32 -0
  194. data/ext/parsley/test/hn.json +1 -0
  195. data/ext/parsley/test/hn.let +8 -0
  196. data/ext/parsley/test/malformed-array.html +2329 -0
  197. data/ext/parsley/test/malformed-array.json +1 -0
  198. data/ext/parsley/test/malformed-array.let +22 -0
  199. data/ext/parsley/test/malformed-expr.html +2329 -0
  200. data/ext/parsley/test/malformed-expr.json +1 -0
  201. data/ext/parsley/test/malformed-expr.let +16 -0
  202. data/ext/parsley/test/malformed-function.html +845 -0
  203. data/ext/parsley/test/malformed-function.json +197 -0
  204. data/ext/parsley/test/malformed-function.let +8 -0
  205. data/ext/parsley/test/malformed-json.html +2329 -0
  206. data/ext/parsley/test/malformed-json.json +1 -0
  207. data/ext/parsley/test/malformed-json.let +6 -0
  208. data/ext/parsley/test/malformed-xpath.html +8 -0
  209. data/ext/parsley/test/malformed-xpath.json +1 -0
  210. data/ext/parsley/test/malformed-xpath.let +7 -0
  211. data/ext/parsley/test/match.json +1 -0
  212. data/ext/parsley/test/match.let +9 -0
  213. data/ext/parsley/test/match.xml +11 -0
  214. data/ext/parsley/test/math_ambiguity.html +9 -0
  215. data/ext/parsley/test/math_ambiguity.json +1 -0
  216. data/ext/parsley/test/math_ambiguity.let +5 -0
  217. data/ext/parsley/test/nth-regression.html +13 -0
  218. data/ext/parsley/test/nth-regression.json +1 -0
  219. data/ext/parsley/test/nth-regression.let +3 -0
  220. data/ext/parsley/test/optional.html +2328 -0
  221. data/ext/parsley/test/optional.json +1 -0
  222. data/ext/parsley/test/optional.let +8 -0
  223. data/ext/parsley/test/outer-xml.html +6 -0
  224. data/ext/parsley/test/outer-xml.json +1 -0
  225. data/ext/parsley/test/outer-xml.let +5 -0
  226. data/ext/parsley/test/position.html +8 -0
  227. data/ext/parsley/test/position.json +1 -0
  228. data/ext/parsley/test/position.let +6 -0
  229. data/ext/parsley/test/question_regressions.html +443 -0
  230. data/ext/parsley/test/question_regressions.json +1 -0
  231. data/ext/parsley/test/question_regressions.let +6 -0
  232. data/ext/parsley/test/quote.json +1 -0
  233. data/ext/parsley/test/quote.let +8 -0
  234. data/ext/parsley/test/quote.xml +11 -0
  235. data/ext/parsley/test/reddit.html +1 -0
  236. data/ext/parsley/test/reddit.json +1 -0
  237. data/ext/parsley/test/reddit.let +12 -0
  238. data/ext/parsley/test/remote-fail.json +1 -0
  239. data/ext/parsley/test/remote.html +3 -0
  240. data/ext/parsley/test/remote.json +1 -0
  241. data/ext/parsley/test/remote.let +4 -0
  242. data/ext/parsley/test/replace.json +1 -0
  243. data/ext/parsley/test/replace.let +9 -0
  244. data/ext/parsley/test/replace.xml +11 -0
  245. data/ext/parsley/test/scope.html +10 -0
  246. data/ext/parsley/test/scope.json +1 -0
  247. data/ext/parsley/test/scope.let +6 -0
  248. data/ext/parsley/test/segfault.html +5 -0
  249. data/ext/parsley/test/segfault.json +1 -0
  250. data/ext/parsley/test/segfault.let +9 -0
  251. data/ext/parsley/test/sg-wrap.html +5 -0
  252. data/ext/parsley/test/sg-wrap.json +1 -0
  253. data/ext/parsley/test/sg-wrap.let +3 -0
  254. data/ext/parsley/test/sg_off.html +5 -0
  255. data/ext/parsley/test/sg_off.json +1 -0
  256. data/ext/parsley/test/sg_off.let +3 -0
  257. data/ext/parsley/test/test.json +1 -0
  258. data/ext/parsley/test/test.let +6 -0
  259. data/ext/parsley/test/test.xml +11 -0
  260. data/ext/parsley/test/trivial.html +2329 -0
  261. data/ext/parsley/test/trivial.json +1 -0
  262. data/ext/parsley/test/trivial.let +4 -0
  263. data/ext/parsley/test/trivial2.html +2329 -0
  264. data/ext/parsley/test/trivial2.json +1 -0
  265. data/ext/parsley/test/trivial2.let +7 -0
  266. data/ext/parsley/test/unbang.html +17 -0
  267. data/ext/parsley/test/unbang.json +1 -0
  268. data/ext/parsley/test/unbang.let +6 -0
  269. data/ext/parsley/test/unicode.html +3 -0
  270. data/ext/parsley/test/unicode.json +1 -0
  271. data/ext/parsley/test/unicode.let +1 -0
  272. data/ext/parsley/test/whitespace.html +8 -0
  273. data/ext/parsley/test/whitespace.json +1 -0
  274. data/ext/parsley/test/whitespace.let +3 -0
  275. data/ext/parsley/test/whitespace_regression.html +4 -0
  276. data/ext/parsley/test/whitespace_regression.json +1 -0
  277. data/ext/parsley/test/whitespace_regression.let +3 -0
  278. data/ext/parsley/test/yelp-benchmark.rb +53 -0
  279. data/ext/parsley/test/yelp-home.html +1004 -0
  280. data/ext/parsley/test/yelp-home.json +1 -0
  281. data/ext/parsley/test/yelp-home.let +6 -0
  282. data/ext/parsley/test/yelp.html +2329 -0
  283. data/ext/parsley/test/yelp.json +1 -0
  284. data/ext/parsley/test/yelp.let +12 -0
  285. data/ext/parsley/test/youtube.html +1940 -0
  286. data/ext/parsley/test/youtube.let +11 -0
  287. data/ext/parsley/util.c +237 -0
  288. data/ext/parsley/util.h +34 -0
  289. data/ext/parsley/xml2json.c +47 -0
  290. data/ext/parsley/xml2json.h +14 -0
  291. data/ext/parsley/y.tab.h +222 -0
  292. data/ext/parsley/ylwrap +222 -0
  293. data/lib/parsley.rb +84 -0
  294. data/test/test_parsley.rb +120 -0
  295. data/test/yelp-benchmark.rb +53 -0
  296. data/test/yelp-home.html +1004 -0
  297. data/test/yelp-home.let +6 -0
  298. data/test/yelp.html +2329 -0
  299. metadata +366 -0
@@ -0,0 +1 @@
1
+ { "title": "Nick's Crispy Tacos", "links": [ { "text": "Yelp", "link": "\/" }, { "text": "Welcome", "link": "\/" }, { "text": "\t\t\t\tAbout Me", "link": "\/signup?return_url=%2Fuser_details" }, { "text": "\t\t\t\tWrite a Review", "link": "\/signup?return_url=%2Fwriteareview" }, { "text": "Find Reviews", "link": "\/find" }, { "text": "\t\t\t\tInvite Friends", "link": "\/signup?return_url=%2Finvite_friends" }, { "text": "\t\t\t\tMessaging", "link": "\/signup?return_url=%2Fmail" }, { "text": "Talk", "link": "\/talk" }, { "text": "Log In", "link": "\/login?return_url=%2Fbiz%2Fnicks-crispy-tacos-san-francisco" }, { "text": "Account", "link": "\/signup?return_url=%2Fprofile" }, { "text": "Member Search", "link": "\/member_search" }, { "text": "Try our mobile site, optimized for faster browsing.", "link": "http:\/\/mobile.yelp.com" }, { "text": "Mexican", "link": "\/c\/sf\/mexican" }, { "text": "Edit", "link": "\/biz_attribute?biz_id=ziVej4oW2JpUConTE_Y_mg" }, { "text": "Add Photos", "link": "\/biz_photos\/ziVej4oW2JpUConTE_Y_mg?action_user_photos=1" }, { "text": "View All", "link": "\/biz_photos\/ziVej4oW2JpUConTE_Y_mg" }, { "text": "First to Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:RczzCnHJgjvsnRGh-haf2Q" }, { "text": "Nish N.", "link": "\/user_details?userid=G5LXEaxhQMF_BVjNHkVr7g" }, { "text": "Edit Business Info", "link": "\/biz_attribute?biz_id=ziVej4oW2JpUConTE_Y_mg" }, { "text": "Print version", "link": "javascript:printSwitch(window.location.href)" }, { "text": "pescado", "link": "\/biz\/nicks-crispy-tacos-san-francisco?q=pescado" }, { "text": "carne asada", "link": "\/biz\/nicks-crispy-tacos-san-francisco?q=carne+asada" }, { "text": "fish tacos", "link": "\/biz\/nicks-crispy-tacos-san-francisco?q=fish" }, { "text": "Recent + Votes", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_asc" }, { "text": "Date", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=date_desc" }, { "text": "Rating", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=rating_desc" }, { "text": "Elites'", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=elites_desc" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "kylie H.", "link": "\/user_details?userid=GuNBz3pAXMxfB2SBd5qeuQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=-QhhXl4NJn3zYUNMU5eZ2Q&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:-QhhXl4NJn3zYUNMU5eZ2Q" }, { "text": "Betsy D.", "link": "\/user_details?userid=PyFzJlt1R9p6tNnVTLreXw" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=4w-uqsAYPZc9qyaU9h6Vkg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:4w-uqsAYPZc9qyaU9h6Vkg" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "May T.", "link": "\/user_details?userid=Bp-TQEtc6Vs6ldnLgjqglg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=fxBpg589pmV_-ANRZz1TFA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:fxBpg589pmV_-ANRZz1TFA" }, { "text": "roger l.", "link": "\/user_details?userid=XTUko7vKIZAqfnFMcl8DXA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=UdNpUZzydmzbLZ5b2h-3iw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:UdNpUZzydmzbLZ5b2h-3iw" }, { "text": "Dee Dee N.", "link": "\/user_details?userid=aEZwTlSYuTihuDvTewmMYw" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=dPXhvcIoJ7-R07grwDYFQg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:dPXhvcIoJ7-R07grwDYFQg" }, { "text": "Olga P.", "link": "\/user_details?userid=ps9NxwiSFJrZ1mhgsD6IZQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=SKENI8otSOlKTWJxEX4D0A&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:SKENI8otSOlKTWJxEX4D0A" }, { "text": "July H.", "link": "\/user_details?userid=sIxLoeTM4t9Ck10mCZh5eg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=VGEIiZCmdkVRr3qWlXfK8w&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:VGEIiZCmdkVRr3qWlXfK8w" }, { "text": "Hector a.", "link": "\/user_details?userid=QMugllQW_dXUNxMxWGJuqA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=3wbOU89THdoVlkMBhiZ0Uw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:3wbOU89THdoVlkMBhiZ0Uw" }, { "text": "Jane A.", "link": "\/user_details?userid=wGWc1rv-Ed0yCMUaoq7cLA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=C6GKCiqRNuPiD8Gj84Pxvw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:C6GKCiqRNuPiD8Gj84Pxvw" }, { "text": "Caroline S.", "link": "\/user_details?userid=GEOe8uxg-dAXjl7SsqQ80A" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=LP2YneMTdlyBoXswLVl_kA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:LP2YneMTdlyBoXswLVl_kA" }, { "text": "Dennis L.", "link": "\/user_details?userid=3yeBxgUCl6sXtn2GTX1UNw" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=hEEmTWVUvsdy5oaruVKMLA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:hEEmTWVUvsdy5oaruVKMLA" }, { "text": "Elijah S.", "link": "\/user_details?userid=tzqYy9UEJvzW0WMjRuVaAA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=yEkxgiWerrp3ixu22ykwkw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:yEkxgiWerrp3ixu22ykwkw" }, { "text": "Janet H.", "link": "\/user_details?userid=GWMo-GHRtiIBNV_T2YXd7g" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=xLFxCLEfVPOYubLokVGHsQ&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:xLFxCLEfVPOYubLokVGHsQ" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "stella c.", "link": "\/user_details?userid=PmTAFPoq3bufn9FVxCWRvA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=BBiK5ptDUJJyb0bGC36DJg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:BBiK5ptDUJJyb0bGC36DJg" }, { "text": "NiKKi N.", "link": "\/user_details?userid=iZ2jdT2LLTGzKWwyXdqveg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=jaxbgIp1dom1M144ZNGUmg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:jaxbgIp1dom1M144ZNGUmg" }, { "text": "Grace R.", "link": "\/user_details?userid=Mp9gZsob8Hp7qzTh0vA4aA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=-TXvoJogkkxPBgjOOts1WA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:-TXvoJogkkxPBgjOOts1WA" }, { "text": "Tim B.", "link": "\/user_details?userid=r61MFYKQXpiCG1qqv5ENpA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=fshpGiyWtiFlObv36JP6Pg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:fshpGiyWtiFlObv36JP6Pg" }, { "text": "Chris P.", "link": "\/user_details?userid=PZokuYn6GU3t-TbeYiYrEg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=5fMQhPnPVP7wYVxt3iH1BA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:5fMQhPnPVP7wYVxt3iH1BA" }, { "text": "Jenny H.", "link": "\/user_details?userid=vqn-YtS4Lv2fM_cVil-lWg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=2NRQuzZBK9Hu6pZXjMNfCw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:2NRQuzZBK9Hu6pZXjMNfCw" }, { "text": "Garrett J.", "link": "\/user_details?userid=CQ7AB1RE_6zwcWRMy729CQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=NrmuhQ8rGkaQchuW873QUw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:NrmuhQ8rGkaQchuW873QUw" }, { "text": "Kelly M.", "link": "\/user_details?userid=hA8et-LncZc1F1_seQl4eg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=zuJbs6cLLIkvqfISRof-FQ&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:zuJbs6cLLIkvqfISRof-FQ" }, { "text": "Steve S.", "link": "\/user_details?userid=t8eeyCHVuPe0r4WpURxRfA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=btTtU0dqaHo398yVeCgz2Q&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:btTtU0dqaHo398yVeCgz2Q" }, { "text": "Arceli A.", "link": "\/user_details?userid=LnDW09gSlZCDtQrgzwWjHw" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=FGwnvF2kZ2qE0JK9hx8wZA&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:FGwnvF2kZ2qE0JK9hx8wZA" }, { "text": "Melissa G.", "link": "\/user_details?userid=DiiyWCoTG_urZBffTsvx-Q" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=J4I_qvGfrvtB5OQEpTlR2A&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:J4I_qvGfrvtB5OQEpTlR2A" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "Julie F.", "link": "\/user_details?userid=R_aCqb62GyeU2h7OmSufeA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=SGIicy3z4iLKHjpz9aVq6w&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:SGIicy3z4iLKHjpz9aVq6w" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "Gloria H.", "link": "\/user_details?userid=GCuDiPUKYxhgFHP5LqJa2Q" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=OllWIlbkPETsL5cW0RcmHg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:OllWIlbkPETsL5cW0RcmHg" }, { "text": "John G.", "link": "\/user_details?userid=sV7R7Vyx1zbRHdTaPYe8Mg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=IjCZJjGSHEe8mOWt5lmvbw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:IjCZJjGSHEe8mOWt5lmvbw" }, { "text": "t l.", "link": "\/user_details?userid=5jXfN4vBYb-PyNfOSVulLQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=cDav_gSVlQgr_5KW5neUzw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:cDav_gSVlQgr_5KW5neUzw" }, { "text": "Eddy N.", "link": "\/user_details?userid=wcwH3HDVkIi9J90XzCZJkQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=O69A6u9wduPvd8vx1Tuw6g&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:O69A6u9wduPvd8vx1Tuw6g" }, { "text": "Dan Y.", "link": "\/user_details?userid=aGKhooafW3zlKcK2Wp25uA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=PkgE7rIfbMeKZtrrQGj1Gw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:PkgE7rIfbMeKZtrrQGj1Gw" }, { "text": "Annie B.", "link": "\/user_details?userid=vlYbuIXxmOxPTruIyB2cgA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=ZvyV4vv6J4Z_1eHrIfDFtw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:ZvyV4vv6J4Z_1eHrIfDFtw" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "Steven R.", "link": "\/user_details?userid=_SVAW_bwFx3G2tDqmsmOBw" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=0PrfqEpUBQq9th_h_W2y2g&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:0PrfqEpUBQq9th_h_W2y2g" }, { "text": "Marie K.", "link": "\/user_details?userid=PfbmDAiFhv_c4s_Aat_bow" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=sUhD9e_8zqYPKCZSHTgi5g&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:sUhD9e_8zqYPKCZSHTgi5g" }, { "text": "kristie l.", "link": "\/user_details?userid=l0E2uND3lPHlg8_rjd0m1Q" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=-Sy0RvtZdRNiCySM0GMNdQ&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:-Sy0RvtZdRNiCySM0GMNdQ" }, { "text": "Matthew G.", "link": "\/user_details?userid=0tl0RoxhNRqxYRqXLIDEig" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=sGjTJVCL4IVsPdx3t0CZSQ&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:sGjTJVCL4IVsPdx3t0CZSQ" }, { "text": "Spencer T.", "link": "\/user_details?userid=owf1nM4hKYAoUEgWYxQNyQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=wflFMXgVp_ywKD7cGMjtSw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:wflFMXgVp_ywKD7cGMjtSw" }, { "text": "Creamy A.", "link": "\/user_details?userid=K1NLdTfT1IizE-6smhsSug" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=dGT7gYNAWB3vxGkQB8TRyw&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:dGT7gYNAWB3vxGkQB8TRyw" }, { "text": "Elite '08", "link": "\/elite" }, { "text": "Cory G.", "link": "\/user_details?userid=ee1XilXm-2clTtM5O_k0aA" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=g9JE7mGjRzBqb4xBsSJCqQ&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:g9JE7mGjRzBqb4xBsSJCqQ" }, { "text": "Ralph C.", "link": "\/user_details?userid=Za_I090SWdL67gKH_kGMRQ" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=s4oSx9jgYsazjpAsubaiAg&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:s4oSx9jgYsazjpAsubaiAg" }, { "text": "Derrick C.", "link": "\/user_details?userid=TAzGPFt9x99JCYWtDmZDWg" }, { "text": "Bookmark", "link": "\/signup" }, { "text": "Send to a Friend", "link": "\/biz_share?bizid=ziVej4oW2JpUConTE_Y_mg&reviewid=9ZET-X9qdv2iJcIemPEy0g&return_url=\/biz\/nicks-crispy-tacos-san-francisco" }, { "text": "Link to This Review", "link": "\/biz\/nicks-crispy-tacos-san-francisco#hrid:9ZET-X9qdv2iJcIemPEy0g" }, { "text": " 2", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=40" }, { "text": " 3", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=80" }, { "text": " 4", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=120" }, { "text": " 5", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=160" }, { "text": " 6", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=200" }, { "text": " 7", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=240" }, { "text": " 8", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=280" }, { "text": " 9", "link": "\/biz\/nicks-crispy-tacos-san-francisco?rpp=40&sort_by=relevance_desc&start=320" }, { "text": "View Larger Map\/Directions »", "link": "\/map\/nicks-crispy-tacos-san-francisco" }, { "text": "Restaurants", "link": "\/search?find_loc=1500+Broadway%2C+San+Francisco%2C+CA+94109&cflt=restaurants" }, { "text": "Nightlife", "link": "\/search?find_loc=1500+Broadway%2C+San+Francisco%2C+CA+94109&cflt=nightlife" }, { "text": "Shopping", "link": "\/search?find_loc=1500+Broadway%2C+San+Francisco%2C+CA+94109&cflt=shopping" }, { "text": "Coffee", "link": "\/search?find_loc=1500+Broadway%2C+San+Francisco%2C+CA+94109&cflt=coffee" }, { "text": "All", "link": "\/search?find_loc=1500+Broadway%2C+San+Francisco%2C+CA+94109" }, { "text": "Pancho's Salsa Bar &…", "link": "\/biz\/panchos-salsa-bar-and-grill-san-francisco" }, { "text": "Olivo's", "link": "\/biz\/olivos-san-francisco" }, { "text": "Underdog's Sports Bar &…", "link": "\/biz\/underdogs-sports-bar-and-grill-san-francisco" }, { "text": "La Mexicana Taqueria", "link": "\/biz\/la-mexicana-taqueria-san-francisco" }, { "text": "Tortilla Heights", "link": "\/biz\/tortilla-heights-san-francisco" }, { "text": "My Favorite Places Within…", "link": "\/list\/my-favorite-places-within-walking-distance-san-francisco" }, { "text": "Top Restaurants", "link": "\/list\/P3o3qe3Ho82HY5Pa1wkbyA" }, { "text": "My New Hood!", "link": "\/list\/my-new-hood-san-francisco-2" }, { "text": "Kiko's Top Ten Places to…", "link": "\/list\/kikos-top-ten-places-to-eat-san-francisco" }, { "text": "My Neighborhood", "link": "\/list\/7BeV0ZLAHGeK9KlePdj8lQ" }, { "text": "Cheap and Easy Weeknight…", "link": "\/list\/cheap-and-easy-weeknight-dinner-san-francisco" }, { "text": "Polk Me!", "link": "\/list\/polk-me-san-francisco" }, { "text": "Strong Recommendations", "link": "\/list\/strong-recommendations-san-leandro" }, { "text": "San Francisco Mexican Restaurants", "link": "http:\/\/local.yahoo.com\/CA\/San+Francisco\/Food+Dining\/Restaurants\/Mexican+Restaurants" }, { "text": "Business Owners", "link": "\/business?country=US" }, { "text": "My Account", "link": "\/signup" }, { "text": "About Yelp", "link": "\/about" }, { "text": "FAQ", "link": "\/faq" }, { "text": "The Weekly Yelp", "link": "\/weekly" }, { "text": "Yelp Blog", "link": "http:\/\/blog.yelp.com\/" }, { "text": "Yelp Mobile", "link": "\/yelpmobile" }, { "text": "Yelp Canada", "link": "\/toronto" }, { "text": "RSS", "link": "\/rss" }, { "text": "Developers", "link": "\/developers?country=US" }, { "text": "Feedback", "link": "\/contact" }, { "text": "Jobs", "link": "\/jobs?country=US" }, { "text": "#", "link": "\/sm\/san-francisco-ca\/num" }, { "text": "A", "link": "\/sm\/san-francisco-ca\/a" }, { "text": "B", "link": "\/sm\/san-francisco-ca\/b" }, { "text": "C", "link": "\/sm\/san-francisco-ca\/c" }, { "text": "D", "link": "\/sm\/san-francisco-ca\/d" }, { "text": "E", "link": "\/sm\/san-francisco-ca\/e" }, { "text": "F", "link": "\/sm\/san-francisco-ca\/f" }, { "text": "G", "link": "\/sm\/san-francisco-ca\/g" }, { "text": "H", "link": "\/sm\/san-francisco-ca\/h" }, { "text": "I", "link": "\/sm\/san-francisco-ca\/i" }, { "text": "J", "link": "\/sm\/san-francisco-ca\/j" }, { "text": "K", "link": "\/sm\/san-francisco-ca\/k" }, { "text": "L", "link": "\/sm\/san-francisco-ca\/l" }, { "text": "M", "link": "\/sm\/san-francisco-ca\/m" }, { "text": "N", "link": "\/sm\/san-francisco-ca\/n" }, { "text": "O", "link": "\/sm\/san-francisco-ca\/o" }, { "text": "P", "link": "\/sm\/san-francisco-ca\/p" }, { "text": "Q", "link": "\/sm\/san-francisco-ca\/q" }, { "text": "R", "link": "\/sm\/san-francisco-ca\/r" }, { "text": "S", "link": "\/sm\/san-francisco-ca\/s" }, { "text": "T", "link": "\/sm\/san-francisco-ca\/t" }, { "text": "U", "link": "\/sm\/san-francisco-ca\/u" }, { "text": "V", "link": "\/sm\/san-francisco-ca\/v" }, { "text": "W", "link": "\/sm\/san-francisco-ca\/w" }, { "text": "X", "link": "\/sm\/san-francisco-ca\/x" }, { "text": "Y", "link": "\/sm\/san-francisco-ca\/y" }, { "text": "Z", "link": "\/sm\/san-francisco-ca\/z" }, { "text": "Newly Added", "link": "\/sm\/san-francisco-ca-added" }, { "text": "Terms of Service", "link": "\/static?p=tos&country=US" }, { "text": "Privacy Policy", "link": "\/static?p=privacy&country=US" }, { "text": "Atlanta", "link": "\/atlanta" }, { "text": "Austin", "link": "\/austin" }, { "text": "Boston", "link": "\/boston" }, { "text": "Chicago", "link": "\/chicago" }, { "text": "Dallas", "link": "\/dallas" }, { "text": "Denver", "link": "\/denver" }, { "text": "Detroit", "link": "\/detroit" }, { "text": "Honolulu", "link": "\/honolulu" }, { "text": "Houston", "link": "\/houston" }, { "text": "Las Vegas", "link": "\/lasvegas" }, { "text": "Los Angeles", "link": "\/la" }, { "text": "Miami", "link": "\/miami" }, { "text": "Minneapolis", "link": "\/minneapolis" }, { "text": "New York", "link": "\/nyc" }, { "text": "Philadelphia", "link": "\/philadelphia" }, { "text": "Phoenix", "link": "\/phoenix" }, { "text": "Portland", "link": "\/portland" }, { "text": "Sacramento", "link": "\/sacramento" }, { "text": "San Diego", "link": "\/sandiego" }, { "text": "San Francisco", "link": "\/sf" }, { "text": "San Jose", "link": "\/sanjose" }, { "text": "Seattle", "link": "\/seattle" }, { "text": "Washington, DC", "link": "\/dc" }, { "text": "More Cities", "link": "\/locations" }, { "text": "Atlanta", "link": "\/reviews\/12_Atlanta_GA.html" }, { "text": "Austin", "link": "\/reviews\/12_Austin_TX.html" }, { "text": "Boston", "link": "\/reviews\/12_Boston_MA.html" }, { "text": "Chicago", "link": "\/reviews\/12_Chicago_IL.html" }, { "text": "Dallas", "link": "\/reviews\/12_Dallas_TX.html" }, { "text": "Denver", "link": "\/reviews\/12_Denver_CO.html" }, { "text": "Honolulu", "link": "\/reviews\/12_Honolulu_HI.html" }, { "text": "Houston", "link": "\/reviews\/12_Houston_TX.html" }, { "text": "Las Vegas", "link": "\/reviews\/12_Las_Vegas_NV.html" }, { "text": "Los Angeles", "link": "\/reviews\/12_Los_Angeles_CA.html" }, { "text": "Miami", "link": "\/reviews\/12_Miami_FL.html" }, { "text": "New York", "link": "\/reviews\/12_New_York_NY.html" }, { "text": "Philadelphia", "link": "\/reviews\/12_Philadelphia_PA.html" }, { "text": "Phoenix", "link": "\/reviews\/12_Phoenix_AZ.html" }, { "text": "Portland", "link": "\/reviews\/12_Portland_OR.html" }, { "text": "Sacramento", "link": "\/reviews\/12_Sacramento_CA.html" }, { "text": "San Diego", "link": "\/reviews\/12_San_Diego_CA.html" }, { "text": "San Francisco", "link": "\/reviews\/12_San_Francisco_CA.html" }, { "text": "San Jose", "link": "\/reviews\/12_San_Jose_CA.html" }, { "text": "Seattle", "link": "\/reviews\/12_Seattle_WA.html" }, { "text": "Washington, DC", "link": "\/reviews\/12_Washington_DC.html" }, { "text": "Austin", "link": "\/archived_topics\/Austin_TX.html" }, { "text": "Boston", "link": "\/archived_topics\/Boston_MA.html" }, { "text": "Chicago", "link": "\/archived_topics\/Chicago_IL.html" }, { "text": "Los Angeles", "link": "\/archived_topics\/Los_Angeles_CA.html" }, { "text": "New York", "link": "\/archived_topics\/New_York_NY.html" }, { "text": "San Diego", "link": "\/archived_topics\/San_Diego_CA.html" }, { "text": "San Francisco", "link": "\/archived_topics\/San_Francisco_CA.html" }, { "text": "San Jose", "link": "\/archived_topics\/San_Jose_CA.html" }, { "text": "Seattle", "link": "\/archived_topics\/Seattle_WA.html" }, { "text": "Washington, DC", "link": "\/archived_topics\/Washington_DC.html" }, { "text": "Austin", "link": "\/topsearches\/austin" }, { "text": "Boston", "link": "\/topsearches\/boston" }, { "text": "Chicago", "link": "\/topsearches\/chicago" }, { "text": "Los Angeles", "link": "\/topsearches\/la" }, { "text": "New York", "link": "\/topsearches\/nyc" }, { "text": "San Diego", "link": "\/topsearches\/sandiego" }, { "text": "San Francisco", "link": "\/topsearches\/sf" }, { "text": "San Jose", "link": "\/topsearches\/sanjose" }, { "text": "Seattle", "link": "\/topsearches\/seattle" }, { "text": "Washington, DC", "link": "\/topsearches\/dc" } ] }
@@ -0,0 +1,7 @@
1
+ {
2
+ "title": "h1",
3
+ "links(a)": [{
4
+ "text": ".",
5
+ "link": "@href"
6
+ }]
7
+ }
@@ -0,0 +1,17 @@
1
+ <html>
2
+ <body>
3
+ <ul>
4
+ <li>
5
+ <h4>hi</h4>
6
+ <p>world</p>
7
+ </li>
8
+ <li>
9
+ <h4>hello</h4>
10
+ <p>people</p>
11
+ </li>
12
+ <li>
13
+ <h4>bye empty</h4>
14
+ </li>
15
+ </ul>
16
+ </body>
17
+ </html>
@@ -0,0 +1 @@
1
+ { "list": [ { "title": "hi", "para": "world" }, { "title": "hello", "para": "people" } ] }
@@ -0,0 +1,6 @@
1
+ {
2
+ "list(li)": [{
3
+ "title": "h4",
4
+ "para": "p"
5
+ }]
6
+ }
@@ -0,0 +1,3 @@
1
+ <html>
2
+ <body>&bull;巴士阿叔</body>
3
+ </html>
@@ -0,0 +1 @@
1
+ { "body": "•巴士阿叔" }
@@ -0,0 +1 @@
1
+ { "body": "body" }
@@ -0,0 +1,8 @@
1
+ <html>
2
+ <body>
3
+ <p>
4
+ Hello
5
+ <a href="#">world</a>
6
+ </p>
7
+ </body>
8
+ </html>
@@ -0,0 +1 @@
1
+ { "test": "<p>\n\t\t\tHello\n\t\t\t<a href=\"#\">world<\/a><\/p>" }
@@ -0,0 +1,3 @@
1
+ {
2
+ "test": "lib:outer-xml((body p ))"
3
+ }
@@ -0,0 +1,4 @@
1
+ <html>
2
+ <body>
3
+ </body>
4
+ </html>
@@ -0,0 +1 @@
1
+ Parsing failed: /desc was empty
@@ -0,0 +1,3 @@
1
+ {
2
+ "desc": [ "lib:outer-xml((li , li, #gnewtonJobDescriptionText strong))" ]
3
+ }
@@ -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
+ parselet = 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
+ parselet.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
+
@@ -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&raquo;</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&#39;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 &raquo;</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&#39;s Old &amp; New&#8230;</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 &raquo;</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&#8230;</a></li>
388
+ <li><a rel="nofollow" href="/biz/william-cross-wine-merchants-and-wine-bar-san-francisco">William Cross Wine&#8230;</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 &raquo;</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&#8230;</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 &amp; Body</a></li>
408
+ </ol>
409
+ <p><a href="/c/sf/beautysvc">... see more &raquo;</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 &amp; Services</a> 1238</li>
426
+ <li class="arts"><a href="/c/sf/arts">Arts &amp; 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 &amp; 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 &amp;&#8230;</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;">&nbsp;</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&#39;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&#39;t get&#8230;</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 &raquo;</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&amp;cflt=" id="more_hoods">More Neighborhoods &raquo;</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&#39;s Dream" height="40" width="40" /></a>
511
+
512
+ <a rel="nofollow" href="/events/berkeley-a-midsummer-nights-dream" class="name">A Midsummer Night&#39;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. &nbsp;He would not&#8230;
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&#39;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,&#8230;
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&#8230;
574
+ </p>
575
+ </div>
576
+
577
+ <a href="/browse/reviews/recent">More New Reviews Near You &raquo;</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&#8230; </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&#39;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&#39;s date to see the Miscreants Cabaret&#39;s &quot;The Nightmare Before Valentine&#39;s Day: a massacre you&#39;ll love to hate&quot;. Taking&#8230; <a rel="nofollow" href="/biz/miscreants-cabaret-san-francisco#hrid:TlPRa2WzsZgQ_hZYvyaR0w">Read more &raquo;</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 &amp; 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 &amp;&#8230;</a></h4>
632
+ <p>Frozen pork tamale special $22.99</p>
633
+ <p class="grey">1dz pre-cooked frozen tamales with&#8230;</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&#8230;</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 &amp; Al Pastor. Trust me, I know what&#39;s up! Here are some places I like and some I don&#39;t. You should know&#8230;
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 &nbsp;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&#39;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>&nbsp;</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>&nbsp;</p>
894
+ <p>Use of this site is subject to express <a href="/static?p=tos&amp;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 &copy; 2004-2009 Yelp | <a href="/static?p=privacy&amp;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>