wikipedia-vandalism_detection 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (247) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +6 -0
  4. data/LICENSE.txt +4 -0
  5. data/README.md +265 -0
  6. data/Rakefile +12 -0
  7. data/lib/java/LibSVM.jar +0 -0
  8. data/lib/java/SMOTE.jar +0 -0
  9. data/lib/java/balancedRandomForest.jar +0 -0
  10. data/lib/java/diffutils-1.3.0.jar +0 -0
  11. data/lib/java/libsvm.jar +0 -0
  12. data/lib/java/oneClassClassifier.jar +0 -0
  13. data/lib/java/realAdaBoost.jar +0 -0
  14. data/lib/java/swc-engine-1.1.0-jar-with-dependencies.jar +0 -0
  15. data/lib/java/sweble-wikitext-extractor.jar +0 -0
  16. data/lib/weka/classifiers/functions/lib_svm.rb +15 -0
  17. data/lib/weka/classifiers/meta/one_class_classifier.rb +25 -0
  18. data/lib/weka/classifiers/meta/real_ada_boost.rb +17 -0
  19. data/lib/weka/classifiers/trees/balanced_random_forest.rb +18 -0
  20. data/lib/weka/filters/supervised/instance/smote.rb +22 -0
  21. data/lib/wikipedia.rb +51 -0
  22. data/lib/wikipedia/vandalism_detection.rb +30 -0
  23. data/lib/wikipedia/vandalism_detection/algorithms.rb +18 -0
  24. data/lib/wikipedia/vandalism_detection/algorithms/kullback_leibler_divergence.rb +69 -0
  25. data/lib/wikipedia/vandalism_detection/classifier.rb +186 -0
  26. data/lib/wikipedia/vandalism_detection/configuration.rb +321 -0
  27. data/lib/wikipedia/vandalism_detection/diff.rb +27 -0
  28. data/lib/wikipedia/vandalism_detection/edit.rb +75 -0
  29. data/lib/wikipedia/vandalism_detection/evaluator.rb +606 -0
  30. data/lib/wikipedia/vandalism_detection/exceptions.rb +40 -0
  31. data/lib/wikipedia/vandalism_detection/feature_calculator.rb +89 -0
  32. data/lib/wikipedia/vandalism_detection/features.rb +67 -0
  33. data/lib/wikipedia/vandalism_detection/features/all_wordlists_frequency.rb +23 -0
  34. data/lib/wikipedia/vandalism_detection/features/all_wordlists_impact.rb +22 -0
  35. data/lib/wikipedia/vandalism_detection/features/anonymity.rb +19 -0
  36. data/lib/wikipedia/vandalism_detection/features/anonymity_previous.rb +29 -0
  37. data/lib/wikipedia/vandalism_detection/features/article_size.rb +18 -0
  38. data/lib/wikipedia/vandalism_detection/features/bad_frequency.rb +23 -0
  39. data/lib/wikipedia/vandalism_detection/features/bad_impact.rb +21 -0
  40. data/lib/wikipedia/vandalism_detection/features/base.rb +54 -0
  41. data/lib/wikipedia/vandalism_detection/features/biased_frequency.rb +23 -0
  42. data/lib/wikipedia/vandalism_detection/features/biased_impact.rb +22 -0
  43. data/lib/wikipedia/vandalism_detection/features/blanking.rb +25 -0
  44. data/lib/wikipedia/vandalism_detection/features/character_diversity.rb +25 -0
  45. data/lib/wikipedia/vandalism_detection/features/character_sequence.rb +19 -0
  46. data/lib/wikipedia/vandalism_detection/features/comment_bad_frequency.rb +22 -0
  47. data/lib/wikipedia/vandalism_detection/features/comment_biased_frequency.rb +22 -0
  48. data/lib/wikipedia/vandalism_detection/features/comment_length.rb +17 -0
  49. data/lib/wikipedia/vandalism_detection/features/comment_markup_frequency.rb +27 -0
  50. data/lib/wikipedia/vandalism_detection/features/comment_pronoun_frequency.rb +22 -0
  51. data/lib/wikipedia/vandalism_detection/features/comment_sex_frequency.rb +22 -0
  52. data/lib/wikipedia/vandalism_detection/features/comment_vulgarism_frequency.rb +22 -0
  53. data/lib/wikipedia/vandalism_detection/features/compressibility.rb +27 -0
  54. data/lib/wikipedia/vandalism_detection/features/contains_base.rb +18 -0
  55. data/lib/wikipedia/vandalism_detection/features/copyedit.rb +18 -0
  56. data/lib/wikipedia/vandalism_detection/features/digit_ratio.rb +24 -0
  57. data/lib/wikipedia/vandalism_detection/features/edits_per_user.rb +65 -0
  58. data/lib/wikipedia/vandalism_detection/features/emoticons_frequency.rb +27 -0
  59. data/lib/wikipedia/vandalism_detection/features/emoticons_impact.rb +29 -0
  60. data/lib/wikipedia/vandalism_detection/features/frequency_base.rb +20 -0
  61. data/lib/wikipedia/vandalism_detection/features/impact_base.rb +22 -0
  62. data/lib/wikipedia/vandalism_detection/features/inserted_character_distribution.rb +22 -0
  63. data/lib/wikipedia/vandalism_detection/features/inserted_external_links.rb +18 -0
  64. data/lib/wikipedia/vandalism_detection/features/inserted_internal_links.rb +18 -0
  65. data/lib/wikipedia/vandalism_detection/features/inserted_size.rb +20 -0
  66. data/lib/wikipedia/vandalism_detection/features/inserted_words.rb +18 -0
  67. data/lib/wikipedia/vandalism_detection/features/longest_word.rb +20 -0
  68. data/lib/wikipedia/vandalism_detection/features/markup_frequency.rb +27 -0
  69. data/lib/wikipedia/vandalism_detection/features/markup_impact.rb +27 -0
  70. data/lib/wikipedia/vandalism_detection/features/non_alphanumeric_ratio.rb +24 -0
  71. data/lib/wikipedia/vandalism_detection/features/personal_life.rb +18 -0
  72. data/lib/wikipedia/vandalism_detection/features/pronoun_frequency.rb +23 -0
  73. data/lib/wikipedia/vandalism_detection/features/pronoun_impact.rb +21 -0
  74. data/lib/wikipedia/vandalism_detection/features/removed_all_wordlists_frequency.rb +23 -0
  75. data/lib/wikipedia/vandalism_detection/features/removed_bad_frequency.rb +23 -0
  76. data/lib/wikipedia/vandalism_detection/features/removed_biased_frequency.rb +23 -0
  77. data/lib/wikipedia/vandalism_detection/features/removed_character_distribution.rb +22 -0
  78. data/lib/wikipedia/vandalism_detection/features/removed_emoticons_frequency.rb +27 -0
  79. data/lib/wikipedia/vandalism_detection/features/removed_markup_frequency.rb +28 -0
  80. data/lib/wikipedia/vandalism_detection/features/removed_pronoun_frequency.rb +23 -0
  81. data/lib/wikipedia/vandalism_detection/features/removed_sex_frequency.rb +23 -0
  82. data/lib/wikipedia/vandalism_detection/features/removed_size.rb +20 -0
  83. data/lib/wikipedia/vandalism_detection/features/removed_vulgarism_frequency.rb +23 -0
  84. data/lib/wikipedia/vandalism_detection/features/removed_words.rb +18 -0
  85. data/lib/wikipedia/vandalism_detection/features/replacement_similarity.rb +22 -0
  86. data/lib/wikipedia/vandalism_detection/features/reverted.rb +18 -0
  87. data/lib/wikipedia/vandalism_detection/features/revisions_character_distribution.rb +21 -0
  88. data/lib/wikipedia/vandalism_detection/features/same_editor.rb +29 -0
  89. data/lib/wikipedia/vandalism_detection/features/sex_frequency.rb +23 -0
  90. data/lib/wikipedia/vandalism_detection/features/sex_impact.rb +21 -0
  91. data/lib/wikipedia/vandalism_detection/features/size_increment.rb +22 -0
  92. data/lib/wikipedia/vandalism_detection/features/size_ratio.rb +26 -0
  93. data/lib/wikipedia/vandalism_detection/features/term_frequency.rb +25 -0
  94. data/lib/wikipedia/vandalism_detection/features/time_interval.rb +31 -0
  95. data/lib/wikipedia/vandalism_detection/features/time_of_day.rb +22 -0
  96. data/lib/wikipedia/vandalism_detection/features/upper_case_ratio.rb +24 -0
  97. data/lib/wikipedia/vandalism_detection/features/upper_case_words_ratio.rb +31 -0
  98. data/lib/wikipedia/vandalism_detection/features/upper_to_lower_case_ratio.rb +24 -0
  99. data/lib/wikipedia/vandalism_detection/features/user_reputation.rb +38 -0
  100. data/lib/wikipedia/vandalism_detection/features/vulgarism_frequency.rb +23 -0
  101. data/lib/wikipedia/vandalism_detection/features/vulgarism_impact.rb +22 -0
  102. data/lib/wikipedia/vandalism_detection/features/weekday.rb +21 -0
  103. data/lib/wikipedia/vandalism_detection/features/words_increment.rb +22 -0
  104. data/lib/wikipedia/vandalism_detection/instances.rb +130 -0
  105. data/lib/wikipedia/vandalism_detection/page.rb +88 -0
  106. data/lib/wikipedia/vandalism_detection/page_parser.rb +52 -0
  107. data/lib/wikipedia/vandalism_detection/revision.rb +69 -0
  108. data/lib/wikipedia/vandalism_detection/revision_parser.rb +43 -0
  109. data/lib/wikipedia/vandalism_detection/test_dataset.rb +367 -0
  110. data/lib/wikipedia/vandalism_detection/text.rb +18 -0
  111. data/lib/wikipedia/vandalism_detection/training_dataset.rb +303 -0
  112. data/lib/wikipedia/vandalism_detection/version.rb +5 -0
  113. data/lib/wikipedia/vandalism_detection/wikitext_extractor.rb +80 -0
  114. data/lib/wikipedia/vandalism_detection/word_lists.rb +19 -0
  115. data/lib/wikipedia/vandalism_detection/word_lists/bad.rb +12 -0
  116. data/lib/wikipedia/vandalism_detection/word_lists/biased.rb +21 -0
  117. data/lib/wikipedia/vandalism_detection/word_lists/emoticons.rb +22 -0
  118. data/lib/wikipedia/vandalism_detection/word_lists/markup.rb +12 -0
  119. data/lib/wikipedia/vandalism_detection/word_lists/pronouns.rb +15 -0
  120. data/lib/wikipedia/vandalism_detection/word_lists/sex.rb +12 -0
  121. data/lib/wikipedia/vandalism_detection/word_lists/vulgarism.rb +97 -0
  122. data/spec/factories/edit.rb +20 -0
  123. data/spec/factories/page.rb +13 -0
  124. data/spec/factories/revision.rb +51 -0
  125. data/spec/resources/config/config.yml +35 -0
  126. data/spec/resources/corpora/test/edits.csv +8 -0
  127. data/spec/resources/corpora/test/ground-truth.txt +3 -0
  128. data/spec/resources/corpora/test/revisions/part-1/326471754.txt +199 -0
  129. data/spec/resources/corpora/test/revisions/part-1/326873205.txt +137 -0
  130. data/spec/resources/corpora/test/revisions/part-1/328774035.txt +162 -0
  131. data/spec/resources/corpora/test/revisions/part-2/307084144.txt +137 -0
  132. data/spec/resources/corpora/test/revisions/part-2/326978767.txt +199 -0
  133. data/spec/resources/corpora/test/revisions/part-2/328774110.txt +162 -0
  134. data/spec/resources/corpora/training/annotations.csv +7 -0
  135. data/spec/resources/corpora/training/edits.csv +7 -0
  136. data/spec/resources/corpora/training/revisions/part-1/326471754.txt +199 -0
  137. data/spec/resources/corpora/training/revisions/part-1/326873205.txt +137 -0
  138. data/spec/resources/corpora/training/revisions/part-1/328774035.txt +162 -0
  139. data/spec/resources/corpora/training/revisions/part-2/307084144.txt +137 -0
  140. data/spec/resources/corpora/training/revisions/part-2/326978767.txt +199 -0
  141. data/spec/resources/corpora/training/revisions/part-2/328774110.txt +162 -0
  142. data/spec/resources/page_with_redirects.xml +85 -0
  143. data/spec/resources/redirect_page.xml +59 -0
  144. data/spec/resources/revision_simplified.xml +13 -0
  145. data/spec/resources/sample_revision.txt +137 -0
  146. data/spec/resources/sample_revision_clean_text.txt +1 -0
  147. data/spec/resources/sample_revision_plain_text.txt +183 -0
  148. data/spec/resources/vandalism_on_wikipedia.xml +234 -0
  149. data/spec/resources/vandalism_on_wikipedia_simplified.xml +119 -0
  150. data/spec/resources/wikipedia_tokens.txt +30 -0
  151. data/spec/spec_helper.rb +22 -0
  152. data/spec/support/macros/file_reading.rb +7 -0
  153. data/spec/support/macros/test_configuration.rb +71 -0
  154. data/spec/vandalism_detection/algorithms/kullback_leibler_divergence_spec.rb +36 -0
  155. data/spec/vandalism_detection/classifier_spec.rb +317 -0
  156. data/spec/vandalism_detection/configuration_spec.rb +517 -0
  157. data/spec/vandalism_detection/diff_spec.rb +40 -0
  158. data/spec/vandalism_detection/edit_spec.rb +137 -0
  159. data/spec/vandalism_detection/evaluator_spec.rb +671 -0
  160. data/spec/vandalism_detection/feature_calculator_spec.rb +128 -0
  161. data/spec/vandalism_detection/features/all_wordlists_frequency_spec.rb +36 -0
  162. data/spec/vandalism_detection/features/all_wordlists_impact_spec.rb +58 -0
  163. data/spec/vandalism_detection/features/anonymity_previous_spec.rb +61 -0
  164. data/spec/vandalism_detection/features/anonymity_spec.rb +23 -0
  165. data/spec/vandalism_detection/features/article_size_spec.rb +35 -0
  166. data/spec/vandalism_detection/features/bad_frequency_spec.rb +36 -0
  167. data/spec/vandalism_detection/features/bad_impact_spec.rb +59 -0
  168. data/spec/vandalism_detection/features/base_spec.rb +49 -0
  169. data/spec/vandalism_detection/features/biased_frequency_spec.rb +36 -0
  170. data/spec/vandalism_detection/features/biased_impact_spec.rb +58 -0
  171. data/spec/vandalism_detection/features/blanking_spec.rb +38 -0
  172. data/spec/vandalism_detection/features/character_diversity_spec.rb +35 -0
  173. data/spec/vandalism_detection/features/character_sequence_spec.rb +37 -0
  174. data/spec/vandalism_detection/features/comment_bad_frequency_spec.rb +34 -0
  175. data/spec/vandalism_detection/features/comment_biased_frequency_spec.rb +34 -0
  176. data/spec/vandalism_detection/features/comment_length_spec.rb +27 -0
  177. data/spec/vandalism_detection/features/comment_markup_frequency_spec.rb +34 -0
  178. data/spec/vandalism_detection/features/comment_pronoun_frequency_spec.rb +34 -0
  179. data/spec/vandalism_detection/features/comment_sex_frequency_spec.rb +34 -0
  180. data/spec/vandalism_detection/features/comment_vulgarism_frequency_spec.rb +34 -0
  181. data/spec/vandalism_detection/features/compressibility_spec.rb +42 -0
  182. data/spec/vandalism_detection/features/contains_base_spec.rb +33 -0
  183. data/spec/vandalism_detection/features/copyedit_spec.rb +33 -0
  184. data/spec/vandalism_detection/features/digit_ratio_spec.rb +35 -0
  185. data/spec/vandalism_detection/features/edits_per_user_spec.rb +49 -0
  186. data/spec/vandalism_detection/features/emoticons_frequency_spec.rb +36 -0
  187. data/spec/vandalism_detection/features/emoticons_impact_spec.rb +51 -0
  188. data/spec/vandalism_detection/features/frequency_base_spec.rb +26 -0
  189. data/spec/vandalism_detection/features/impact_base_spec.rb +41 -0
  190. data/spec/vandalism_detection/features/inserted_character_distribution_spec.rb +46 -0
  191. data/spec/vandalism_detection/features/inserted_external_links_spec.rb +35 -0
  192. data/spec/vandalism_detection/features/inserted_internal_links_spec.rb +35 -0
  193. data/spec/vandalism_detection/features/inserted_size_spec.rb +35 -0
  194. data/spec/vandalism_detection/features/inserted_words_spec.rb +35 -0
  195. data/spec/vandalism_detection/features/longest_word_spec.rb +35 -0
  196. data/spec/vandalism_detection/features/markup_frequency_spec.rb +36 -0
  197. data/spec/vandalism_detection/features/markup_impact_spec.rb +59 -0
  198. data/spec/vandalism_detection/features/non_alphanumeric_ratio_spec.rb +35 -0
  199. data/spec/vandalism_detection/features/personal_life_spec.rb +26 -0
  200. data/spec/vandalism_detection/features/pronoun_frequency_spec.rb +36 -0
  201. data/spec/vandalism_detection/features/pronoun_impact_spec.rb +59 -0
  202. data/spec/vandalism_detection/features/removed_all_wordlists_frequency_spec.rb +36 -0
  203. data/spec/vandalism_detection/features/removed_bad_frequency_spec.rb +36 -0
  204. data/spec/vandalism_detection/features/removed_biased_frequency_spec.rb +36 -0
  205. data/spec/vandalism_detection/features/removed_character_distribution_spec.rb +46 -0
  206. data/spec/vandalism_detection/features/removed_emoticons_frequency_spec.rb +36 -0
  207. data/spec/vandalism_detection/features/removed_markup_frequency_spec.rb +36 -0
  208. data/spec/vandalism_detection/features/removed_pronoun_frequency_spec.rb +36 -0
  209. data/spec/vandalism_detection/features/removed_sex_frequency_spec.rb +36 -0
  210. data/spec/vandalism_detection/features/removed_size_spec.rb +35 -0
  211. data/spec/vandalism_detection/features/removed_vulgarism_frequency_spec.rb +36 -0
  212. data/spec/vandalism_detection/features/removed_words_spec.rb +35 -0
  213. data/spec/vandalism_detection/features/replacement_similarity_spec.rb +44 -0
  214. data/spec/vandalism_detection/features/reverted_spec.rb +28 -0
  215. data/spec/vandalism_detection/features/revisions_character_distribution_spec.rb +46 -0
  216. data/spec/vandalism_detection/features/same_editor_spec.rb +60 -0
  217. data/spec/vandalism_detection/features/sex_frequency_spec.rb +36 -0
  218. data/spec/vandalism_detection/features/sex_impact_spec.rb +59 -0
  219. data/spec/vandalism_detection/features/size_increment_spec.rb +35 -0
  220. data/spec/vandalism_detection/features/size_ratio_spec.rb +57 -0
  221. data/spec/vandalism_detection/features/term_frequency_spec.rb +38 -0
  222. data/spec/vandalism_detection/features/time_interval_spec.rb +50 -0
  223. data/spec/vandalism_detection/features/time_of_day_spec.rb +22 -0
  224. data/spec/vandalism_detection/features/upper_case_ratio_spec.rb +35 -0
  225. data/spec/vandalism_detection/features/upper_case_words_ratio_spec.rb +37 -0
  226. data/spec/vandalism_detection/features/upper_to_lower_case_ratio_spec.rb +35 -0
  227. data/spec/vandalism_detection/features/user_reputation_spec.rb +52 -0
  228. data/spec/vandalism_detection/features/vulgarism_frequency_spec.rb +36 -0
  229. data/spec/vandalism_detection/features/vulgarism_impact_spec.rb +58 -0
  230. data/spec/vandalism_detection/features/weekday_spec.rb +22 -0
  231. data/spec/vandalism_detection/features/words_increment_spec.rb +35 -0
  232. data/spec/vandalism_detection/instances_spec.rb +156 -0
  233. data/spec/vandalism_detection/page_parser_spec.rb +184 -0
  234. data/spec/vandalism_detection/page_spec.rb +135 -0
  235. data/spec/vandalism_detection/revision_parser_spec.rb +53 -0
  236. data/spec/vandalism_detection/revision_spec.rb +115 -0
  237. data/spec/vandalism_detection/test_dataset_spec.rb +231 -0
  238. data/spec/vandalism_detection/text_spec.rb +29 -0
  239. data/spec/vandalism_detection/training_dataset_spec.rb +264 -0
  240. data/spec/vandalism_detection/wikitext_extractor_spec.rb +72 -0
  241. data/spec/weka/classifiers/functions/lib_svm_spec.rb +38 -0
  242. data/spec/weka/classifiers/meta/one_class_classifier_spec.rb +76 -0
  243. data/spec/weka/classifiers/meta/real_ada_boost_spec.rb +40 -0
  244. data/spec/weka/classifiers/trees/balanced_random_forest_spec.rb +40 -0
  245. data/spec/weka/filters/supervised/instance/smote_spec.rb +6 -0
  246. data/wikipedia-vandalism_detection.gemspec +30 -0
  247. metadata +512 -0
