wikipedia-vandalism_detection 0.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/.rspec +2 -0
  4. data/.rubocop.yml +35 -0
  5. data/.travis.yml +6 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +4 -0
  8. data/README.md +288 -0
  9. data/Rakefile +11 -0
  10. data/config/wikipedia-vandalism-detection.yml.example +103 -0
  11. data/lib/java/SMOTE.jar +0 -0
  12. data/lib/java/balancedRandomForest.jar +0 -0
  13. data/lib/java/diffutils-1.3.0.jar +0 -0
  14. data/lib/java/oneClassClassifier.jar +0 -0
  15. data/lib/java/realAdaBoost.jar +0 -0
  16. data/lib/java/swc-engine-1.1.0-jar-with-dependencies.jar +0 -0
  17. data/lib/java/sweble-wikitext-extractor.jar +0 -0
  18. data/lib/weka/classifiers/meta/one_class_classifier.rb +21 -0
  19. data/lib/weka/classifiers/meta/real_ada_boost.rb +15 -0
  20. data/lib/weka/classifiers/trees/balanced_random_forest.rb +16 -0
  21. data/lib/weka/filters/supervised/instance/smote.rb +15 -0
  22. data/lib/wikipedia/vandalism_detection/algorithms/kullback_leibler_divergence.rb +103 -0
  23. data/lib/wikipedia/vandalism_detection/algorithms.rb +12 -0
  24. data/lib/wikipedia/vandalism_detection/classifier.rb +202 -0
  25. data/lib/wikipedia/vandalism_detection/configuration.rb +350 -0
  26. data/lib/wikipedia/vandalism_detection/diff.rb +36 -0
  27. data/lib/wikipedia/vandalism_detection/edit.rb +81 -0
  28. data/lib/wikipedia/vandalism_detection/evaluator.rb +640 -0
  29. data/lib/wikipedia/vandalism_detection/exceptions.rb +47 -0
  30. data/lib/wikipedia/vandalism_detection/feature_calculator.rb +94 -0
  31. data/lib/wikipedia/vandalism_detection/features/all_wordlists_frequency.rb +22 -0
  32. data/lib/wikipedia/vandalism_detection/features/all_wordlists_impact.rb +21 -0
  33. data/lib/wikipedia/vandalism_detection/features/anonymity.rb +17 -0
  34. data/lib/wikipedia/vandalism_detection/features/anonymity_previous.rb +32 -0
  35. data/lib/wikipedia/vandalism_detection/features/article_size.rb +17 -0
  36. data/lib/wikipedia/vandalism_detection/features/bad_frequency.rb +21 -0
  37. data/lib/wikipedia/vandalism_detection/features/bad_impact.rb +20 -0
  38. data/lib/wikipedia/vandalism_detection/features/base.rb +61 -0
  39. data/lib/wikipedia/vandalism_detection/features/biased_frequency.rb +21 -0
  40. data/lib/wikipedia/vandalism_detection/features/biased_impact.rb +21 -0
  41. data/lib/wikipedia/vandalism_detection/features/blanking.rb +26 -0
  42. data/lib/wikipedia/vandalism_detection/features/character_diversity.rb +23 -0
  43. data/lib/wikipedia/vandalism_detection/features/character_sequence.rb +19 -0
  44. data/lib/wikipedia/vandalism_detection/features/comment_bad_frequency.rb +21 -0
  45. data/lib/wikipedia/vandalism_detection/features/comment_biased_frequency.rb +21 -0
  46. data/lib/wikipedia/vandalism_detection/features/comment_length.rb +16 -0
  47. data/lib/wikipedia/vandalism_detection/features/comment_markup_frequency.rb +30 -0
  48. data/lib/wikipedia/vandalism_detection/features/comment_pronoun_frequency.rb +21 -0
  49. data/lib/wikipedia/vandalism_detection/features/comment_sex_frequency.rb +21 -0
  50. data/lib/wikipedia/vandalism_detection/features/comment_vulgarism_frequency.rb +21 -0
  51. data/lib/wikipedia/vandalism_detection/features/compressibility.rb +31 -0
  52. data/lib/wikipedia/vandalism_detection/features/contains_base.rb +16 -0
  53. data/lib/wikipedia/vandalism_detection/features/copyedit.rb +17 -0
  54. data/lib/wikipedia/vandalism_detection/features/digit_ratio.rb +23 -0
  55. data/lib/wikipedia/vandalism_detection/features/edits_per_user.rb +72 -0
  56. data/lib/wikipedia/vandalism_detection/features/emoticons_frequency.rb +27 -0
  57. data/lib/wikipedia/vandalism_detection/features/emoticons_impact.rb +29 -0
  58. data/lib/wikipedia/vandalism_detection/features/frequency_base.rb +18 -0
  59. data/lib/wikipedia/vandalism_detection/features/impact_base.rb +25 -0
  60. data/lib/wikipedia/vandalism_detection/features/inserted_character_distribution.rb +23 -0
  61. data/lib/wikipedia/vandalism_detection/features/inserted_external_links.rb +19 -0
  62. data/lib/wikipedia/vandalism_detection/features/inserted_internal_links.rb +18 -0
  63. data/lib/wikipedia/vandalism_detection/features/inserted_size.rb +19 -0
  64. data/lib/wikipedia/vandalism_detection/features/inserted_words.rb +17 -0
  65. data/lib/wikipedia/vandalism_detection/features/longest_word.rb +21 -0
  66. data/lib/wikipedia/vandalism_detection/features/markup_frequency.rb +29 -0
  67. data/lib/wikipedia/vandalism_detection/features/markup_impact.rb +30 -0
  68. data/lib/wikipedia/vandalism_detection/features/non_alphanumeric_ratio.rb +23 -0
  69. data/lib/wikipedia/vandalism_detection/features/personal_life.rb +17 -0
  70. data/lib/wikipedia/vandalism_detection/features/pronoun_frequency.rb +21 -0
  71. data/lib/wikipedia/vandalism_detection/features/pronoun_impact.rb +20 -0
  72. data/lib/wikipedia/vandalism_detection/features/removed_all_wordlists_frequency.rb +22 -0
  73. data/lib/wikipedia/vandalism_detection/features/removed_bad_frequency.rb +21 -0
  74. data/lib/wikipedia/vandalism_detection/features/removed_biased_frequency.rb +21 -0
  75. data/lib/wikipedia/vandalism_detection/features/removed_character_distribution.rb +23 -0
  76. data/lib/wikipedia/vandalism_detection/features/removed_emoticons_frequency.rb +28 -0
  77. data/lib/wikipedia/vandalism_detection/features/removed_markup_frequency.rb +30 -0
  78. data/lib/wikipedia/vandalism_detection/features/removed_pronoun_frequency.rb +21 -0
  79. data/lib/wikipedia/vandalism_detection/features/removed_sex_frequency.rb +21 -0
  80. data/lib/wikipedia/vandalism_detection/features/removed_size.rb +19 -0
  81. data/lib/wikipedia/vandalism_detection/features/removed_vulgarism_frequency.rb +21 -0
  82. data/lib/wikipedia/vandalism_detection/features/removed_words.rb +17 -0
  83. data/lib/wikipedia/vandalism_detection/features/replacement_similarity.rb +20 -0
  84. data/lib/wikipedia/vandalism_detection/features/reverted.rb +16 -0
  85. data/lib/wikipedia/vandalism_detection/features/revisions_character_distribution.rb +25 -0
  86. data/lib/wikipedia/vandalism_detection/features/same_editor.rb +32 -0
  87. data/lib/wikipedia/vandalism_detection/features/sex_frequency.rb +21 -0
  88. data/lib/wikipedia/vandalism_detection/features/sex_impact.rb +20 -0
  89. data/lib/wikipedia/vandalism_detection/features/size_increment.rb +20 -0
  90. data/lib/wikipedia/vandalism_detection/features/size_ratio.rb +28 -0
  91. data/lib/wikipedia/vandalism_detection/features/term_frequency.rb +31 -0
  92. data/lib/wikipedia/vandalism_detection/features/time_interval.rb +38 -0
  93. data/lib/wikipedia/vandalism_detection/features/time_of_day.rb +21 -0
  94. data/lib/wikipedia/vandalism_detection/features/upper_case_ratio.rb +23 -0
  95. data/lib/wikipedia/vandalism_detection/features/upper_case_words_ratio.rb +33 -0
  96. data/lib/wikipedia/vandalism_detection/features/upper_to_lower_case_ratio.rb +23 -0
  97. data/lib/wikipedia/vandalism_detection/features/vulgarism_frequency.rb +21 -0
  98. data/lib/wikipedia/vandalism_detection/features/vulgarism_impact.rb +21 -0
  99. data/lib/wikipedia/vandalism_detection/features/weekday.rb +19 -0
  100. data/lib/wikipedia/vandalism_detection/features/words_increment.rb +20 -0
  101. data/lib/wikipedia/vandalism_detection/features.rb +66 -0
  102. data/lib/wikipedia/vandalism_detection/instances.rb +121 -0
  103. data/lib/wikipedia/vandalism_detection/page.rb +101 -0
  104. data/lib/wikipedia/vandalism_detection/page_parser.rb +63 -0
  105. data/lib/wikipedia/vandalism_detection/revision.rb +75 -0
  106. data/lib/wikipedia/vandalism_detection/revision_parser.rb +67 -0
  107. data/lib/wikipedia/vandalism_detection/test_dataset.rb +374 -0
  108. data/lib/wikipedia/vandalism_detection/text.rb +23 -0
  109. data/lib/wikipedia/vandalism_detection/training_dataset.rb +282 -0
  110. data/lib/wikipedia/vandalism_detection/version.rb +5 -0
  111. data/lib/wikipedia/vandalism_detection/wikitext_extractor.rb +80 -0
  112. data/lib/wikipedia/vandalism_detection/word_lists/bad.rb +11 -0
  113. data/lib/wikipedia/vandalism_detection/word_lists/biased.rb +20 -0
  114. data/lib/wikipedia/vandalism_detection/word_lists/emoticons.rb +26 -0
  115. data/lib/wikipedia/vandalism_detection/word_lists/markup.rb +19 -0
  116. data/lib/wikipedia/vandalism_detection/word_lists/pronouns.rb +11 -0
  117. data/lib/wikipedia/vandalism_detection/word_lists/sex.rb +10 -0
  118. data/lib/wikipedia/vandalism_detection/word_lists/vulgarism.rb +96 -0
  119. data/lib/wikipedia/vandalism_detection/word_lists.rb +17 -0
  120. data/lib/wikipedia/vandalism_detection.rb +29 -0
  121. data/lib/wikipedia.rb +41 -0
  122. data/spec/factories/edit.rb +19 -0
  123. data/spec/factories/page.rb +12 -0
  124. data/spec/factories/revision.rb +51 -0
  125. data/spec/resources/config/wikipedia-vandalism-detection.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 +38 -0
  152. data/spec/support/macros/file_reading.rb +6 -0
  153. data/spec/support/macros/test_configuration.rb +81 -0
  154. data/spec/vandalism_detection/algorithms/kullback_leibler_divergence_spec.rb +34 -0
  155. data/spec/vandalism_detection/classifier_spec.rb +330 -0
  156. data/spec/vandalism_detection/configuration_spec.rb +601 -0
  157. data/spec/vandalism_detection/diff_spec.rb +40 -0
  158. data/spec/vandalism_detection/edit_spec.rb +122 -0
  159. data/spec/vandalism_detection/evaluator_spec.rb +711 -0
  160. data/spec/vandalism_detection/feature_calculator_spec.rb +135 -0
  161. data/spec/vandalism_detection/features/all_wordlists_frequency_spec.rb +30 -0
  162. data/spec/vandalism_detection/features/all_wordlists_impact_spec.rb +52 -0
  163. data/spec/vandalism_detection/features/anonymity_previous_spec.rb +67 -0
  164. data/spec/vandalism_detection/features/anonymity_spec.rb +17 -0
  165. data/spec/vandalism_detection/features/article_size_spec.rb +29 -0
  166. data/spec/vandalism_detection/features/bad_frequency_spec.rb +30 -0
  167. data/spec/vandalism_detection/features/bad_impact_spec.rb +53 -0
  168. data/spec/vandalism_detection/features/base_spec.rb +41 -0
  169. data/spec/vandalism_detection/features/biased_frequency_spec.rb +30 -0
  170. data/spec/vandalism_detection/features/biased_impact_spec.rb +52 -0
  171. data/spec/vandalism_detection/features/blanking_spec.rb +35 -0
  172. data/spec/vandalism_detection/features/character_diversity_spec.rb +30 -0
  173. data/spec/vandalism_detection/features/character_sequence_spec.rb +31 -0
  174. data/spec/vandalism_detection/features/comment_bad_frequency_spec.rb +28 -0
  175. data/spec/vandalism_detection/features/comment_biased_frequency_spec.rb +28 -0
  176. data/spec/vandalism_detection/features/comment_length_spec.rb +21 -0
  177. data/spec/vandalism_detection/features/comment_markup_frequency_spec.rb +28 -0
  178. data/spec/vandalism_detection/features/comment_pronoun_frequency_spec.rb +28 -0
  179. data/spec/vandalism_detection/features/comment_sex_frequency_spec.rb +28 -0
  180. data/spec/vandalism_detection/features/comment_vulgarism_frequency_spec.rb +28 -0
  181. data/spec/vandalism_detection/features/compressibility_spec.rb +38 -0
  182. data/spec/vandalism_detection/features/contains_base_spec.rb +27 -0
  183. data/spec/vandalism_detection/features/copyedit_spec.rb +30 -0
  184. data/spec/vandalism_detection/features/digit_ratio_spec.rb +30 -0
  185. data/spec/vandalism_detection/features/edits_per_user_spec.rb +51 -0
  186. data/spec/vandalism_detection/features/emoticons_frequency_spec.rb +30 -0
  187. data/spec/vandalism_detection/features/emoticons_impact_spec.rb +45 -0
  188. data/spec/vandalism_detection/features/frequency_base_spec.rb +20 -0
  189. data/spec/vandalism_detection/features/impact_base_spec.rb +36 -0
  190. data/spec/vandalism_detection/features/inserted_character_distribution_spec.rb +40 -0
  191. data/spec/vandalism_detection/features/inserted_external_links_spec.rb +29 -0
  192. data/spec/vandalism_detection/features/inserted_internal_links_spec.rb +29 -0
  193. data/spec/vandalism_detection/features/inserted_size_spec.rb +29 -0
  194. data/spec/vandalism_detection/features/inserted_words_spec.rb +29 -0
  195. data/spec/vandalism_detection/features/longest_word_spec.rb +29 -0
  196. data/spec/vandalism_detection/features/markup_frequency_spec.rb +31 -0
  197. data/spec/vandalism_detection/features/markup_impact_spec.rb +53 -0
  198. data/spec/vandalism_detection/features/non_alphanumeric_ratio_spec.rb +30 -0
  199. data/spec/vandalism_detection/features/personal_life_spec.rb +22 -0
  200. data/spec/vandalism_detection/features/pronoun_frequency_spec.rb +30 -0
  201. data/spec/vandalism_detection/features/pronoun_impact_spec.rb +53 -0
  202. data/spec/vandalism_detection/features/removed_all_wordlists_frequency_spec.rb +30 -0
  203. data/spec/vandalism_detection/features/removed_bad_frequency_spec.rb +30 -0
  204. data/spec/vandalism_detection/features/removed_biased_frequency_spec.rb +30 -0
  205. data/spec/vandalism_detection/features/removed_character_distribution_spec.rb +40 -0
  206. data/spec/vandalism_detection/features/removed_emoticons_frequency_spec.rb +30 -0
  207. data/spec/vandalism_detection/features/removed_markup_frequency_spec.rb +30 -0
  208. data/spec/vandalism_detection/features/removed_pronoun_frequency_spec.rb +30 -0
  209. data/spec/vandalism_detection/features/removed_sex_frequency_spec.rb +30 -0
  210. data/spec/vandalism_detection/features/removed_size_spec.rb +29 -0
  211. data/spec/vandalism_detection/features/removed_vulgarism_frequency_spec.rb +30 -0
  212. data/spec/vandalism_detection/features/removed_words_spec.rb +29 -0
  213. data/spec/vandalism_detection/features/replacement_similarity_spec.rb +37 -0
  214. data/spec/vandalism_detection/features/reverted_spec.rb +24 -0
  215. data/spec/vandalism_detection/features/revisions_character_distribution_spec.rb +40 -0
  216. data/spec/vandalism_detection/features/same_editor_spec.rb +71 -0
  217. data/spec/vandalism_detection/features/sex_frequency_spec.rb +30 -0
  218. data/spec/vandalism_detection/features/sex_impact_spec.rb +53 -0
  219. data/spec/vandalism_detection/features/size_increment_spec.rb +29 -0
  220. data/spec/vandalism_detection/features/size_ratio_spec.rb +48 -0
  221. data/spec/vandalism_detection/features/term_frequency_spec.rb +32 -0
  222. data/spec/vandalism_detection/features/time_interval_spec.rb +56 -0
  223. data/spec/vandalism_detection/features/time_of_day_spec.rb +16 -0
  224. data/spec/vandalism_detection/features/upper_case_ratio_spec.rb +30 -0
  225. data/spec/vandalism_detection/features/upper_case_words_ratio_spec.rb +33 -0
  226. data/spec/vandalism_detection/features/upper_to_lower_case_ratio_spec.rb +30 -0
  227. data/spec/vandalism_detection/features/vulgarism_frequency_spec.rb +30 -0
  228. data/spec/vandalism_detection/features/vulgarism_impact_spec.rb +52 -0
  229. data/spec/vandalism_detection/features/weekday_spec.rb +16 -0
  230. data/spec/vandalism_detection/features/words_increment_spec.rb +29 -0
  231. data/spec/vandalism_detection/instances_spec.rb +146 -0
  232. data/spec/vandalism_detection/page_parser_spec.rb +190 -0
  233. data/spec/vandalism_detection/page_spec.rb +134 -0
  234. data/spec/vandalism_detection/revision_parser_spec.rb +53 -0
  235. data/spec/vandalism_detection/revision_spec.rb +148 -0
  236. data/spec/vandalism_detection/test_dataset_spec.rb +227 -0
  237. data/spec/vandalism_detection/text_spec.rb +29 -0
  238. data/spec/vandalism_detection/training_dataset_spec.rb +266 -0
  239. data/spec/vandalism_detection/wikitext_extractor_spec.rb +97 -0
  240. data/spec/weka/classifiers/meta/one_class_classifier_spec.rb +82 -0
  241. data/spec/weka/classifiers/meta/real_ada_boost_spec.rb +37 -0
  242. data/spec/weka/classifiers/trees/balanced_random_forest_spec.rb +37 -0
  243. data/spec/weka/filters/supervised/instance/smote_spec.rb +5 -0
  244. data/wikipedia-vandalism_detection.gemspec +37 -0
  245. metadata +550 -0
