philologic-client 0.0.13 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY.rdoc +4 -0
- data/PhiloLogicResponseDocumentation.txt +30 -8
- data/README.rdoc +12 -4
- data/Rakefile +7 -7
- data/lib/philologic-client.rb +33 -10
- data/lib/philologic-client/collocation.rb +48 -23
- data/lib/philologic-client/document.rb +1 -1
- data/lib/philologic-client/occurrence.rb +7 -6
- data/lib/philologic-client/version.rb +1 -1
- data/test/data/bibliography.html +351 -89
- data/test/data/collocation.html +717 -2359
- data/test/data/concordance.html +355 -196
- data/test/data/frequency.html +197 -37
- data/test/data/navigation.html +196 -37
- data/test/data/object.html +173 -12
- data/test/helper.rb +9 -0
- data/test/test_bibliography.rb +6 -10
- data/test/test_client.rb +125 -499
- data/test/test_collocation.rb +22 -23
- data/test/test_concordance.rb +4 -10
- data/test/test_document.rb +7 -11
- data/test/test_frequency.rb +10 -14
- data/test/test_occurrence.rb +13 -9
- data/test/test_response.rb +1 -5
- metadata +48 -21
data/test/data/frequency.html
CHANGED
@@ -1,73 +1,233 @@
|
|
1
|
+
<html>
|
1
2
|
<head>
|
2
|
-
<title>
|
3
|
+
<title>shakespeare_bamboo</title>
|
3
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>
|
6
|
+
<link rel="stylesheet" href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/css/style.css" type="text/css" media="screen, projection">
|
7
|
+
<link type="text/css" href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/css/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet" />
|
8
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js" type="text/javascript"></script>
|
9
|
+
<script type="text/javascript" src="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/js/jquery-ui-1.8.17.custom.min.js"></script>
|
10
|
+
<script type="text/javascript">
|
11
|
+
function monkeyPatchAutocomplete() {
|
12
|
+
//taken from http://stackoverflow.com/questions/2435964/jqueryui-how-can-i-custom-format-the-autocomplete-plug-in-results
|
13
|
+
|
14
|
+
// don't really need this, but in case I did, I could store it and chain
|
15
|
+
var oldFn = $.ui.autocomplete.prototype._renderItem;
|
16
|
+
|
17
|
+
$.ui.autocomplete.prototype._renderItem = function( ul, item) {
|
18
|
+
// This regex took some fiddling but should match beginning of string and
|
19
|
+
// any match preceded by a string: this is useful for sql matches.
|
20
|
+
var re = new RegExp('((^' + this.term + ')|( ' + this.term + '))', "gi") ;
|
21
|
+
var t = item.label.replace(re,"<span style='font-weight:bold;color:Red;'>" +
|
22
|
+
"$&" +
|
23
|
+
"</span>");
|
24
|
+
return $( "<li></li>" )
|
25
|
+
.data( "item.autocomplete", item )
|
26
|
+
.append( "<a>" + t + "</a>" )
|
27
|
+
.appendTo( ul );
|
28
|
+
};
|
29
|
+
}
|
30
|
+
|
31
|
+
function autocomplete_metadata(metadata, field) {
|
32
|
+
$("#" + field).autocomplete({
|
33
|
+
source: "/philo4/shakespeare_bamboo/scripts/metadata_list.py?field=" + field,
|
34
|
+
minLength: 2,
|
35
|
+
dataType: "json"
|
36
|
+
});
|
37
|
+
}
|
38
|
+
|
39
|
+
var fields = ['author', 'title', 'date', 'volume', 'id', 'head', 'n', 'who']
|
40
|
+
$(document).ready(function(){
|
41
|
+
|
42
|
+
monkeyPatchAutocomplete();
|
43
|
+
|
44
|
+
$("#q").autocomplete({
|
45
|
+
source: "/philo4/shakespeare_bamboo/scripts/term_list.py",
|
46
|
+
minLength: 2,
|
47
|
+
"dataType": "json"
|
48
|
+
});
|
49
|
+
for (i in fields) {
|
50
|
+
var metadata = $("#" + fields[i]).val();
|
51
|
+
var field = fields[i];
|
52
|
+
autocomplete_metadata(metadata, field)
|
53
|
+
}
|
54
|
+
// The following is to display the right options when using the back button
|
55
|
+
if ($("#report option[value='concordance']").attr('selected')) {
|
56
|
+
$("#frequency").hide()
|
57
|
+
$("#collocation").hide()
|
58
|
+
$("#theme_rheme").hide()
|
59
|
+
$("#results_per_page").show()
|
60
|
+
}
|
61
|
+
if ($("#report option[value='kwic']").attr('selected')) {
|
62
|
+
$("#frequency").hide()
|
63
|
+
$("#collocation").hide()
|
64
|
+
$("#theme_rheme").hide()
|
65
|
+
$("#results_per_page").show()
|
66
|
+
}
|
67
|
+
if ($("#report option[value='collocation']").attr('selected')) {
|
68
|
+
$("#frequency").hide()
|
69
|
+
$("#results_per_page").hide()
|
70
|
+
$("#theme_rheme").hide()
|
71
|
+
$("#collocation").show()
|
72
|
+
}
|
73
|
+
if ($("#report option[value='frequency']").attr('selected')) {
|
74
|
+
$("#collocation").hide()
|
75
|
+
$("#results_per_page").hide()
|
76
|
+
$("#theme_rheme").hide()
|
77
|
+
$("#frequency").show()
|
78
|
+
}
|
79
|
+
if ($("#report option[value='relevance']").attr('selected')) {
|
80
|
+
$("#frequency").hide()
|
81
|
+
$("#collocation").hide()
|
82
|
+
$("#theme_rheme").hide()
|
83
|
+
$("#results_per_page").show()
|
84
|
+
}
|
85
|
+
if ($("#report option[value='theme_rheme']").attr('selected')) {
|
86
|
+
$("#frequency").hide()
|
87
|
+
$("#collocation").hide()
|
88
|
+
$("#theme_rheme").show()
|
89
|
+
$("#results_per_page").show()
|
90
|
+
}
|
91
|
+
});
|
92
|
+
|
93
|
+
function showHide(value) {
|
94
|
+
if (value == 'frequency') {
|
95
|
+
$("#collocation").hide()
|
96
|
+
$("#results_per_page").hide()
|
97
|
+
$("#theme_rheme").hide()
|
98
|
+
$("#frequency").show()
|
99
|
+
}
|
100
|
+
if (value == 'collocation') {
|
101
|
+
$("#frequency").hide()
|
102
|
+
$("#results_per_page").hide()
|
103
|
+
$("#theme_rheme").hide()
|
104
|
+
$("#collocation").show()
|
105
|
+
}
|
106
|
+
if (value == 'concordance' || value == 'kwic' || value == 'relevance') {
|
107
|
+
$("#frequency").hide()
|
108
|
+
$("#collocation").hide()
|
109
|
+
$("#theme_rheme").hide()
|
110
|
+
$("#results_per_page").show()
|
111
|
+
}
|
112
|
+
if (value == 'theme_rheme') {
|
113
|
+
$("#frequency").hide()
|
114
|
+
$("#collocation").hide()
|
115
|
+
$("#theme_rheme").show()
|
116
|
+
$("#results_per_page").show()
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
</script>
|
4
121
|
</head>
|
5
|
-
<body
|
122
|
+
<body>
|
123
|
+
<div id="container">
|
124
|
+
<div id="wrapper">
|
125
|
+
<div id="header">
|
126
|
+
<div id="top-bar">
|
127
|
+
<div class="region-content">
|
128
|
+
<ul class="links secondary-links">
|
129
|
+
<li class="menu-121 first"><a href="http://humanities.uchicago.edu/orgs/ARTFL/" title="The ARTFL Project">THE ARTFL PROJECT</a></li>
|
130
|
+
<li class="menu-120"><a href="http://philologic.uchicago.edu/manual.php" title="How to use the PhiloLogic Search Engine">PHILOLOGIC USER MANUAL</a></li>
|
131
|
+
<li class="menu-119"><a href="http://www.lib.uchicago.edu/efts/ARTFL/newhome/subscribe/" title="Subscribe to the ARTFL Project">SUBSCRIPTION INFORMATION</a></li>
|
132
|
+
<li class="menu-118"><a href="http://www.uchicago.edu/" title="University of Chicago">UNIVERSITY OF CHICAGO</a></li>
|
133
|
+
<li class="menu-117 last"><a href="http://www.atilf.fr/" title="Analyse et Traitment Informatique de la Langue Française">ATILF - CNRS</a></li>
|
134
|
+
</ul>
|
135
|
+
</div>
|
136
|
+
</div>
|
137
|
+
|
138
|
+
<div class="region-content">
|
139
|
+
<h1><a href="/philo4/shakespeare_bamboo/" title="ARTFL Encyclopédie Project - Robert Morrissey,General Editor"><span class="site-name">shakespeare_bamboo</span></a></h1>
|
140
|
+
</div>
|
141
|
+
</div>
|
142
|
+
<div class="main_body">
|
6
143
|
|
7
144
|
<div class='philologic_response'>
|
8
|
-
<
|
9
|
-
|
10
|
-
|
11
|
-
|
145
|
+
<div class='philologic_frequency_report'>
|
146
|
+
<p class='status'>Frequency Table</p>
|
147
|
+
|
148
|
+
<table border="1" class="philologic_table">
|
149
|
+
<tr class='freq_header_row'><th class='freq_label_header'>title</th><th class='freq_value_header'>count</th></tr>
|
12
150
|
|
13
|
-
|
151
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22A+Midsummer+Night%27s+Dream%22'>A Midsummer Night's Dream</a></td><td class='freq_value'>30</td></tr>
|
14
152
|
|
15
|
-
|
153
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+First+Part+of+King+Henry+the+Fourth%22'>The First Part of King Henry the Fourth</a></td><td class='freq_value'>8</td></tr>
|
16
154
|
|
17
|
-
|
155
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Life+and+Death+of+King+John%22'>The Life and Death of King John</a></td><td class='freq_value'>7</td></tr>
|
18
156
|
|
19
|
-
|
157
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Third+Part+of+King+Henry+the+Sixth%22'>The Third Part of King Henry the Sixth</a></td><td class='freq_value'>5</td></tr>
|
20
158
|
|
21
|
-
|
159
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Timon+of+Athens%22'>Timon of Athens</a></td><td class='freq_value'>4</td></tr>
|
22
160
|
|
23
|
-
|
161
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Julius+Caesar%22'>Julius Caesar</a></td><td class='freq_value'>3</td></tr>
|
24
162
|
|
25
|
-
|
163
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Troilus+and+Cressida%22'>Troilus and Cressida</a></td><td class='freq_value'>3</td></tr>
|
26
164
|
|
27
|
-
|
165
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Tragedy+of+King+Richard+the+Second%22'>The Tragedy of King Richard the Second</a></td><td class='freq_value'>3</td></tr>
|
28
166
|
|
29
|
-
|
167
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Venus+and+Adonis%22'>Venus and Adonis</a></td><td class='freq_value'>3</td></tr>
|
30
168
|
|
31
|
-
|
169
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Love%27s+Labour%27s+Lost%22'>Love's Labour's Lost</a></td><td class='freq_value'>3</td></tr>
|
32
170
|
|
33
|
-
|
171
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Rape+of+Lucrece%22'>The Rape of Lucrece</a></td><td class='freq_value'>2</td></tr>
|
34
172
|
|
35
|
-
|
173
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22King+Lear%22'>King Lear</a></td><td class='freq_value'>2</td></tr>
|
36
174
|
|
37
|
-
|
175
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Titus+Andronicus%22'>Titus Andronicus</a></td><td class='freq_value'>2</td></tr>
|
38
176
|
|
39
|
-
|
177
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Life+of+King+Henry+the+Fifth%22'>The Life of King Henry the Fifth</a></td><td class='freq_value'>2</td></tr>
|
40
178
|
|
41
|
-
|
179
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22All%27s+Well+That+Ends+Well%22'>All's Well That Ends Well</a></td><td class='freq_value'>2</td></tr>
|
42
180
|
|
43
|
-
|
181
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Second+Part+of+King+Henry+the+Fourth%22'>The Second Part of King Henry the Fourth</a></td><td class='freq_value'>2</td></tr>
|
44
182
|
|
45
|
-
|
183
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Second+Part+of+King+Henry+the+Sixth%22'>The Second Part of King Henry the Sixth</a></td><td class='freq_value'>2</td></tr>
|
46
184
|
|
47
|
-
|
185
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Much+Ado+About+Nothing%22'>Much Ado About Nothing</a></td><td class='freq_value'>1</td></tr>
|
48
186
|
|
49
|
-
|
187
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Life+of+King+Henry+the+Eighth%22'>The Life of King Henry the Eighth</a></td><td class='freq_value'>1</td></tr>
|
50
188
|
|
51
|
-
|
189
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Coriolanus%22'>Coriolanus</a></td><td class='freq_value'>1</td></tr>
|
52
190
|
|
53
|
-
|
191
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+First+Part+of+King+Henry+the+Sixth%22'>The First Part of King Henry the Sixth</a></td><td class='freq_value'>1</td></tr>
|
54
192
|
|
55
|
-
|
193
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Antony+and+Cleopatra%22'>Antony and Cleopatra</a></td><td class='freq_value'>1</td></tr>
|
56
194
|
|
57
|
-
|
195
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22The+Merchant+of+Venice%22'>The Merchant of Venice</a></td><td class='freq_value'>1</td></tr>
|
58
196
|
|
59
|
-
|
197
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Twelfth+Night+or+What+You+Will%22'>Twelfth Night or What You Will</a></td><td class='freq_value'>1</td></tr>
|
60
198
|
|
61
|
-
|
199
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Measure+for+Measure%22'>Measure for Measure</a></td><td class='freq_value'>1</td></tr>
|
62
200
|
|
63
|
-
|
201
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Macbeth%22'>Macbeth</a></td><td class='freq_value'>1</td></tr>
|
64
202
|
|
65
|
-
|
203
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Two+Gentlemen+of+Verona%22'>Two Gentlemen of Verona</a></td><td class='freq_value'>1</td></tr>
|
66
204
|
|
67
|
-
|
205
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22Othello%2C+the+Moor+of+Venice%22'>Othello, the Moor of Venice</a></td><td class='freq_value'>1</td></tr>
|
68
206
|
|
69
|
-
|
70
|
-
</table>
|
207
|
+
<tr class='freq_row'><td class='freq_label'><a href='./?q=lion&method=proxy&title=%22As+You+Like+It%22'>As You Like It</a></td><td class='freq_value'>1</td></tr>
|
208
|
+
</table>
|
209
|
+
</div>
|
71
210
|
</div>
|
72
|
-
|
211
|
+
</div>
|
212
|
+
</div>
|
213
|
+
<div id="footer">
|
214
|
+
<div class="bottom-border">
|
215
|
+
<div class="region-content">
|
216
|
+
<div class="footer-nav" style="float:left;">
|
217
|
+
<ul class="links primary-links"><li class="menu-204 first"><a href="/content/about-artfl" title="General Information about the ARTFL Project">about artfl</a></li>
|
218
|
+
<li class="menu-139"><a href="/content/subscription-information-0" title="Information concerning ARTFL Subscription">subscription info</a></li>
|
219
|
+
<li class="menu-140"><a href="/content/whats-new-artfl" title="New Developments at the ARTFL Project">what's new</a></li>
|
220
|
+
<li class="menu-143"><a href="http://sites.google.com/site/philologic3/home" title="Philologic 3: Open Source ARTFL Search and Retrieval Engine">philologic</a></li>
|
221
|
+
<li class="menu-197 last"><a href="/content/contact-us" title="Contact information for the ARTFL Project">contact us</a></li>
|
222
|
+
</ul>
|
223
|
+
<br />
|
224
|
+
<br />
|
225
|
+
<img src="http://humanities.uchicago.edu/images/wordmarks/hum-wordmark-black-small.png" style="display:block;margin-left:-5px;" />
|
226
|
+
</div>
|
227
|
+
<p id="footer-message">The ARTFL Project<br>Department of Romance Languages and Literatures<br>Division of the Humanities<br>University of Chicago<br>1115 East 58th Street Chicago, IL 60637<br>tel: 773-702-8488 | email: artfl[at]artfl[dot]uchicago[dot]edu<br></p> <span class="clear"></span>
|
228
|
+
</div>
|
229
|
+
</div>
|
230
|
+
</div> <!-- /footer -->
|
231
|
+
</div> <!-- /container -->
|
232
|
+
</body>
|
73
233
|
</html>
|
data/test/data/navigation.html
CHANGED
@@ -1,69 +1,228 @@
|
|
1
|
+
<html>
|
1
2
|
<head>
|
2
|
-
<title>
|
3
|
+
<title>shakespeare_bamboo</title>
|
3
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
|
+
<link href='http://fonts.googleapis.com/css?family=Droid+Sans+Mono' rel='stylesheet' type='text/css'>
|
6
|
+
<link rel="stylesheet" href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/css/style.css" type="text/css" media="screen, projection">
|
7
|
+
<link type="text/css" href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/css/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet" />
|
8
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js" type="text/javascript"></script>
|
9
|
+
<script type="text/javascript" src="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/js/jquery-ui-1.8.17.custom.min.js"></script>
|
10
|
+
<script type="text/javascript">
|
11
|
+
function monkeyPatchAutocomplete() {
|
12
|
+
//taken from http://stackoverflow.com/questions/2435964/jqueryui-how-can-i-custom-format-the-autocomplete-plug-in-results
|
13
|
+
|
14
|
+
// don't really need this, but in case I did, I could store it and chain
|
15
|
+
var oldFn = $.ui.autocomplete.prototype._renderItem;
|
16
|
+
|
17
|
+
$.ui.autocomplete.prototype._renderItem = function( ul, item) {
|
18
|
+
// This regex took some fiddling but should match beginning of string and
|
19
|
+
// any match preceded by a string: this is useful for sql matches.
|
20
|
+
var re = new RegExp('((^' + this.term + ')|( ' + this.term + '))', "gi") ;
|
21
|
+
var t = item.label.replace(re,"<span style='font-weight:bold;color:Red;'>" +
|
22
|
+
"$&" +
|
23
|
+
"</span>");
|
24
|
+
return $( "<li></li>" )
|
25
|
+
.data( "item.autocomplete", item )
|
26
|
+
.append( "<a>" + t + "</a>" )
|
27
|
+
.appendTo( ul );
|
28
|
+
};
|
29
|
+
}
|
30
|
+
|
31
|
+
function autocomplete_metadata(metadata, field) {
|
32
|
+
$("#" + field).autocomplete({
|
33
|
+
source: "/philo4/shakespeare_bamboo/scripts/metadata_list.py?field=" + field,
|
34
|
+
minLength: 2,
|
35
|
+
dataType: "json"
|
36
|
+
});
|
37
|
+
}
|
38
|
+
|
39
|
+
var fields = ['author', 'title', 'date', 'volume', 'id', 'head', 'n', 'who']
|
40
|
+
$(document).ready(function(){
|
41
|
+
|
42
|
+
monkeyPatchAutocomplete();
|
43
|
+
|
44
|
+
$("#q").autocomplete({
|
45
|
+
source: "/philo4/shakespeare_bamboo/scripts/term_list.py",
|
46
|
+
minLength: 2,
|
47
|
+
"dataType": "json"
|
48
|
+
});
|
49
|
+
for (i in fields) {
|
50
|
+
var metadata = $("#" + fields[i]).val();
|
51
|
+
var field = fields[i];
|
52
|
+
autocomplete_metadata(metadata, field)
|
53
|
+
}
|
54
|
+
// The following is to display the right options when using the back button
|
55
|
+
if ($("#report option[value='concordance']").attr('selected')) {
|
56
|
+
$("#frequency").hide()
|
57
|
+
$("#collocation").hide()
|
58
|
+
$("#theme_rheme").hide()
|
59
|
+
$("#results_per_page").show()
|
60
|
+
}
|
61
|
+
if ($("#report option[value='kwic']").attr('selected')) {
|
62
|
+
$("#frequency").hide()
|
63
|
+
$("#collocation").hide()
|
64
|
+
$("#theme_rheme").hide()
|
65
|
+
$("#results_per_page").show()
|
66
|
+
}
|
67
|
+
if ($("#report option[value='collocation']").attr('selected')) {
|
68
|
+
$("#frequency").hide()
|
69
|
+
$("#results_per_page").hide()
|
70
|
+
$("#theme_rheme").hide()
|
71
|
+
$("#collocation").show()
|
72
|
+
}
|
73
|
+
if ($("#report option[value='frequency']").attr('selected')) {
|
74
|
+
$("#collocation").hide()
|
75
|
+
$("#results_per_page").hide()
|
76
|
+
$("#theme_rheme").hide()
|
77
|
+
$("#frequency").show()
|
78
|
+
}
|
79
|
+
if ($("#report option[value='relevance']").attr('selected')) {
|
80
|
+
$("#frequency").hide()
|
81
|
+
$("#collocation").hide()
|
82
|
+
$("#theme_rheme").hide()
|
83
|
+
$("#results_per_page").show()
|
84
|
+
}
|
85
|
+
if ($("#report option[value='theme_rheme']").attr('selected')) {
|
86
|
+
$("#frequency").hide()
|
87
|
+
$("#collocation").hide()
|
88
|
+
$("#theme_rheme").show()
|
89
|
+
$("#results_per_page").show()
|
90
|
+
}
|
91
|
+
});
|
92
|
+
|
93
|
+
function showHide(value) {
|
94
|
+
if (value == 'frequency') {
|
95
|
+
$("#collocation").hide()
|
96
|
+
$("#results_per_page").hide()
|
97
|
+
$("#theme_rheme").hide()
|
98
|
+
$("#frequency").show()
|
99
|
+
}
|
100
|
+
if (value == 'collocation') {
|
101
|
+
$("#frequency").hide()
|
102
|
+
$("#results_per_page").hide()
|
103
|
+
$("#theme_rheme").hide()
|
104
|
+
$("#collocation").show()
|
105
|
+
}
|
106
|
+
if (value == 'concordance' || value == 'kwic' || value == 'relevance') {
|
107
|
+
$("#frequency").hide()
|
108
|
+
$("#collocation").hide()
|
109
|
+
$("#theme_rheme").hide()
|
110
|
+
$("#results_per_page").show()
|
111
|
+
}
|
112
|
+
if (value == 'theme_rheme') {
|
113
|
+
$("#frequency").hide()
|
114
|
+
$("#collocation").hide()
|
115
|
+
$("#theme_rheme").show()
|
116
|
+
$("#results_per_page").show()
|
117
|
+
}
|
118
|
+
}
|
119
|
+
|
120
|
+
</script>
|
4
121
|
</head>
|
5
|
-
<body
|
122
|
+
<body>
|
123
|
+
<div id="container">
|
124
|
+
<div id="wrapper">
|
125
|
+
<div id="header">
|
126
|
+
<div id="top-bar">
|
127
|
+
<div class="region-content">
|
128
|
+
<ul class="links secondary-links">
|
129
|
+
<li class="menu-121 first"><a href="http://humanities.uchicago.edu/orgs/ARTFL/" title="The ARTFL Project">THE ARTFL PROJECT</a></li>
|
130
|
+
<li class="menu-120"><a href="http://philologic.uchicago.edu/manual.php" title="How to use the PhiloLogic Search Engine">PHILOLOGIC USER MANUAL</a></li>
|
131
|
+
<li class="menu-119"><a href="http://www.lib.uchicago.edu/efts/ARTFL/newhome/subscribe/" title="Subscribe to the ARTFL Project">SUBSCRIPTION INFORMATION</a></li>
|
132
|
+
<li class="menu-118"><a href="http://www.uchicago.edu/" title="University of Chicago">UNIVERSITY OF CHICAGO</a></li>
|
133
|
+
<li class="menu-117 last"><a href="http://www.atilf.fr/" title="Analyse et Traitment Informatique de la Langue Française">ATILF - CNRS</a></li>
|
134
|
+
</ul>
|
135
|
+
</div>
|
136
|
+
</div>
|
137
|
+
|
138
|
+
<div class="region-content">
|
139
|
+
<h1><a href="/philo4/shakespeare_bamboo/" title="ARTFL Encyclopédie Project - Robert Morrissey,General Editor"><span class="site-name">shakespeare_bamboo</span></a></h1>
|
140
|
+
</div>
|
141
|
+
</div>
|
142
|
+
<div class="main_body">
|
6
143
|
|
7
|
-
<div class='philologic_response'>
|
8
|
-
|
9
|
-
|
10
|
-
|
144
|
+
<div class='philologic_response'>
|
145
|
+
<div class='philologic_cite'>
|
146
|
+
<span class='philologic_property' title='author'>William Shakespeare</span>, <span class='philologic_property' title='title'>The First Part of King Henry the Fourth</span>
|
147
|
+
</div>
|
148
|
+
<div class='philologic_navigation'>
|
11
149
|
|
12
150
|
|
13
|
-
<a href="
|
151
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/2/0/0/0/0/0">[div1]</a></div>
|
14
152
|
|
15
|
-
<a href="
|
153
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/2/1/0/0/0/0">Dramatis Personae</a></div>
|
16
154
|
|
17
|
-
<a href="
|
155
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/3/0/0/0/0/0">Act 1</a></div>
|
18
156
|
|
19
|
-
<a href="
|
157
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/3/2/0/0/0/0">Act 1, Scene 1</a></div>
|
20
158
|
|
21
|
-
<a href="
|
159
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/3/3/0/0/0/0">Act 1, Scene 2</a></div>
|
22
160
|
|
23
|
-
<a href="
|
161
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/3/4/0/0/0/0">Act 1, Scene 3</a></div>
|
24
162
|
|
25
|
-
<a href="
|
163
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/4/0/0/0/0/0">Act 2</a></div>
|
26
164
|
|
27
|
-
<a href="
|
165
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/4/2/0/0/0/0">Act 2, Scene 1</a></div>
|
28
166
|
|
29
|
-
<a href="
|
167
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/4/3/0/0/0/0">Act 2, Scene 2</a></div>
|
30
168
|
|
31
|
-
<a href="
|
169
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/4/4/0/0/0/0">Act 2, Scene 3</a></div>
|
32
170
|
|
33
|
-
<a href="
|
171
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/4/5/0/0/0/0">Act 2, Scene 4</a></div>
|
34
172
|
|
35
|
-
<a href="
|
173
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/5/0/0/0/0/0">Act 3</a></div>
|
36
174
|
|
37
|
-
<a href="
|
175
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/5/2/0/0/0/0">Act 3, Scene 1</a></div>
|
38
176
|
|
39
|
-
<a href="
|
177
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/5/3/0/0/0/0">Act 3, Scene 2</a></div>
|
40
178
|
|
41
|
-
<a href="
|
179
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/5/4/0/0/0/0">Act 3, Scene 3</a></div>
|
42
180
|
|
43
|
-
<a href="
|
181
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/6/0/0/0/0/0">Act 4</a></div>
|
44
182
|
|
45
|
-
<a href="
|
183
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/6/2/0/0/0/0">Act 4, Scene 1</a></div>
|
46
184
|
|
47
|
-
<a href="
|
185
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/6/3/0/0/0/0">Act 4, Scene 2</a></div>
|
48
186
|
|
49
|
-
<a href="
|
187
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/6/4/0/0/0/0">Act 4, Scene 3</a></div>
|
50
188
|
|
51
|
-
<a href="
|
189
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/6/5/0/0/0/0">Act 4, Scene 4</a></div>
|
52
190
|
|
53
|
-
<a href="
|
191
|
+
<div class='philologic_cite'><a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/0/0/0/0/0">Act 5</a></div>
|
54
192
|
|
55
|
-
<a href="
|
193
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/2/0/0/0/0">Act 5, Scene 1</a></div>
|
56
194
|
|
57
|
-
<a href="
|
195
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/3/0/0/0/0">Act 5, Scene 2</a></div>
|
58
196
|
|
59
|
-
<a href="
|
197
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/4/0/0/0/0">Act 5, Scene 3</a></div>
|
60
198
|
|
61
|
-
<a href="
|
199
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/5/0/0/0/0">Act 5, Scene 4</a></div>
|
62
200
|
|
63
|
-
<a href="
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
201
|
+
<div class='philologic_cite'> - <a href="http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/1/7/6/0/0/0/0">Act 5, Scene 5</a></div>
|
202
|
+
</div>
|
203
|
+
<div class='more'>
|
204
|
+
<div style='clear:both;'></div>
|
205
|
+
</div>
|
206
|
+
</div>
|
207
|
+
</div>
|
208
|
+
<div id="footer">
|
209
|
+
<div class="bottom-border">
|
210
|
+
<div class="region-content">
|
211
|
+
<div class="footer-nav" style="float:left;">
|
212
|
+
<ul class="links primary-links"><li class="menu-204 first"><a href="/content/about-artfl" title="General Information about the ARTFL Project">about artfl</a></li>
|
213
|
+
<li class="menu-139"><a href="/content/subscription-information-0" title="Information concerning ARTFL Subscription">subscription info</a></li>
|
214
|
+
<li class="menu-140"><a href="/content/whats-new-artfl" title="New Developments at the ARTFL Project">what's new</a></li>
|
215
|
+
<li class="menu-143"><a href="http://sites.google.com/site/philologic3/home" title="Philologic 3: Open Source ARTFL Search and Retrieval Engine">philologic</a></li>
|
216
|
+
<li class="menu-197 last"><a href="/content/contact-us" title="Contact information for the ARTFL Project">contact us</a></li>
|
217
|
+
</ul>
|
218
|
+
<br />
|
219
|
+
<br />
|
220
|
+
<img src="http://humanities.uchicago.edu/images/wordmarks/hum-wordmark-black-small.png" style="display:block;margin-left:-5px;" />
|
221
|
+
</div>
|
222
|
+
<p id="footer-message">The ARTFL Project<br>Department of Romance Languages and Literatures<br>Division of the Humanities<br>University of Chicago<br>1115 East 58th Street Chicago, IL 60637<br>tel: 773-702-8488 | email: artfl[at]artfl[dot]uchicago[dot]edu<br></p> <span class="clear"></span>
|
223
|
+
</div>
|
224
|
+
</div>
|
225
|
+
</div> <!-- /footer -->
|
226
|
+
</div> <!-- /container -->
|
227
|
+
</body>
|
68
228
|
</html>
|
69
|
-
|