@@ -0,0 +1,162 @@
1
+ {{Article issues|refimprove=August2008|original research=September 2008}}
2
+ {{wrapper}}
3
+ |[[Image:New York lion dance lion.jpg|thumb|250px|A [[lion dance|Chinese lion]] helps usher in the 2006 [[Chinese New Year]]]]
4
+ |-
5
+ |[[Image:Chinatown cooks.jpg|thumb|right|250px|Cooks at a Mott Street restaurant taking a break outside a side entrance on Mosco Street]]
6
+ |-
7
+ |[[Image:FalunGongChinatownNYC.JPG|thumb|right|250px|Meditation in a Chinatown plaza]]
8
+ |-
9
+ |[[Image:Chinatown 02 - New York City.jpg|thumb|right|250px|Chinatown is home to many groceries]]
10
+ |}
11
+ The '''Chinatown neighborhood of [[Manhattan]]''' — a [[borough (New York City)|borough]] of [[New York City]] — is district with a large population of [[Chinese American|Chinese]] immigrants. Manhattan's Chinatown is one of the largest Chinese communities outside of Asia. After an enormous growth spurt during the 1990s, it has been declining in recent years. Relocation of businesses and residents as a result of Sept. 11, 2001, and Manhattan's rising high rent amidst bad economic times are to blame. A committee task force was introduced by NYC officials in 2009 to address this and other concerns plaguing Chinatown.
12
+
13
+ ==Location==
14
+ The traditional borders of Chinatown are:
15
+ * [[Canal Street (Manhattan)|Canal Street]] in the North (bordering [[Little Italy, Manhattan|Little Italy]])
16
+ * [[Bowery|The Bowery]] in the East (bordering the [[Lower East Side, Manhattan|Lower East Side]])
17
+ * [[Worth Street (Manhattan)|Worth Street]] in the South
18
+ * Baxter Street in the West
19
+ okku is an ass hole
20
+
21
+ ==History==
22
+ {{Citations missing|date=November 2008}}
23
+ ===Ah Ken and early Chinese immigration===
24
+ {{Main|Ah Ken}}
25
+ Although [[Quimbo Appo]] is claimed to have arrived in the area during the 1840s, the first man credited to permanently immigrate to Chinatown was Ah Ken, a Cantonese businessman, who eventually founded a successful [[cigar store]] on [[Park Row]].<ref name="Moss">Moss, Frank. ''The American Metropolis from Knickerbocker Days to the Present Time''. London: The Authors' Syndicate, 1897. (pg. 403)</ref><ref>[[Herbert Asbury|Asbury, Herbert]]. ''The Gangs of New York: An Informal History of the New York Underworld''. New York: Alfred A. Knopf, 1928. (pg. 278-279) ISBN 1-56025-275-8</ref><ref name="Harlow">Harlow, Alvin F. ''Old Bowery Days: The Chronicles of a Famous Street''. New York and London: D. Appleton & Company, 1931. (pg. 392)</ref><ref>Worden, Helen. ''The Real New York: A Guide for the Adventurous Shopper, the Exploratory Eater and the Know-it-all Sightseer who Ain't Seen Nothin' Yet''. Indianapolis: Bobbs-Merrill, 1932. (pg. 140)</ref><ref name="Hemp">Hemp, William H. ''New York Enclaves''. New
26
+ York: Clarkson M. Potter, 1975. (pg. 6) ISBN 0-517-51999-2</ref><ref>Wong, Bernard. ''Patronage, Brokerage, Entrepreneurship, and the Chinese Community of New York''. New York: AMS Press, 1988. (pg. 31) ISBN 0-404-19416-8</ref><ref>Lin, Jan. ''Reconstructing Chinatown: Ethnic Enclave, Global Change''. Minneapolis: University of Minnesota Press, 1998. (pg. 30-31) ISBN 0-8166-2905-6</ref><ref>Taylor, B. Kim. ''The Great New York City Trivia & Fact Book''. Nashville: Cumberland House Publishing, 1998. (pg. 20) ISBN 1-888952-77-6</ref><ref>Ostrow, Daniel. ''Manhattan's Chinatown''. Charleston, South Carolina: Arcadia Publishing, 2008. (pg. 9) ISBN 0-7385-5517-7</ref> He first arrived in New York around 1858 where he was ''"probably one of those Chinese mentioned in gossip of the sixties as peddling 'awful' cigars at three cents apiece from little stands along the City Hall park fence - offering a paper spill and a tiny oil lamp as a lighter"'' according to author Alvin Harlow in ''Old Bowery Days: The
27
+ Chronicles of a Famous Street'' (1931).<ref name="Harlow"/>
28
+ Later immigrants would similarly find work as "cigar men" or carrying billboards and Ah Ken's particular success encouraged cigar makers William Longford, John Occoo and John Ava to also ply their trade in Chinatown eventually forming a monopoly on the cigar trade.<ref>Tchen, John Kuo Wei. ''New York Before Chinatown: Orientalism and the Shaping of American Culture, 1776-1882''. Baltimore: John Hopkins University Press, 2001. (pg. 82-83) ISBN 0-8018-6794-0</ref> It has been speculated that he may have been Ah Kam who kept a small [[boarding house]] on lower Mott Street and rented out bunks to the first Chinese immigrants to arrive in Chinatown. It was with the profits he earned as a landlord, earning an average of $100 a month, that he was able to open his Park Row smoke shop around which modern-day Chinatown would grow.<ref name="Moss"/><ref name="Hemp"/><ref name="FWP">Federal Writers' Project. ''New York City: Vol 1, New York City Guide''. Vol. I. American Guide Series. New York: Random House,
29
+ 1939. (pg. 104)</ref><ref>Marcuse, Maxwell F. ''This Was New York!: A Nostalgic Picture of Gotham in the Gaslight Era''. New York: LIM Press, 1969. (pg. 41)</ref><ref>Chen, Jack. ''The Chinese of America''. New York: Harper & Row, 1980. (pg. 258) ISBN 0-06-250140-2</ref><ref>Hall, Bruce Edward. ''Tea That Burns: A Family Memoir of Chinatown''. New York: Simon and Schuster, 2002. (pg. 37) ISBN 0-7432-3659-9</ref>
30
+ ===Chinese exclusion period===
31
+ Faced with increasing discrimination and new laws which prevented participation in many occupations on the West Coast, some Chinese immigrants moved to the East Coast cities in search of employment. Early businesses in these cities included hand laundries and restaurants. Chinatown started on [[Mott Street]], Park, Pell and [[Bloody Angle|Doyers]] streets, east of the notorious [[Five Points, Manhattan|Five Points]] district. By 1870, there was a Chinese population of 200. By the time the [[Chinese Exclusion Act (United States)|Chinese Exclusion Act]] of 1882 was passed, the population was up to 2,000 residents. By 1900, there were 7,000 Chinese residents, but fewer than 200 Chinese women.
32
+ The early days of Chinatown were dominated by Chinese "[[tong (gang)|tongs]]" (now sometimes rendered neutrally as "associations"), which were a mixture of clan associations, landsman's associations, political alliances ([[Kuomintang]] (Nationalists) vs [[Communist Party of China]]) and (more secretly) crime syndicates. The associations started to give protection from harassment due to anti-Chinese sentiment. Each of these associations was aligned with a street gang. The associations were a source of assistance to new immigrants - giving out loans, aiding in starting business, and so forth.
33
+ The associations formed a governing body named the [[Chinese Consolidated Benevolent Association]](中華公所). Though this body was meant to foster relations between the Tongs, open warfare periodically flared between the ''[[On Leong]]'' (安良) and ''[[Hip Sing]]'' (協勝) tongs. Much of the Chinese gang warfare took place on Doyers street. [[Gang]]s like the ''[[Ghost Shadows]]'' (鬼影) and ''[[Flying Dragons (gang)|Flying Dragons]]'' (飛龍) were prevalent until the 1980s.
34
+ The only park in Chinatown, Columbus Park, was built on what was once the center of the infamous [[Five Points (Manhattan)|Five Points]] neighborhood of New York. During the 19th century, this was the most dangerous slum area of immigrant New York (as portrayed in the movie ''[[Gangs of New York]]'').
35
+
36
+ ===Post-immigration reform===
37
+ {{Refimprove|section|date=October 2009}}
38
+ In the years after the United States enacted the [[Immigration and Nationality Act of 1965]], allowing many more immigrants from Asia into the country, the population of Chinatown exploded. Geographically, much of the growth was to neighborhoods to the north.
39
+ In the 1990s, Chinese people began to move into some parts of the western [[Lower East Side, Manhattan|Lower East Side]], which 50 years earlier was populated by Eastern European [[Jew]]s and 20 years earlier was occupied by Hispanics. There are today only a few remnants of Jewish heritage left on the Lower East Side, such as the famous [[Katz's Deli]] and a number of synagogues and other old religious establishments.{{Citation needed|date=October 2009}}
40
+ Chinatown was adversely affected by the [[September 11, 2001 attacks]]. Being so physically close to [[Ground Zero]], tourism and business has been very slow to return to the area. Part of the reason was the [[New York City Police Department]] closure of [[Park Row (Manhattan)|Park Row]] - one of two major roads linking the Financial Center with Chinatown. A lawsuit is pending before the State Superior Court regarding this action.{{Citation needed|date=October 2009}}
41
+ Currently, the raising prices of Manhattan real estate and rents are also affecting Chinatown and it seems that the neighborhood is shrinking to its original borders. New and poorer immigrants cannot afford their rents and a process of relocation to [[Brooklyn]] and [[Queens]] has started, and apartments particularly in the Lower East Side and Little Italy that used to be home for new Chinese immigrants are being bought and renovated by well-to-do Americans{{Who|date=March 2009}}, including Chinese-Americans. Many of the displaced have also left for the greener pastures of larger Chinatowns like [[San Francisco]]'s, which is currently experiencing revitalized growth and prosperity after nearly two decades of decline.{{Citation needed|date=August 2008}}
42
+
43
+ By 2009 many newer Chinese immigrants settled along East Broadway instead of the historic core west of the [[Bowery]]. In addition [[Mandarin (linguistics)|Mandarin]] began to eclipse [[Cantonese (linguistics)|Cantonese]] as the predominate Chinese dialect in New York's Chinatown during the period. Kirk Semple of ''[[The New York Times]]'' said in a 2009 article that [[Flushing, Queens]] began to rival Manhattan's Chinatown in terms of being a cultural center for Chinese-speaking New Yorkers' politics and trade.<ref name="Chinesechange">Semple, Kirk. "[http://www.nytimes.com/2009/10/22/nyregion/22chinese.html In Chinatown, Sound of the Future Is Mandarin]." ''[[The New York Times]]''. October 21, 2009. Retrieved on October 27, 2009.</ref>
44
+
45
+ ==Economy==
46
+ {{Citations missing|date=November 2008}}
47
+ [[Image:Chinatown 01 - New York City.jpg|thumb|right|250px|A shop selling traditional herbal medicines]]
48
+ Chinese green-grocers and fishmongers are clustered around Mott Street, Mulberry Street, [[Canal Street (Manhattan)|Canal Street]] (by Baxter Street) and all along [[East Broadway (Manhattan)|East Broadway]] (especially by Catherine Street). The Chinese [[jewelry]] shop district is on Canal Street between Mott and Bowery. Due to the high savings rate among Chinese, there are many Asian and American banks in the neighborhood. Canal Street, west of Broadway (especially on the North side), is filled with Chinese street vendors selling imitation perfumes, watches, and hand-bags, which are largely purchased by tourists and non-Chinese. This section of Canal Street was previously the home of warehouse stores selling surplus/salvage electronics and hardware.
49
+ Besides the more than 200 Chinese restaurants in the area for employment, there are still some factories. The proximity of the fashion industry has kept some garment work in the local area though most of the garment industry has moved to China. {{Citation needed|date=April 2008}} The local garment industry now concentrates on quick production in small volumes and piece-work (paid by the piece) which is generally done at the worker's home. Much of the population growth is due to immigration. As previous generations of immigrants gain language and education skills, they tend to move to better housing and job prospects that are available in the suburbs and outer boroughs of New York.
50
+ {{See also|Chinatown bus lines}}
51
+ ==Demographics==
52
+ [[Image:Nycctown.jpg|thumb|Another view of Chinatown]]
53
+ [[File:chinatown manhattan 2009.JPG|thumb|Bayard and Mott]]
54
+ Unlike most other urban Chinatowns, Manhattan's Chinatown is both a residential area as well as commercial area. Most population estimates{{Or|date=September 2009}} are in the range of 90,000 to 100,000 residents.{{Citation needed|date=September 2009}} It is difficult to get an exact count, as neighborhood participation in the [[U.S. Census]] is thought to be low due to language barriers, as well as large-scale illegal immigration.
55
+ Until the 1960s, the majority of the Chinese population in Chinatown emigrated from [[Guangdong]] province and [[Hong Kong]], thus they were native speakers of [[Yue Chinese|Cantonese]], especially the [[Standard Cantonese|Canton]] and [[Taishan dialect]]s. A minority of [[Hakka people|Hakka]] was also represented. [[Mandarin Chinese|Mandarin]] was rarely spoken by residents even well into the 1980s. Most recent immigrants are from [[Mainland China]], and hence speak Mandarin, the official spoken language of [[People's Republic of China|China]]. Immigration reform in 1965 opened the door to a huge influx of Cantonese speakers from Hong Kong, and Cantonese became the dominant tongue. But since the 1990s, the vast majority of new Chinese immigrants have come from mainland China, especially Fujian Province, and tend to speak Mandarin along with their regional dialects. A significant portion are from [[Fuzhou]], [[Fujian]] province, so they are native speakers of the [[Fuzhou dialect]] of [[Min Chinese|Min]]. Most Fuzhou immigrants are illegal immigrants while most of the Cantonese immigrants are legal immigrants in Manhattan's Chinatown.<ref>{{cite web|last=Rousmaniere |first=Peter |url=http://www.workingimmigrants.com/2006/03/smuggling_of_chinese_workers_i_1.html |title=Smuggling of Chinese workers into the United States |publisher=workingimmigrants.com |date=2006-03-17 |accessdate=2009-11-15}}</ref> With the coming of illegal Fuzhou immigrants during the 1990s, there is now a Fuzhou Community in the eastern portion of Manhattan's Chinatown which started on the East Broadway portion and later emerged north onto the Eldridge Street portion of Manhattan's Chinatown. Although the Fuzhou community and its population, which is now hardly growing have emerged within Manhattan's Chinatown, the Cantonese population still remains large and continues to retain the large Cantonese community identity where the Cantonese residents still have a place of gathering that was established decades ago in the western portion/main section of Manhattan's Chinatown.<ref>{{cite web|url=http://nychinatown.org/ebway.html |title=A journey through China town |publisher=Nychinatown.org |date= |accessdate=2009-11-15}}</ref>
56
+
57
+ Now the Fuzhou influx has shifted into Brooklyn's Chinatown in the [[Sunset Park, Brooklyn|Sunset Park]] section of Brooklyn. Since Brooklyn's Chinatown is smaller than Manhattan's Chinatown, and given its rapidly increasing Fuzhou population, Brooklyn's Chinatown is quickly becoming the new ''Little Fuzhou'' in NYC and is on the way of surpassing the ''Little Fuzhou'' already established within Manhattan's Chinatown as the largest Fuzhou population/community in NYC. Even though Brooklyn's Chinatown has fewer Cantonese people than Manhattan's Chinatown, there are still many Cantonese shops between 50th-62nd streets on 8th Avenue. Traditionally, Fuzhou immigrant community/population would always be mixed with a large Cantonese population and other Chinese populations in Chinese communities, however, as Brooklyn's Chinatown is becoming the New Little Fuzhou and with the continuing rapid decline in the Cantonese population in Brooklyn's Chinatown, it is on its way to become the first Fuzhou population/community to not be traditionally surrounded/neighbored and/or mixed with large Cantonese populations and/or other Chinese populations like currently in Manhattan's Chinatown and Flushing's Chinatown.<ref name="worldjournal.com">[http://www.worldjournal.com/english/wj-eng_news.php?nt_seq_id=1341407&sc_seq_id=1930 ]{{dead link|date=November 2009}}</ref>
58
+
59
+ Although Mandarin is spoken as a native language among only ten percent of Chinese speakers in NYC's Chinatown, it is used as a secondary dialect among the greatest number of them and is on its way to replace Cantonese as their [[lingua franca]].<ref name="Garcia">{{cite book | last = García | first = Ofelia | coauthors = Fishman, Joshua A. | title = The Multilingual Apple: Languages in New York City | publisher = Walter de Gruyter | year = 2002 | isbn = 311017281X}}</ref> Although Min Chinese is spoken natively by a third of the Chinese population in the city, it is not used as a lingua franca because speakers of other dialect groups do not learn Min.<ref name="Garcia"/>
60
+
61
+ ==Buildings==
62
+ {{Citations missing|date=November 2008}}
63
+ [[Image:Confucious Tower.jpg|thumb|upright|The ''Confucius Plaza'' 44-story [[subsidized housing|subsidized]] [[housing cooperative]], above typical Chinatown housing stock]]
64
+ ===Housing===
65
+ The housing stock of Chinatown is still mostly composed of cramped [[tenement]] buildings, some of which are over 100 years old. It is still common in such buildings to have bathrooms in the hallways, to be shared among multiple apartments.
66
+ A federally [[subsidized housing]] project, named [[Confucius Plaza]], was completed on the corner of [[Bowery (Manhattan)|Bowery]] and Division streets in 1976. This 44-story residential [[tower block]] gave much needed new housing stock to thousands of residents. The building also housed a new public grade school, [http://schools.nyc.gov/OurSchools/Region9/M124/default.htm?searchType=school P.S. 124] (or Yung Wing Elementary). Since new housing is normally non-existent in Chinatown, many apartments in the building were acquired by wealthy individuals through under-the-table dealings, even though the building was built as [[affordable housing]].
67
+ ===Landmarks===
68
+ For much of Chinatown's history, there were few unique architectural features to announce to visitors that they had arrived in the neighborhood (other than the language of the shop signs). In 1962, at [[Chatham Square, Manhattan|Chatham Square]] the Lt. Benjamin Ralph Kimlau Memorial archway was erected in memorial of the Chinese-Americans who died in [[World War II]]. This memorial, which bears calligraphy by the great [[Yu Youren]] 于右任 (1879&mdash;1964), is mostly ignored by the residents due to its poor location on a busy car thoroughfare with little pedestrian traffic. A statue of [[Lin Zexu]], also known as Commissioner Lin, a Fuzhou-based Chinese official who opposed the opium trade, is also located at the square; it faces uptown along East Broadway, now home to the bustling Fuzhou neighborhood and known locally as Fuzhou Street (Fúzhóu jiē 福州街). In the 1970s, [[New York Telephone]], then the local phone company started capping the street phone
69
+ booths with [[pagoda]]-like decorations. In 1976, the statue of [[Confucius]] in front of ''Confucius Plaza'' became a common meeting place. In the 1980s, banks which opened new branches and others which were renovating started to use Chinese traditional styles for their building facades. The [[Church of the Transfiguration (Mott Street, New York, New York)|Church of the Transfiguration]], a national historic site built in 1815, stands off Mott Street.
70
+
71
+ ==Street names in Chinese==
72
+ [[Image:BaxterStreet.jpg|thumb|right|250px|Baxter Street - 巴士特街]]
73
+ {|
74
+ |- valign="top"
75
+ |
76
+ * [[Allen Street (Manhattan)|Allen Street]] - 亞倫街
77
+ * [[Baxter Street (Manhattan)|Baxter Street]] - 巴士特街
78
+ * [[Bayard Street (Manhattan)|Bayard Street]] - 擺也街
79
+ * [[The Bowery|Bowery]] - 包厘
80
+ * [[Broadway (New York City)|Broadway]] - 百老匯
81
+ * [[Broome Street]] - 布隆街
82
+ * [[Canal Street (Manhattan)|Canal Street]] - 堅尼街
83
+ * [[Catherine Street (Manhattan)|Catherine Street]] - 加薩林街
84
+ * [[Centre Street (Manhattan)|Centre Street]] - 中央街
85
+ * [[Chambers Street (Manhattan)|Chambers Street]] - 錢伯斯街
86
+ * [[Chatham Square, Manhattan|Chatham Square]] - 且林士果
87
+ * [[Chrystie Street]] - 企李士提街
88
+ * [[Delancey Street, Manhattan|Delancey Street]] - 地蘭西街
89
+ * [[Division Street, Manhattan|Division Street]] - 地葳臣街
90
+ * [[Doyers Street]] - 宰也街
91
+ * [[East Broadway (Manhattan)|East Broadway]] (Little Fuzhou) - 東百老匯 (小福州)
92
+ |
93
+ * [[Eldridge Street]] - 愛烈治街
94
+ * [[Elizabeth Street, Manhattan|Elizabeth Street]] - 伊利沙白街
95
+ * [[Forsyth Street (Manhattan)|Forsyth Street]] - 科西街
96
+ * [[Grand Street (Manhattan)|Grand Street]] - 格蘭街
97
+ * [[Henry Street (Manhattan)|Henry Street]] - 軒利街
98
+ * [[Hester Street (Manhattan)|Hester Street]] - 喜士打街
99
+ * [[Madison Street (Manhattan)|Madison Street]] - 麥地遜街
100
+ * [[Market Street (Manhattan)|Market Street]] - 市場街
101
+ * [[Mosco Street]] - 莫斯科街
102
+ * [[Mott Street (Manhattan)|Mott Street]] - 勿街
103
+ * [[Mulberry Street (Manhattan)|Mulberry Street]] - 茂比利街
104
+ * [[Orchard Street (Manhattan)|Orchard Street]] - 柯察街
105
+ * [[Park Row (Manhattan)|Park Row]] - 柏路
106
+ * [[Pell Street (Manhattan)|Pell Street]] - 披露街
107
+ * [[Pike Street]] - 派克街
108
+ * [[Worth Street (Manhattan)|Worth Street]] - 窩夫街<ref>{{cite web|url=http://ccbanyc.org/historyfile/photo/history.html |title=Historic Pictures of Chinatown |publisher=Ccbanyc.org |date= |accessdate=2009-11-15}}</ref>
109
+ <ref>{{cite web|url=http://www.nychinatown.org/manhattan.html |title=A Journey Through Chinatown |publisher=Nychinatown.org |date= |accessdate=2009-11-15}}</ref>
110
+ |}
111
+ ==Satellite Chinatowns==
112
+ {{Citations missing|date=November 2008}}
113
+ {{Main|Flushing, Queens|Sunset Park, Brooklyn}}
114
+ Other New York City area Chinese communities have been settled over the years, including that of [[Flushing, Queens|Flushing]] in [[Queens]]. Another community is located in [[Sunset Park, Brooklyn|Sunset Park]] in [[Brooklyn]], particularly along 8th Avenue from 40th to 65th Streets. New York's newest Chinatown has recently sprung up on Avenue U in the [[Homecrest, Brooklyn|Homecrest]] section of Brooklyn. Outside of New York City proper, a growing suburban Chinatown is developing in [[Edison, New Jersey]], which lies {{convert|30|mi|km}} to the southwest.
115
+ While the composition of these satellite Chinatowns is as varied as the original, the political turmoils in the Manhattan Chinatown ([[Tong (organization)|Tongs]] vs. [[Republic of China]] loyalists vs. [[People's Republic of China]] loyalists vs. Americanized) has led to some factionalization in the other satellites. The [[Flushing, Queens|Flushing]] Chinatown, for example, was spearheaded by many Chinese fleeing the Communist retaking of [[Hong Kong]] in 1997 as well as Taiwanese who used their considerable capital to buy out land from the former residents. The [[Brooklyn]] Chinatown located in [[Sunset Park, Brooklyn|Sunset Park]] however, is mostly immigrant and populated by both [[Cantonese people|Cantonese]] and [[Fujian|Fukienese]] newcomers to America, however the [[Fujian|Fukienese]] is on its way of turning the Chinese Community into the new, more established, and bigger Fuzhou community than the one in the eastern portion of Manhattan's Chinatown.<ref name="worldjournal.com"/> More culturally
116
+ assimilated Chinese have moved outside these neighborhoods into more white or Hispanic neighborhoods in the city while others move to the suburbs outright.
117
+
118
+ ==See also==
119
+ *[[Shuang Wen School]] - a dual-language elementary school on the Lower East Side.
120
+ *[[Chinatown]]
121
+ *[[Chinatowns in North America]]
122
+ *[[Chinese Hand Laundry Alliance]]
123
+ http://en.wikipedia.org/wiki/Wo_Hop
124
+ ==References==
125
+ {{Reflist}}
126
+ ==Further reading==
127
+ *"New York's First Chinaman". ''Atlanta Constitution''. 22 Sep 1896
128
+ *Crouse, Russel. ''Murder Won't Out''. New York: Doubleday, Doran & Company, 1932.
129
+ *Dunshee, Kenneth Holcomb. ''As You Pass By''. New York: Hastings House, 1952.
130
+ *Ramati, Raquel. ''How to Save Your Own Street''. Garden City, Doubleday and Co., 1981. ISBN 0-385-14814-3
131
+ ==External links==
132
+ *[http://www.chinatownnewyorkcity.blogspot.com Chinatown New York City Blog]
133
+ *[http://www.ccbanyc.org Chinese Consolidated Benevolent Association of New York]
134
+ *[http://www.explorechinatown.com/ Explore Chinatown-official tourism site]
135
+ *[http://www.moca-nyc.org Museum of Chinese in the Americas]
136
+ *[http://www.nychinatown.org/manhattan.html A Photo Journey through Chinatown]
137
+ *[http://www.arch.columbia.edu/Studio/Spring2003/UP/Chinatown/team.htm Chinatown: A Neighborhood Plan]
138
+ {{Chinese American|state=collapsed}}
139
+ {{Chinatowns}}
140
+ {{Manhattan}}
141
+ {{Coord|40|43|06|N|74|00|09|W|region:US-NY_type:city(300000)_source:dewiki|display=title}}
142
+
143
+ [[Category:Neighborhoods in Manhattan]]
144
+ [[Category:United States communities with Asian American majority populations]]
145
+ [[Category:Chinatowns in the United States|Manhattan]]
146
+
147
+ [[ca:Chinatown (Manhattan)]]
148
+ [[da:Chinatown (New York)]]
149
+ [[de:Chinatown (New York City)]]
150
+ [[es:Chinatown (Manhattan)]]
151
+ [[fr:Chinatown (Manhattan)]]
152
+ [[it:Chinatown (Manhattan)]]
153
+ [[he:צ'יינהטאון (מנהטן)]]
154
+ [[nl:Chinatown (New York City)]]
155
+ [[ja:チャイナタウン (マンハッタン)]]
156
+ [[ro:Chinatown, Manhattan]]
157
+ [[ru:Чайнатаун (Манхэттен)]]
158
+ [[sk:Chinatown]]
159
+ [[sv:Chinatown, Manhattan]]
160
+ [[yi:טשיינעטאון]]
161
+ [[zh:華埠 (曼哈頓)]]
162
+
@@ -0,0 +1,85 @@
1
+ <mediawiki>
2
+ <siteinfo>
3
+ <sitename>Wikipedia</sitename>
4
+ <base>http://en.wikipedia.org/wiki/Main_Page</base>
5
+ <generator>MediaWiki 1.23wmf12</generator>
6
+ <case>first-letter</case>
7
+ <namespaces>
8
+ <namespace key="-2" case="first-letter">Media</namespace>
9
+ <namespace key="-1" case="first-letter">Special</namespace>
10
+ <namespace key="0" case="first-letter"/>
11
+ <namespace key="1" case="first-letter">Talk</namespace>
12
+ <namespace key="2" case="first-letter">User</namespace>
13
+ <namespace key="3" case="first-letter">User talk</namespace>
14
+ <namespace key="4" case="first-letter">Wikipedia</namespace>
15
+ <namespace key="5" case="first-letter">Wikipedia talk</namespace>
16
+ <namespace key="6" case="first-letter">File</namespace>
17
+ <namespace key="7" case="first-letter">File talk</namespace>
18
+ <namespace key="8" case="first-letter">MediaWiki</namespace>
19
+ <namespace key="9" case="first-letter">MediaWiki talk</namespace>
20
+ <namespace key="10" case="first-letter">Template</namespace>
21
+ <namespace key="11" case="first-letter">Template talk</namespace>
22
+ <namespace key="12" case="first-letter">Help</namespace>
23
+ <namespace key="13" case="first-letter">Help talk</namespace>
24
+ <namespace key="14" case="first-letter">Category</namespace>
25
+ <namespace key="15" case="first-letter">Category talk</namespace>
26
+ <namespace key="100" case="first-letter">Portal</namespace>
27
+ <namespace key="101" case="first-letter">Portal talk</namespace>
28
+ <namespace key="108" case="first-letter">Book</namespace>
29
+ <namespace key="109" case="first-letter">Book talk</namespace>
30
+ <namespace key="118" case="first-letter">Draft</namespace>
31
+ <namespace key="119" case="first-letter">Draft talk</namespace>
32
+ <namespace key="446" case="first-letter">Education Program</namespace>
33
+ <namespace key="447" case="first-letter">Education Program talk</namespace>
34
+ <namespace key="710" case="first-letter">TimedText</namespace>
35
+ <namespace key="711" case="first-letter">TimedText talk</namespace>
36
+ <namespace key="828" case="first-letter">Module</namespace>
37
+ <namespace key="829" case="first-letter">Module talk</namespace>
38
+ </namespaces>
39
+ </siteinfo>
40
+ <page>
41
+ <title>Vandalism on Wikipedia</title>
42
+ <ns>0</ns>
43
+ <id>100</id>
44
+ <revision>
45
+ <id>1</id>
46
+ <parentid>2</parentid>
47
+ <timestamp>time 1</timestamp>
48
+ <contributor>
49
+ <username>user</username>
50
+ <id>10</id>
51
+ </contributor>
52
+ <text xml:space="preserve" bytes="3177">text 3</text>
53
+ <sha1>hya1xftsfkq6wml6uigb6j480p4x2nt</sha1>
54
+ <model>wikitext</model>
55
+ <format>text/x-wiki</format>
56
+ </revision>
57
+ <revision>
58
+ <id>2</id>
59
+ <parentid>3</parentid>
60
+ <timestamp>time 4</timestamp>
61
+ <contributor>
62
+ <username>user</username>
63
+ <id>11</id>
64
+ </contributor>
65
+ <text xml:space="preserve" bytes="3261">text 4</text>
66
+ <sha1>ebb1e4tgy49mqdwtyk0rafzdcokp4lh</sha1>
67
+ <model>wikitext</model>
68
+ <format>text/x-wiki</format>
69
+ </revision>
70
+ <revision>
71
+ <id>3</id>
72
+ <parentid>4</parentid>
73
+ <timestamp>time 5</timestamp>
74
+ <contributor>
75
+ <ip>100.100.100.100</ip>
76
+ </contributor>
77
+ <comment>comment 3</comment>
78
+ <text xml:space="preserve" bytes="3541">#REDIRECT [[Liberty Stadium, Swansea]]
79
+ </text>
80
+ <sha1>t8s84rnkje13fkdkw0exui4hrs3fx8x</sha1>
81
+ <model>wikitext</model>
82
+ <format>text/x-wiki</format>
83
+ </revision>
84
+ </page>
85
+ </mediawiki>
@@ -0,0 +1,59 @@
1
+ <mediawiki>
2
+ <siteinfo>
3
+ <sitename>Wikipedia</sitename>
4
+ <base>http://en.wikipedia.org/wiki/Main_Page</base>
5
+ <generator>MediaWiki 1.23wmf12</generator>
6
+ <case>first-letter</case>
7
+ <namespaces>
8
+ <namespace key="-2" case="first-letter">Media</namespace>
9
+ <namespace key="-1" case="first-letter">Special</namespace>
10
+ <namespace key="0" case="first-letter"/>
11
+ <namespace key="1" case="first-letter">Talk</namespace>
12
+ <namespace key="2" case="first-letter">User</namespace>
13
+ <namespace key="3" case="first-letter">User talk</namespace>
14
+ <namespace key="4" case="first-letter">Wikipedia</namespace>
15
+ <namespace key="5" case="first-letter">Wikipedia talk</namespace>
16
+ <namespace key="6" case="first-letter">File</namespace>
17
+ <namespace key="7" case="first-letter">File talk</namespace>
18
+ <namespace key="8" case="first-letter">MediaWiki</namespace>
19
+ <namespace key="9" case="first-letter">MediaWiki talk</namespace>
20
+ <namespace key="10" case="first-letter">Template</namespace>
21
+ <namespace key="11" case="first-letter">Template talk</namespace>
22
+ <namespace key="12" case="first-letter">Help</namespace>
23
+ <namespace key="13" case="first-letter">Help talk</namespace>
24
+ <namespace key="14" case="first-letter">Category</namespace>
25
+ <namespace key="15" case="first-letter">Category talk</namespace>
26
+ <namespace key="100" case="first-letter">Portal</namespace>
27
+ <namespace key="101" case="first-letter">Portal talk</namespace>
28
+ <namespace key="108" case="first-letter">Book</namespace>
29
+ <namespace key="109" case="first-letter">Book talk</namespace>
30
+ <namespace key="118" case="first-letter">Draft</namespace>
31
+ <namespace key="119" case="first-letter">Draft talk</namespace>
32
+ <namespace key="446" case="first-letter">Education Program</namespace>
33
+ <namespace key="447" case="first-letter">Education Program talk</namespace>
34
+ <namespace key="710" case="first-letter">TimedText</namespace>
35
+ <namespace key="711" case="first-letter">TimedText talk</namespace>
36
+ <namespace key="828" case="first-letter">Module</namespace>
37
+ <namespace key="829" case="first-letter">Module talk</namespace>
38
+ </namespaces>
39
+ </siteinfo>
40
+ <page>
41
+ <title>Vandalism on Wikipedia</title>
42
+ <ns>0</ns>
43
+ <id>100</id>
44
+ <revision>
45
+ <id>3</id>
46
+ <parentid>4</parentid>
47
+ <timestamp>time 5</timestamp>
48
+ <contributor>
49
+ <ip>100.100.100.100</ip>
50
+ </contributor>
51
+ <comment>comment 3</comment>
52
+ <text xml:space="preserve" bytes="3541">#REDIRECT [[Vandalism]]
53
+ </text>
54
+ <sha1>t8s84rnkje13fkdkw0exui4hrs3fx8x</sha1>
55
+ <model>wikitext</model>
56
+ <format>text/x-wiki</format>
57
+ </revision>
58
+ </page>
59
+ </mediawiki>
@@ -0,0 +1,13 @@
1
+ <revision>
2
+ <id>id1</id>
3
+ <parentid>parentid1</parentid>
4
+ <timestamp>time1</timestamp>
5
+ <contributor>
6
+ <ip>ip1</ip>
7
+ </contributor>
8
+ <comment>comment 1</comment>
9
+ <text xml:space="preserve" bytes="1880">text 1</text>
10
+ <sha1>hash1</sha1>
11
+ <model>wikitext</model>
12
+ <format>text/x-wiki</format>
13
+ </revision>
@@ -0,0 +1,137 @@
1
+ {{Infobox Album | <!-- See Wikipedia:WikiProject_Albums -->
2
+ | Name = The Soundstage Sessions
3
+ | Type = live
4
+ | Longtype = / <font style="background: {{Infobox Album/color|studio}}">[[Studio album]]</font>
5
+ | Artist = [[Stevie Nicks]]
6
+ | Cover = SS1.jpg
7
+ | Released = March 31, 2009
8
+ | Recorded = Oct. 2007–2008<br>Grainger Studio<br><small>([[Chicago, Illinois|Chicago]], [[Illinois]])</small> <br>[[Ocean Way Recording]]<br><small>([[Nashville, Tennessee|Nashville]], [[Tennessee]])</small> <br>[[Chicago Recording Company]]<br><small>([[Chicago, Illinois|Chicago]], [[Illinois]])</small>
9
+ | Genre = [[Rock music|Rock]]
10
+ | Length = 54:25
11
+ | Label = [[Reprise Records]]
12
+ | Producer = [[Joe Thomas (producer/director)|Joe Thomas]] <br> Stevie Nicks <br> [[Waddy Watchel]]
13
+ |Reviews =
14
+ * [[Allmusic]] {{Rating|3|5}} [http://www.allmusic.com/cg/amg.dll?p=amg&sql=10:3xftxzrkldhe link]
15
+ | Last album = ''[[Crystal Visions - The Very Best of Stevie Nicks]]'' <br /> (2007)
16
+ | This album = '''''The Soundstage Sessions''''' <br /> (2009)
17
+ | Next album =
18
+ | Misc = {{Extra album cover 2
19
+ | Upper caption = ''The Soundstage Sessions: Live in Chicago''
20
+ | Type =
21
+ | Cover = The_Soundstage_Sessions_-_Live_in_Chicago.jpg
22
+ | Lower caption = CD/DVD Deluxe Edition
23
+ }}
24
+ }}
25
+
26
+ '''''The Soundstage Sessions''''' is the tenth album released by the American singer-songwriter and [[Fleetwood Mac]] vocalist [[Stevie Nicks]]. Although it is the first live album of Nicks' solo career, it was produced to sound like a studio album.
27
+
28
+
29
+ ==Album Information==
30
+ ''The Soundstage Sessions'' was recorded in October 2007 before an intimate audience at [[WTTW]]'s Grainger Studio in [[Chicago]], with the [[set list]] containing 18 songs. In early 2008, Nicks went to [[Nashville]] and entered the studio with director/producer [[Joe Thomas (producer/director)|Joe Thomas]]. In the studio, they added "Nashville strings" and additional vocals to the songs that were to go on the CD. Nicks wanted the CD to sound perfect, and when asked about the project has said "I am as proud of this as anything I’ve ever done in my entire career." <ref>http://popculturezoo.com/archives/2255</ref>
31
+
32
+ ==Track listing==
33
+ ===Standard Edition===
34
+ # "[[Stand Back (song)|Stand Back]]" <small>(Stevie Nicks)</small>&nbsp;– 4:40
35
+ # "[[Crash Into Me#Stevie Nicks version|Crash Into Me]]" <small>([[Dave Matthews]])</small>&nbsp;– 5:33
36
+ # "Sara" <small>(Nicks)</small>&nbsp;– 6:56
37
+ # "If Anyone Falls in Love" <small>(Nicks, [[Sandy Stewart (musician)|Sandy Stewart]])</small>&nbsp;– 4:11
38
+ # "[[Landslide (song)|Landslide]]" (Orchestra version) <small>(Nicks)</small>&nbsp;– 4:20
39
+ # "How Still My Love" <small>(Nicks)</small>&nbsp;– 7:34
40
+ # "Circle Dance" <small>(Duet with [[Vanessa Carlton]])</small> <small>([[Bonnie Raitt]])</small>&nbsp;– 4:14
41
+ # "Fall From Grace" <small>(Nicks)</small>&nbsp;– 4:35
42
+ # "Sorcerer" <small>(Nicks)</small>&nbsp;– 5:00
43
+ # "[[Beauty and the Beast (Stevie Nicks song)|Beauty and the Beast]]" <small>(Nicks)</small>&nbsp;– 7:14
44
+
45
+ ===Amazon Mp3 Edition===
46
+ #<li value=11>"Enchanted" <small>(Nicks)</small>&nbsp;– 3:14
47
+
48
+ ===[[iTunes]] Edition===
49
+ #<li value=11>"Gold Dust Woman" <small>(Nicks)</small>&nbsp;– 10:07
50
+ #<li value=12>"Edge of Seventeen" <small>(Nicks)</small>&nbsp;– 12:33
51
+
52
+ ==Deluxe Edition==
53
+ Reprise Records released a Deluxe Edition exclusively through the Warner Bros. Records Store, which is called '''''The Soundstage Sessions: Live in Chicago'''''. The Deluxe Edition is a CD/DVD set, and includes new cover art, a [[lithograph]] of Nicks, and free [[mp3]] downloads of "Rhiannon" and "The One". <ref>http://www.jammfactory.net/wbr/stevienicks/pre-order.html</ref>
54
+
55
+ ==Standard and Blu-Ray DVD==
56
+ The [[Blu-Ray]] DVD of this performance has been available exclusively at Sears since December 1st, 2008 and features a total of 16 tracks in high-definition. The standard edition DVD of this performance was released by Reprise Records as ''[[Live in Chicago (Stevie Nicks DVD)|Live In Chicago]]''.
57
+
58
+ ==Personnel==
59
+ '''Main Performers'''
60
+
61
+ *Stevie Nicks - vocals, producer
62
+ *[[Vanessa Carlton]] - guest performer
63
+ *Sharon Celani - backup vocals
64
+ *Lori Nicks - backup vocals
65
+ *Jana Anderson - backup vocals
66
+
67
+ '''Production'''
68
+
69
+ *[[Joe Thomas (producer/director)|Joe Thomas]] - producer
70
+ *Waddy Wachtel - producer
71
+ *Frank Pappalardo - engineering
72
+ *Michael Czaszwicz - assistant engineering
73
+ *Patrick DeWitte - assistant engineering
74
+ *Mixed at HD Ready, St. Charles
75
+
76
+ '''Musicians'''
77
+
78
+ *Waddy Wachtel - musical director/guitar
79
+ *Lenny Castro - percussion
80
+ *Al Ortiz - bass
81
+ *Jimmy Paxson - drums
82
+ *Ricky Peterson - keyboards
83
+ *Carlos Rios - guitar
84
+ *Darrell Smith - keyboards
85
+
86
+ '''String Section'''
87
+
88
+ *Eric Roth - conductor
89
+ *Janice MacDonald - flute
90
+ *Deb Stevenson - oboe
91
+ *Greg Flint - horn
92
+ *Christine Worthing - horn
93
+ *Guillaume Combet - violin
94
+ *Jennifer Cappelli - violin
95
+ *Carmen Llop-Kassinger - violin
96
+ *Christine Keiko Abe - violin
97
+ *Carol Cook - viola
98
+ *Jocelyn Davis-Beck - cello
99
+ *[[Eddie Bayers]] - drums
100
+ *Michael Rhodes - bass
101
+ *[[Joe Thomas (producer/director)|Joe Thomas]] - keyboards
102
+
103
+ ==Charts==
104
+ {|class="wikitable"
105
+ !Chart (2009)
106
+ !Peak<br>position
107
+ |-
108
+ |U.S. [[Billboard 200|''Billboard'' 200]]
109
+ |align="center"|47
110
+ |-
111
+ |U.S. ''Billboard'' Top Current Rock Albums
112
+ |align="center"|15
113
+ |-
114
+ |U.S. ''Billboard'' Top Digital Albums
115
+ |align="center"|55
116
+ |-
117
+ |U.S. ''Billboard'' Top Internet Albums
118
+ |align="center"|5
119
+ |-
120
+ |}
121
+
122
+ ==References==
123
+ {{reflist}}
124
+
125
+ ==External links==
126
+ *http://www.amazon.com/dp/B001AW9DKU
127
+ *http://www.pauseandplay.com/31march2009.htm
128
+ *http://www.sears.com/shc/s/p_10153_12605_05801528000P?mv=rr
129
+ *http://nickslive.blogspot.com/2009/04/live-in-chicago-first-week-sales.html
130
+
131
+
132
+ {{DEFAULTSORT:Soundstage Sessions, The}}
133
+ [[Category:2009 albums]]
134
+ [[Category:Live albums]]
135
+ [[Category:Reprise Records albums]]
136
+ [[Category:Stevie Nicks albums]]
137
+ [[Category:Albums produced by Waddy Wachtel]]