@@ -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]]
@@ -0,0 +1 @@
1
+ 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. Album Information 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. 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 Ive ever done in my entire career." Track listing Standard Edition "Stand Back" (Stevie Nicks)Š 4:40 "Crash Into Me" (Dave Matthews)Š 5:33 "Sara" (Nicks)Š 6:56 "If Anyone Falls in Love" (Nicks, Sandy Stewart)Š 4:11 "Landslide" (Orchestra version) (Nicks)Š 4:20 "How Still My Love" (Nicks)Š 7:34 "Circle Dance" (Duet with Vanessa Carlton) (Bonnie Raitt)Š 4:14 "Fall From Grace" (Nicks)Š 4:35 "Sorcerer" (Nicks)Š 5:00 "Beauty and the Beast" (Nicks)Š 7:14 Amazon Mp3 Edition "Enchanted" (Nicks)Š 3:14 iTunes Edition "Gold Dust Woman" (Nicks)Š 10:07 "Edge of Seventeen" (Nicks)Š 12:33 Deluxe Edition 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". Standard and Blu-Ray DVD 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. Personnel Main Performers Stevie Nicks - vocals, producer Vanessa Carlton - guest performer Sharon Celani - backup vocals Lori Nicks - backup vocals Jana Anderson - backup vocals Production Joe Thomas - producer Waddy Wachtel - producer Frank Pappalardo - engineering Michael Czaszwicz - assistant engineering Patrick DeWitte - assistant engineering Mixed at HD Ready, St. Charles Musicians Waddy Wachtel - musical director/guitar Lenny Castro - percussion Al Ortiz - bass Jimmy Paxson - drums Ricky Peterson - keyboards Carlos Rios - guitar Darrell Smith - keyboards String Section Eric Roth - conductor Janice MacDonald - flute Deb Stevenson - oboe Greg Flint - horn Christine Worthing - horn Guillaume Combet - violin Jennifer Cappelli - violin Carmen Llop-Kassinger - violin Christine Keiko Abe - violin Carol Cook - viola Jocelyn Davis-Beck - cello Eddie Bayers - drums Michael Rhodes - bass Joe Thomas - keyboards Charts Chart (2009) Peak position U.S. Billboard 200 47 U.S. Billboard Top Current Rock Albums 15 U.S. Billboard Top Digital Albums 55 U.S. Billboard Top Internet Albums 5 References External links
@@ -0,0 +1,183 @@
1
+ The Soundstage Sessions is the tenth album released by the American
2
+ singer-songwriter and Fleetwood Mac vocalist Stevie Nicks. Although it is the
3
+ first live album of Nicks' solo career, it was produced to sound like a studio
4
+ album.
5
+
6
+ 1. Album Information
7
+
8
+
9
+ The Soundstage Sessions was recorded in October 2007 before an intimate
10
+ audience at WTTW's Grainger Studio in Chicago, with the set list containing 18
11
+ songs. In early 2008, Nicks went to Nashville and entered the studio with
12
+ director/producer Joe Thomas. In the studio, they added "Nashville strings" and
13
+ additional vocals to the songs that were to go on the CD. Nicks wanted the CD
14
+ to sound perfect, and when asked about the project has said "I am as proud of
15
+ this as anything Ive ever done in my entire career."
16
+
17
+ 2. Track listing
18
+
19
+ 2.1. Standard Edition
20
+
21
+
22
+ "Stand Back" (Stevie Nicks)Š 4:40
23
+
24
+ "Crash Into Me" (Dave Matthews)Š 5:33
25
+
26
+ "Sara" (Nicks)Š 6:56
27
+
28
+ "If Anyone Falls in Love" (Nicks, Sandy Stewart)Š 4:11
29
+
30
+ "Landslide" (Orchestra version) (Nicks)Š 4:20
31
+
32
+ "How Still My Love" (Nicks)Š 7:34
33
+
34
+ "Circle Dance" (Duet with Vanessa Carlton) (Bonnie Raitt)Š 4:14
35
+
36
+ "Fall From Grace" (Nicks)Š 4:35
37
+
38
+ "Sorcerer" (Nicks)Š 5:00
39
+
40
+ "Beauty and the Beast" (Nicks)Š 7:14
41
+
42
+ 2.2. Amazon Mp3 Edition
43
+
44
+
45
+ "Enchanted" (Nicks)Š 3:14
46
+
47
+ 2.3. iTunes Edition
48
+
49
+
50
+ "Gold Dust Woman" (Nicks)Š 10:07
51
+
52
+ "Edge of Seventeen" (Nicks)Š 12:33
53
+
54
+ 3. Deluxe Edition
55
+
56
+
57
+ Reprise Records released a Deluxe Edition exclusively through the Warner Bros.
58
+ Records Store, which is called The Soundstage Sessions: Live in Chicago. The
59
+ Deluxe Edition is a CD/DVD set, and includes new cover art, a lithograph of
60
+ Nicks, and free mp3 downloads of "Rhiannon" and "The One".
61
+
62
+ 4. Standard and Blu-Ray DVD
63
+
64
+
65
+ The Blu-Ray DVD of this performance has been available exclusively at Sears
66
+ since December 1st, 2008 and features a total of 16 tracks in high-definition.
67
+ The standard edition DVD of this performance was released by Reprise Records as
68
+ Live In Chicago.
69
+
70
+ 5. Personnel
71
+
72
+
73
+ Main Performers
74
+
75
+ Stevie Nicks - vocals, producer
76
+
77
+ Vanessa Carlton - guest performer
78
+
79
+ Sharon Celani - backup vocals
80
+
81
+ Lori Nicks - backup vocals
82
+
83
+ Jana Anderson - backup vocals
84
+
85
+ Production
86
+
87
+ Joe Thomas - producer
88
+
89
+ Waddy Wachtel - producer
90
+
91
+ Frank Pappalardo - engineering
92
+
93
+ Michael Czaszwicz - assistant engineering
94
+
95
+ Patrick DeWitte - assistant engineering
96
+
97
+ Mixed at HD Ready, St. Charles
98
+
99
+ Musicians
100
+
101
+ Waddy Wachtel - musical director/guitar
102
+
103
+ Lenny Castro - percussion
104
+
105
+ Al Ortiz - bass
106
+
107
+ Jimmy Paxson - drums
108
+
109
+ Ricky Peterson - keyboards
110
+
111
+ Carlos Rios - guitar
112
+
113
+ Darrell Smith - keyboards
114
+
115
+ String Section
116
+
117
+ Eric Roth - conductor
118
+
119
+ Janice MacDonald - flute
120
+
121
+ Deb Stevenson - oboe
122
+
123
+ Greg Flint - horn
124
+
125
+ Christine Worthing - horn
126
+
127
+ Guillaume Combet - violin
128
+
129
+ Jennifer Cappelli - violin
130
+
131
+ Carmen Llop-Kassinger - violin
132
+
133
+ Christine Keiko Abe - violin
134
+
135
+ Carol Cook - viola
136
+
137
+ Jocelyn Davis-Beck - cello
138
+
139
+ Eddie Bayers - drums
140
+
141
+ Michael Rhodes - bass
142
+
143
+ Joe Thomas - keyboards
144
+
145
+ 6. Charts
146
+
147
+
148
+ Chart (2009)
149
+
150
+ Peak
151
+ position
152
+
153
+ U.S. Billboard 200
154
+
155
+ 47
156
+
157
+
158
+ U.S. Billboard Top Current Rock Albums
159
+
160
+ 15
161
+
162
+
163
+ U.S. Billboard Top Digital Albums
164
+
165
+ 55
166
+
167
+
168
+ U.S. Billboard Top Internet Albums
169
+
170
+ 5
171
+
172
+ 7. References
173
+
174
+ 8. External links
175
+
176
+
177
+ http://www.amazon.com/dp/B001AW9DKU
178
+
179
+ http://www.pauseandplay.com/31march2009.htm
180
+
181
+ http://www.sears.com/shc/s/p_10153_12605_05801528000P?mv=rr
182
+
183
+ http://nickslive.blogspot.com/2009/04/live-in-chicago-first-week-sales.html