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.
@@ -1,32 +1,180 @@
1
+ <html>
2
+ <head>
3
+ <title>shakespeare_bamboo</title>
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>
121
+ </head>
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">
143
+
1
144
  <div class='philologic_response'>
2
-
3
- <p class='description'><span class="start">1</span> - <span class="end">50</span> of <span class="total">95</span> for query "lion"</p>
145
+ <div class='initial_report'>
146
+ <p class='description'>
147
+
148
+ Hits <span class="start">1</span> - <span class="end">50</span> of 95
149
+ </p>
150
+ </div>
151
+
4
152
  <ol class='philologic_concordance'>
5
-
6
153
  <li class='philologic_occurrence'>
7
- <span class="hit_n">1</span>. <a href="./1/3/3/1/25/?byte=33845" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Prince</span></a>
154
+
155
+ <span class='hit_n'>1.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=33845' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/3?byte=33845'>Act 1</a> - <a href='./1/3/3?byte=33845'>Act 1, Scene 2</a></span>
8
156
  <div class='philologic_context'> cat or a lugged bear.
9
157
 
10
158
 
11
159
 
12
160
  Prince
13
161
 
14
- Or an old <span class="hilite">lion</span>, or a lover's lute.
162
+ Or an old <span class="highlight">lion</span>, or a lover's lute.
15
163
 
16
164
 
17
165
 
18
166
  Falstaff
19
167
 
20
- Yea</div>
168
+ </div>
21
169
  </li>
22
-
23
170
  <li class='philologic_occurrence'>
24
- <span class="hit_n">2</span>. <a href="./1/3/4/1/25/?byte=82116" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Hotspur</span></a>
171
+
172
+ <span class='hit_n'>2.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=82116' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/3?byte=82116'>Act 1</a> - <a href='./1/3/4?byte=82116'>Act 1, Scene 3</a></span>
25
173
  <div class='philologic_context'>
26
174
  And let them grapple: O, the blood more stirs
27
175
 
28
176
 
29
- To rouse a <span class="hilite">lion</span> than to start a hare!
177
+ To rouse a <span class="highlight">lion</span> than to start a hare!
30
178
 
31
179
 
32
180
 
@@ -34,57 +182,56 @@
34
182
 
35
183
  </div>
36
184
  </li>
37
-
38
185
  <li class='philologic_occurrence'>
39
- <span class="hit_n">3</span>. <a href="./1/4/5/1/103/?byte=192503" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Falstaff</span></a>
186
+
187
+ <span class='hit_n'>3.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=192503' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/4?byte=192503'>Act 2</a> - <a href='./1/4/5?byte=192503'>Act 2, Scene 4</a></span>
40
188
  <div class='philologic_context'>
41
189
  true prince? why, thou knowest I am as valiant
42
190
 
43
191
 
44
- as Hercules: but beware instinct; the <span class="hilite">lion</span> will
192
+ as Hercules: but beware instinct; the <span class="highlight">lion</span> will
45
193
 
46
194
 
47
195
  not touch the true prince. Instinct is a great
48
196
 
49
197
  </div>
50
198
  </li>
51
-
52
199
  <li class='philologic_occurrence'>
53
- <span class="hit_n">4</span>. <a href="./1/4/5/1/103/?byte=193008" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Falstaff</span></a>
200
+
201
+ <span class='hit_n'>4.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=193008' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/4?byte=193008'>Act 2</a> - <a href='./1/4/5?byte=193008'>Act 2, Scene 4</a></span>
54
202
  <div class='philologic_context'>
55
203
  think the better of myself and thee during my
56
204
 
57
205
 
58
- life; I for a valiant <span class="hilite">lion</span>, and thou for a true
206
+ life; I for a valiant <span class="highlight">lion</span>, and thou for a true
59
207
 
60
208
 
61
209
  prince But, by the Lord, lads, I am glad you have
62
210
 
63
211
  </div>
64
212
  </li>
65
-
66
213
  <li class='philologic_occurrence'>
67
- <span class="hit_n">5</span>. <a href="./1/5/2/1/42/?byte=259477" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Hotspur</span></a>
68
- <div class='philologic_context'>
69
-
214
+
215
+ <span class='hit_n'>5.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=259477' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/5?byte=259477'>Act 3</a> - <a href='./1/5/2?byte=259477'>Act 3, Scene 1</a></span>
216
+ <div class='philologic_context'>
70
217
  A clip-winged griffin and a moulten raven,
71
218
 
72
219
 
73
- A couching <span class="hilite">lion</span> and a ramping cat,
220
+ A couching <span class="highlight">lion</span> and a ramping cat,
74
221
 
75
222
 
76
223
  And such a deal of skimble-skamble stuff
77
224
 
78
225
  </div>
79
226
  </li>
80
-
81
227
  <li class='philologic_occurrence'>
82
- <span class="hit_n">6</span>. <a href="./1/5/2/1/43/?byte=261321" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Mortimer</span></a>
228
+
229
+ <span class='hit_n'>6.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=261321' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/5?byte=261321'>Act 3</a> - <a href='./1/5/2?byte=261321'>Act 3, Scene 1</a></span>
83
230
  <div class='philologic_context'>
84
231
  Exceedingly well read, and profited
85
232
 
86
233
 
87
- In strange concealments, valiant as a <span class="hilite">lion</span>
234
+ In strange concealments, valiant as a <span class="highlight">lion</span>
88
235
 
89
236
 
90
237
  And wondrous affable and as bountiful
@@ -92,61 +239,59 @@
92
239
 
93
240
  </div>
94
241
  </li>
95
-
96
242
  <li class='philologic_occurrence'>
97
- <span class="hit_n">7</span>. <a href="./1/5/4/1/56/?byte=323813" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Prince</span></a>
98
- <div class='philologic_context'>ion's whelp.
243
+
244
+ <span class='hit_n'>7.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=323813' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/5?byte=323813'>Act 3</a> - <a href='./1/5/4?byte=323813'>Act 3, Scene 3</a></span>
245
+ <div class='philologic_context'>whelp.
99
246
 
100
247
 
101
248
 
102
249
  Prince
103
250
 
104
- And why not as the <span class="hilite">lion</span>?
251
+ And why not as the <span class="highlight">lion</span>?
105
252
 
106
253
 
107
254
 
108
255
  Falstaff
109
256
 
110
- The king himself is t</div>
257
+ The king himself is</div>
111
258
  </li>
112
-
113
259
  <li class='philologic_occurrence'>
114
- <span class="hit_n">8</span>. <a href="./1/5/4/1/57/?byte=324032" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Falstaff</span></a>
115
- <div class='philologic_context'>
116
-
260
+
261
+ <span class='hit_n'>8.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./1?byte=324032' class='philologic_property' title='title'>The First Part of King Henry the Fourth</a> - <a href='./1/5?byte=324032'>Act 3</a> - <a href='./1/5/4?byte=324032'>Act 3, Scene 3</a></span>
262
+ <div class='philologic_context'>
117
263
 
118
264
  Falstaff
119
265
 
120
- The king himself is to be feared as the <span class="hilite">lion</span>:
266
+ The king himself is to be feared as the <span class="highlight">lion</span>:
121
267
 
122
268
 
123
269
  dost thou think I'll fear thee as I fear thy father?
124
270
 
125
271
  </div>
126
272
  </li>
127
-
128
273
  <li class='philologic_occurrence'>
129
- <span class="hit_n">9</span>. <a href="./2/6/8/1/2/?byte=318059" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The First Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Talbot</span></a>
130
- <div class='philologic_context'>
131
-
274
+
275
+ <span class='hit_n'>9.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./2?byte=318059' class='philologic_property' title='title'>The First Part of King Henry the Sixth</a> - <a href='./2/6?byte=318059'>Act 4</a> - <a href='./2/6/8?byte=318059'>Act 4, Scene 7</a></span>
276
+ <div class='philologic_context'>
132
277
  His bloody sword he brandished over me,
133
278
 
134
279
 
135
- And, like a hungry <span class="hilite">lion</span>, did commence
280
+ And, like a hungry <span class="highlight">lion</span>, did commence
136
281
 
137
282
 
138
283
  Rough deeds of rage and stern impatience;
139
284
 
140
285
  </div>
141
286
  </li>
142
-
143
287
  <li class='philologic_occurrence'>
144
- <span class="hit_n">10</span>. <a href="./3/3/4/1/60/?byte=77042" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Second Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Falstaff</span></a>
288
+
289
+ <span class='hit_n'>10.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./3?byte=77042' class='philologic_property' title='title'>The Second Part of King Henry the Fourth</a> - <a href='./3/3?byte=77042'>Act 1</a> - <a href='./3/3/4?byte=77042'>Act 1, Scene 2</a></span>
145
290
  <div class='philologic_context'>
146
291
  a sensible lord. I have checked him for it, and
147
292
 
148
293
 
149
- the young <span class="hilite">lion</span> repents; marry, not in ashes and
294
+ the young <span class="highlight">lion</span> repents; marry, not in ashes and
150
295
 
151
296
 
152
297
  sackcloth, but in new silk and old sack.
@@ -154,119 +299,115 @@
154
299
 
155
300
  </div>
156
301
  </li>
157
-
158
302
  <li class='philologic_occurrence'>
159
- <span class="hit_n">11</span>. <a href="./3/6/2/1/37/?byte=328433" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Second Part of King Henry the Fourth</span></i> : <span class='philologic_property' title='who'>Hastings</span></a>
303
+
304
+ <span class='hit_n'>11.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./3?byte=328433' class='philologic_property' title='title'>The Second Part of King Henry the Fourth</a> - <a href='./3/6?byte=328433'>Act 4</a> - <a href='./3/6/2?byte=328433'>Act 4, Scene 1</a></span>
160
305
  <div class='philologic_context'>
161
306
  The very instruments of chastisement:
162
307
 
163
308
 
164
- So that his power, like to a fangless <span class="hilite">lion</span>,
309
+ So that his power, like to a fangless <span class="highlight">lion</span>,
165
310
 
166
311
 
167
312
  May offer, but not hold.
168
313
 
169
314
 
170
315
 
171
- </div>
316
+ </div>
172
317
  </li>
173
-
174
318
  <li class='philologic_occurrence'>
175
- <span class="hit_n">12</span>. <a href="./4/5/2/1/3/?byte=194294" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Second Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Queen Margaret</span></a>
319
+
320
+ <span class='hit_n'>12.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./4?byte=194294' class='philologic_property' title='title'>The Second Part of King Henry the Sixth</a> - <a href='./4/5?byte=194294'>Act 3</a> - <a href='./4/5/2?byte=194294'>Act 3, Scene 1</a></span>
176
321
  <div class='philologic_context'>
177
322
  Small curs are not regarded when they grin;
178
323
 
179
324
 
180
- But great men tremble when the <span class="hilite">lion</span> roars;
325
+ But great men tremble when the <span class="highlight">lion</span> roars;
181
326
 
182
327
 
183
328
  And Humphrey is no little man in England.
184
329
 
185
-
186
- </div>
330
+ </div>
187
331
  </li>
188
-
189
332
  <li class='philologic_occurrence'>
190
- <span class="hit_n">13</span>. <a href="./4/7/4/1/2/?byte=480458" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Second Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Plantagenet</span></a>
191
- <div class='philologic_context'>
192
-
333
+
334
+ <span class='hit_n'>13.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./4?byte=480458' class='philologic_property' title='title'>The Second Part of King Henry the Sixth</a> - <a href='./4/7?byte=480458'>Act 5</a> - <a href='./4/7/4?byte=480458'>Act 5, Scene 3</a></span>
335
+ <div class='philologic_context'>
193
336
  Of Salisbury, who can report of him,
194
337
 
195
338
 
196
- That winter <span class="hilite">lion</span>, who in rage forgets
339
+ That winter <span class="highlight">lion</span>, who in rage forgets
197
340
 
198
341
 
199
342
  Aged contusions and all brush of time,
200
343
 
201
344
  </div>
202
345
  </li>
203
-
204
346
  <li class='philologic_occurrence'>
205
- <span class="hit_n">14</span>. <a href="./5/3/4/1/8/?byte=69999" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Third Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Edmund</span></a>
206
- <div class='philologic_context'>l open them.
347
+
348
+ <span class='hit_n'>14.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./5?byte=69999' class='philologic_property' title='title'>The Third Part of King Henry the Sixth</a> - <a href='./5/3?byte=69999'>Act 1</a> - <a href='./5/3/4?byte=69999'>Act 1, Scene 3</a></span>
349
+ <div class='philologic_context'>open them.
207
350
 
208
351
 
209
352
 
210
353
  Edmund
211
354
 
212
- So looks the pent-up <span class="hilite">lion</span> o'er the wretch
355
+ So looks the pent-up <span class="highlight">lion</span> o'er the wretch
213
356
 
214
357
 
215
358
  That trembles under his devouring paws;
216
359
 
217
360
  </div>
218
361
  </li>
219
-
220
362
  <li class='philologic_occurrence'>
221
- <span class="hit_n">15</span>. <a href="./5/4/2/1/3/?byte=103668" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Third Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Richard</span></a>
222
- <div class='philologic_context'>
223
-
363
+
364
+ <span class='hit_n'>15.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./5?byte=103668' class='philologic_property' title='title'>The Third Part of King Henry the Sixth</a> - <a href='./5/4?byte=103668'>Act 2</a> - <a href='./5/4/2?byte=103668'>Act 2, Scene 1</a></span>
365
+ <div class='philologic_context'>
224
366
  Methought he bore him in the thickest troop
225
367
 
226
368
 
227
- As doth a <span class="hilite">lion</span> in a herd of neat;
369
+ As doth a <span class="highlight">lion</span> in a herd of neat;
228
370
 
229
371
 
230
372
  Or as a bear, encompassed round with dogs,
231
373
 
232
374
  </div>
233
375
  </li>
234
-
235
376
  <li class='philologic_occurrence'>
236
- <span class="hit_n">16</span>. <a href="./5/6/9/1/15/?byte=379797" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Third Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>King Henry</span></a>
237
- <div class='philologic_context'>
238
-
377
+
378
+ <span class='hit_n'>16.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./5?byte=379797' class='philologic_property' title='title'>The Third Part of King Henry the Sixth</a> - <a href='./5/6?byte=379797'>Act 4</a> - <a href='./5/6/9?byte=379797'>Act 4, Scene 8</a></span>
379
+ <div class='philologic_context'>
239
380
  No, Exeter, these graces challenge grace:
240
381
 
241
382
 
242
- And when the <span class="hilite">lion</span> fawns upon the lamb,
383
+ And when the <span class="highlight">lion</span> fawns upon the lamb,
243
384
 
244
385
 
245
386
  The lamb will never cease to follow him.
246
- Shout within, “A Lancaster! A</div>
387
+ Shout within, “A Lancaster!</div>
247
388
  </li>
248
-
249
389
  <li class='philologic_occurrence'>
250
- <span class="hit_n">17</span>. <a href="./5/7/3/1/3/?byte=403518" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Third Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>Warwick</span></a>
390
+
391
+ <span class='hit_n'>17.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./5?byte=403518' class='philologic_property' title='title'>The Third Part of King Henry the Sixth</a> - <a href='./5/7?byte=403518'>Act 5</a> - <a href='./5/7/3?byte=403518'>Act 5, Scene 2</a></span>
251
392
  <div class='philologic_context'>
252
393
  Whose arms gave shelter to the princely eagle,
253
394
 
254
395
 
255
- Under whose shade the ramping <span class="hilite">lion</span> slept,
396
+ Under whose shade the ramping <span class="highlight">lion</span> slept,
256
397
 
257
398
 
258
399
  Whose top-branch overpeered Jove's spreading tree
259
400
 
260
401
  </div>
261
402
  </li>
262
-
263
403
  <li class='philologic_occurrence'>
264
- <span class="hit_n">18</span>. <a href="./5/7/8/1/2/?byte=454827" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Third Part of King Henry the Sixth</span></i> : <span class='philologic_property' title='who'>King Edward</span></a>
404
+
405
+ <span class='hit_n'>18.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./5?byte=454827' class='philologic_property' title='title'>The Third Part of King Henry the Sixth</a> - <a href='./5/7?byte=454827'>Act 5</a> - <a href='./5/7/8?byte=454827'>Act 5, Scene 7</a></span>
265
406
  <div class='philologic_context'>
266
407
  With them, the two brave bears, Warwick and Montague,
267
408
 
268
409
 
269
- That in their chains fettered the kingly <span class="hilite">lion</span>
410
+ That in their chains fettered the kingly <span class="highlight">lion</span>
270
411
 
271
412
 
272
413
  And made the forest tremble when they roared.
@@ -274,102 +415,102 @@
274
415
 
275
416
  </div>
276
417
  </li>
277
-
278
418
  <li class='philologic_occurrence'>
279
- <span class="hit_n">19</span>. <a href="./6/6/15/1/4/?byte=430142" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Antony and Cleopatra</span></i> : <span class='philologic_property' title='who'>Antony</span></a>
419
+
420
+ <span class='hit_n'>19.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./6?byte=430142' class='philologic_property' title='title'>Antony and Cleopatra</a> - <a href='./6/6?byte=430142'>Act 4</a> - <a href='./6/6/15?byte=430142'>Act 4, Scene 14</a></span>
280
421
  <div class='philologic_context'>
281
422
  Sometime we see a cloud that's dragonish;
282
423
 
283
424
 
284
- A vapour sometime like a bear or <span class="hilite">lion</span>,
425
+ A vapour sometime like a bear or <span class="highlight">lion</span>,
285
426
 
286
427
 
287
428
  A towered citadel, a pendent rock,
288
429
 
289
430
 
290
- A</div>
431
+ </div>
291
432
  </li>
292
-
293
433
  <li class='philologic_occurrence'>
294
- <span class="hit_n">20</span>. <a href="./7/3/2/1/28/?byte=20495" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>All's Well That Ends Well</span></i> : <span class='philologic_property' title='who'>Helena</span></a>
434
+
435
+ <span class='hit_n'>20.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./7?byte=20495' class='philologic_property' title='title'>All's Well That Ends Well</a> - <a href='./7/3?byte=20495'>Act 1</a> - <a href='./7/3/2?byte=20495'>Act 1, Scene 1</a></span>
295
436
  <div class='philologic_context'>
296
437
  The ambition in my love thus plagues itself:
297
438
 
298
439
 
299
- The hind that would be mated by the <span class="hilite">lion</span>
440
+ The hind that would be mated by the <span class="highlight">lion</span>
300
441
 
301
442
 
302
443
  Must die for love. 'Twas pretty, though a plague,
303
444
 
304
-
445
+ </div>
305
446
  </li>
306
-
307
447
  <li class='philologic_occurrence'>
308
- <span class="hit_n">21</span>. <a href="./7/5/3/1/43/?byte=232122" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>All's Well That Ends Well</span></i> : <span class='philologic_property' title='who'>Helena</span></a>
448
+
449
+ <span class='hit_n'>21.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./7?byte=232122' class='philologic_property' title='title'>All's Well That Ends Well</a> - <a href='./7/5?byte=232122'>Act 3</a> - <a href='./7/5/3?byte=232122'>Act 3, Scene 2</a></span>
309
450
  <div class='philologic_context'>
310
451
  His death was so effected: better 'twere
311
452
 
312
453
 
313
- I met the ravin <span class="hilite">lion</span> when he roared
454
+ I met the ravin <span class="highlight">lion</span> when he roared
314
455
 
315
456
 
316
457
  With sharp constraint of hunger; better 'twere
317
458
 
318
459
  </div>
319
460
  </li>
320
-
321
461
  <li class='philologic_occurrence'>
322
- <span class="hit_n">22</span>. <a href="./8/7/3/1/9/?byte=368482" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>As You Like It</span></i> : <span class='philologic_property' title='who'>Rosalind</span></a>
462
+
463
+ <span class='hit_n'>22.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./8?byte=368482' class='philologic_property' title='title'>As You Like It</a> - <a href='./8/7?byte=368482'>Act 5</a> - <a href='./8/7/3?byte=368482'>Act 5, Scene 2</a></span>
323
464
  <div class='philologic_context'>
324
465
  I thought thy heart had been wounded with the claws of
325
466
 
326
467
 
327
- a <span class="hilite">lion</span>.
468
+ a <span class="highlight">lion</span>.
328
469
 
329
470
 
330
471
 
331
472
  Orlando
332
473
 
333
- Wounded it is, but with t</div>
474
+ Wounded it is, but with</div>
334
475
  </li>
335
-
336
476
  <li class='philologic_occurrence'>
337
- <span class="hit_n">23</span>. <a href="./10/3/2/1/67/?byte=47096" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Coriolanus</span></i> : <span class='philologic_property' title='who'>Caius Marcius</span></a>
477
+
478
+ <span class='hit_n'>23.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./10?byte=47096' class='philologic_property' title='title'>Coriolanus</a> - <a href='./10/3?byte=47096'>Act 1</a> - <a href='./10/3/2?byte=47096'>Act 1, Scene 1</a></span>
338
479
  <div class='philologic_context'>
339
480
  Upon my party, I'ld revolt, to make
340
481
 
341
482
 
342
- Only my wars with him: he is a <span class="hilite">lion</span>
483
+ Only my wars with him: he is a <span class="highlight">lion</span>
343
484
 
344
485
 
345
486
  That I am proud to hunt.
346
487
 
347
488
 
348
489
 
349
- </div>
490
+ </div>
350
491
  </li>
351
-
352
492
  <li class='philologic_occurrence'>
353
- <span class="hit_n">24</span>. <a href="./13/4/4/1/26/?byte=112747" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life of King Henry the Fifth</span></i> : <span class='philologic_property' title='who'>King Henry</span></a>
493
+
494
+ <span class='hit_n'>24.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./13?byte=112747' class='philologic_property' title='title'>The Life of King Henry the Fifth</a> - <a href='./13/4?byte=112747'>Act 2</a> - <a href='./13/4/4?byte=112747'>Act 2, Scene 2</a></span>
354
495
  <div class='philologic_context'>
355
496
  If that same demon that hath gulled thee thus
356
497
 
357
498
 
358
- Should with his <span class="hilite">lion</span> gait walk the whole world,
499
+ Should with his <span class="highlight">lion</span> gait walk the whole world,
359
500
 
360
501
 
361
502
  He might return to vasty Tartar back,
362
503
 
363
504
  </div>
364
505
  </li>
365
-
366
506
  <li class='philologic_occurrence'>
367
- <span class="hit_n">25</span>. <a href="./13/5/9/1/71/?byte=260385" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life of King Henry the Fifth</span></i> : <span class='philologic_property' title='who'>Orleans</span></a>
507
+
508
+ <span class='hit_n'>25.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./13?byte=260385' class='philologic_property' title='title'>The Life of King Henry the Fifth</a> - <a href='./13/5?byte=260385'>Act 3</a> - <a href='./13/5/9?byte=260385'>Act 3, Scene 7</a></span>
368
509
  <div class='philologic_context'>
369
510
  valiant flea that dare eat his breakfast on the lip of
370
511
 
371
512
 
372
- a <span class="hilite">lion</span>.
513
+ a <span class="highlight">lion</span>.
373
514
 
374
515
 
375
516
 
@@ -377,14 +518,14 @@
377
518
 
378
519
  Just, just; and the </div>
379
520
  </li>
380
-
381
521
  <li class='philologic_occurrence'>
382
- <span class="hit_n">26</span>. <a href="./14/5/3/1/66/?byte=290276" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life of King Henry the Eighth</span></i> : <span class='philologic_property' title='who'>Wolsey</span></a>
522
+
523
+ <span class='hit_n'>26.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./14?byte=290276' class='philologic_property' title='title'>The Life of King Henry the Eighth</a> - <a href='./14/5?byte=290276'>Act 3</a> - <a href='./14/5/3?byte=290276'>Act 3, Scene 2</a></span>
383
524
  <div class='philologic_context'>
384
525
  He parted frowning from me, as if ruin
385
526
 
386
527
 
387
- Leaped from his eyes: so looks the chafed <span class="hilite">lion</span>
528
+ Leaped from his eyes: so looks the chafed <span class="highlight">lion</span>
388
529
 
389
530
 
390
531
  Upon the daring huntsman that has galled him;
@@ -392,14 +533,14 @@
392
533
 
393
534
  </div>
394
535
  </li>
395
-
396
536
  <li class='philologic_occurrence'>
397
- <span class="hit_n">27</span>. <a href="./15/3/4/1/5/?byte=71797" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Julius Caesar</span></i> : <span class='philologic_property' title='who'>Casca</span></a>
537
+
538
+ <span class='hit_n'>27.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./15?byte=71797' class='philologic_property' title='title'>Julius Caesar</a> - <a href='./15/3?byte=71797'>Act 1</a> - <a href='./15/3/4?byte=71797'>Act 1, Scene 3</a></span>
398
539
  <div class='philologic_context'>
399
540
  Besides — I ha' not since put up my sword
400
541
 
401
542
 
402
- Against the Capitol I met a <span class="hilite">lion</span>,
543
+ Against the Capitol I met a <span class="highlight">lion</span>,
403
544
 
404
545
 
405
546
  Who glazed upon me, and went surly by,
@@ -407,223 +548,218 @@
407
548
 
408
549
  </div>
409
550
  </li>
410
-
411
551
  <li class='philologic_occurrence'>
412
- <span class="hit_n">28</span>. <a href="./15/3/4/1/18/?byte=79944" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Julius Caesar</span></i> : <span class='philologic_property' title='who'>Cassius</span></a>
552
+
553
+ <span class='hit_n'>28.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./15?byte=79944' class='philologic_property' title='title'>Julius Caesar</a> - <a href='./15/3?byte=79944'>Act 1</a> - <a href='./15/3/4?byte=79944'>Act 1, Scene 3</a></span>
413
554
  <div class='philologic_context'>
414
555
  That thunders, lightens, opens graves, and roars
415
556
 
416
557
 
417
- As doth the <span class="hilite">lion</span> in the Capitol,
558
+ As doth the <span class="highlight">lion</span> in the Capitol,
418
559
 
419
560
 
420
561
  A man no mightier than thyself or me
421
562
 
422
563
  </div>
423
564
  </li>
424
-
425
565
  <li class='philologic_occurrence'>
426
- <span class="hit_n">29</span>. <a href="./15/3/4/1/24/?byte=84356" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Julius Caesar</span></i> : <span class='philologic_property' title='who'>Cassius</span></a>
427
- <div class='philologic_context'>
428
-
566
+
567
+ <span class='hit_n'>29.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./15?byte=84356' class='philologic_property' title='title'>Julius Caesar</a> - <a href='./15/3?byte=84356'>Act 1</a> - <a href='./15/3/4?byte=84356'>Act 1, Scene 3</a></span>
568
+ <div class='philologic_context'>
429
569
  But that he sees the Romans are but sheep
430
570
 
431
571
 
432
- He were no <span class="hilite">lion</span>, were not Romans hinds.
572
+ He were no <span class="highlight">lion</span>, were not Romans hinds.
433
573
 
434
574
 
435
575
  Those that with haste will make a mighty fire
436
576
 
437
577
  </div>
438
578
  </li>
439
-
440
579
  <li class='philologic_occurrence'>
441
- <span class="hit_n">30</span>. <a href="./16/3/2/1/61/?byte=45763" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Bastard</span></a>
442
- <div class='philologic_context'>
443
-
580
+
581
+ <span class='hit_n'>30.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=45763' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/3?byte=45763'>Act 1</a> - <a href='./16/3/2?byte=45763'>Act 1, Scene 1</a></span>
582
+ <div class='philologic_context'>
444
583
  Against whose fury and unmatched force
445
584
 
446
585
 
447
- The aweless <span class="hilite">lion</span> could not wage the fight,
586
+ The aweless <span class="highlight">lion</span> could not wage the fight,
448
587
 
449
588
 
450
589
  Nor keep his princely heart from Richard's hand.
451
590
 
452
591
  </div>
453
592
  </li>
454
-
455
593
  <li class='philologic_occurrence'>
456
- <span class="hit_n">31</span>. <a href="./16/4/2/1/2/?byte=47899" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Lewis</span></a>
594
+
595
+ <span class='hit_n'>31.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=47899' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/4?byte=47899'>Act 2</a> - <a href='./16/4/2?byte=47899'>Act 2, Scene 1</a></span>
457
596
  <div class='philologic_context'>
458
597
  Arthur, that great forerunner of thy blood,
459
598
 
460
599
 
461
- Richard, that robbed the <span class="hilite">lion</span> of his heart
600
+ Richard, that robbed the <span class="highlight">lion</span> of his heart
462
601
 
463
602
 
464
603
  And fought the holy wars in Palestine,
465
604
 
466
-
605
+ </div>
467
606
  </li>
468
-
469
607
  <li class='philologic_occurrence'>
470
- <span class="hit_n">32</span>. <a href="./16/4/2/1/30/?byte=67854" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Blanch</span></a>
608
+
609
+ <span class='hit_n'>32.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=67854' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/4?byte=67854'>Act 2</a> - <a href='./16/4/2?byte=67854'>Act 2, Scene 1</a></span>
471
610
  <div class='philologic_context'>
472
611
  O, well did he become that lion's robe
473
612
 
474
613
 
475
- That did disrobe the <span class="hilite">lion</span> of that robe!
614
+ That did disrobe the <span class="highlight">lion</span> of that robe!
476
615
 
477
616
 
478
617
 
479
618
  Bastard
480
619
 
481
- It l</div>
620
+ It</div>
482
621
  </li>
483
-
484
622
  <li class='philologic_occurrence'>
485
- <span class="hit_n">33</span>. <a href="./16/4/2/1/67/?byte=90589" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Bastard</span></a>
623
+
624
+ <span class='hit_n'>33.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=90589' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/4?byte=90589'>Act 2</a> - <a href='./16/4/2?byte=90589'>Act 2, Scene 1</a></span>
486
625
  <div class='philologic_context'>
487
626
 
488
627
 
489
628
  Bastard
490
629
 
491
- O, tremble, for you hear the <span class="hilite">lion</span> roar.
630
+ O, tremble, for you hear the <span class="highlight">lion</span> roar.
492
631
 
493
632
 
494
633
 
495
634
  King John
496
635
 
497
- Up higher to the plai</div>
636
+ Up higher to the</div>
498
637
  </li>
499
-
500
638
  <li class='philologic_occurrence'>
501
- <span class="hit_n">34</span>. <a href="./16/5/2/1/52/?byte=170811" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Pandulph</span></a>
639
+
640
+ <span class='hit_n'>34.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=170811' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/5?byte=170811'>Act 3</a> - <a href='./16/5/2?byte=170811'>Act 3, Scene 1</a></span>
502
641
  <div class='philologic_context'>
503
642
  France, thou mayst hold a serpent by the tongue,
504
643
 
505
644
 
506
- A cased <span class="hilite">lion</span> by the mortal paw,
645
+ A cased <span class="highlight">lion</span> by the mortal paw,
507
646
 
508
647
 
509
648
  A fasting tiger safer by the tooth,
510
649
 
511
650
  </div>
512
651
  </li>
513
-
514
652
  <li class='philologic_occurrence'>
515
- <span class="hit_n">35</span>. <a href="./16/7/2/1/11/?byte=317970" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Bastard</span></a>
653
+
654
+ <span class='hit_n'>35.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=317970' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/7?byte=317970'>Act 5</a> - <a href='./16/7/2?byte=317970'>Act 5, Scene 1</a></span>
516
655
  <div class='philologic_context'>
517
656
  Show boldness and aspiring confidence.
518
657
 
519
658
 
520
- What, shall they seek the <span class="hilite">lion</span> in his den,
659
+ What, shall they seek the <span class="highlight">lion</span> in his den,
521
660
 
522
661
 
523
662
  And fright him there? and make him tremble there?
524
663
 
525
664
  </div>
526
665
  </li>
527
-
528
666
  <li class='philologic_occurrence'>
529
- <span class="hit_n">36</span>. <a href="./16/7/3/1/5/?byte=330948" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Life and Death of King John</span></i> : <span class='philologic_property' title='who'>Pandulph</span></a>
530
- <div class='philologic_context'>
531
-
667
+
668
+ <span class='hit_n'>36.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./16?byte=330948' class='philologic_property' title='title'>The Life and Death of King John</a> - <a href='./16/7?byte=330948'>Act 5</a> - <a href='./16/7/3?byte=330948'>Act 5, Scene 2</a></span>
669
+ <div class='philologic_context'>
532
670
  And tame the savage spirit of wild war,
533
671
 
534
672
 
535
- That, like a <span class="hilite">lion</span> fostered up at hand,
673
+ That, like a <span class="highlight">lion</span> fostered up at hand,
536
674
 
537
675
 
538
676
  It may lie gently at the foot of peace,
539
677
 
540
678
  </div>
541
679
  </li>
542
-
543
680
  <li class='philologic_occurrence'>
544
- <span class="hit_n">37</span>. <a href="./17/5/2/1/5/?byte=252573" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>King Lear</span></i> : <span class='philologic_property' title='who'>Gentleman</span></a>
545
- <div class='philologic_context'>
546
-
681
+
682
+ <span class='hit_n'>37.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./17?byte=252573' class='philologic_property' title='title'>King Lear</a> - <a href='./17/5?byte=252573'>Act 3</a> - <a href='./17/5/2?byte=252573'>Act 3, Scene 1</a></span>
683
+ <div class='philologic_context'>
547
684
  This night, wherein the cub-drawn bear would couch,
548
685
 
549
686
 
550
- The <span class="hilite">lion</span> and the belly-pinched wolf
687
+ The <span class="highlight">lion</span> and the belly-pinched wolf
551
688
 
552
689
 
553
690
  Keep their fur dry, unbonneted he runs,
554
691
 
555
692
  </div>
556
693
  </li>
557
-
558
694
  <li class='philologic_occurrence'>
559
- <span class="hit_n">38</span>. <a href="./17/5/5/1/27/?byte=290819" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>King Lear</span></i> : <span class='philologic_property' title='who'>Edgar</span></a>
695
+
696
+ <span class='hit_n'>38.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./17?byte=290819' class='philologic_property' title='title'>King Lear</a> - <a href='./17/5?byte=290819'>Act 3</a> - <a href='./17/5/5?byte=290819'>Act 3, Scene 4</a></span>
560
697
  <div class='philologic_context'>
561
698
 
562
699
  in stealth, wolf in greediness, dog in madness,
563
700
 
564
701
 
565
- <span class="hilite">lion</span> in prey. Let not the creaking of shoes nor
702
+ <span class="highlight">lion</span> in prey. Let not the creaking of shoes nor
566
703
 
567
704
 
568
705
  the rustling of silks betray thy poor heart to
569
706
 
570
707
  </div>
571
708
  </li>
572
-
573
709
  <li class='philologic_occurrence'>
574
- <span class="hit_n">39</span>. <a href="./18/6/2/1/26/?byte=170862" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Love's Labour's Lost</span></i> : <span class='philologic_property' title='who'>Boyet</span></a>
710
+
711
+ <span class='hit_n'>39.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./18?byte=170862' class='philologic_property' title='title'>Love's Labour's Lost</a> - <a href='./18/6?byte=170862'>Act 4</a> - <a href='./18/6/2?byte=170862'>Act 4, Scene 1</a></span>
575
712
  <div class='philologic_context'>
576
713
 
577
714
  DE ARMADO.”
578
715
 
579
716
 
580
- Thus dost thou hear the Nemean <span class="hilite">lion</span> roar
717
+ Thus dost thou hear the Nemean <span class="highlight">lion</span> roar
581
718
 
582
719
 
583
720
  'Gainst thee, thou lamb, that standest as his prey.
584
721
 
585
722
  </div>
586
723
  </li>
587
-
588
724
  <li class='philologic_occurrence'>
589
- <span class="hit_n">40</span>. <a href="./18/7/3/1/272/?byte=390792" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Love's Labour's Lost</span></i> : <span class='philologic_property' title='who'>Costard</span></a>
725
+
726
+ <span class='hit_n'>40.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./18?byte=390792' class='philologic_property' title='title'>Love's Labour's Lost</a> - <a href='./18/7?byte=390792'>Act 5</a> - <a href='./18/7/3?byte=390792'>Act 5, Scene 2</a></span>
590
727
  <div class='philologic_context'>
591
728
  You will be scraped out of the painted cloth for
592
729
 
593
730
 
594
- this: your <span class="hilite">lion</span>, that holds his poll-axe sitting
731
+ this: your <span class="highlight">lion</span>, that holds his poll-axe sitting
595
732
 
596
733
 
597
734
  on a close-stool, will be given to Ajax: he will
598
735
 
599
736
  </div>
600
737
  </li>
601
-
602
738
  <li class='philologic_occurrence'>
603
- <span class="hit_n">41</span>. <a href="./18/7/3/1/300/?byte=398979" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Love's Labour's Lost</span></i> : <span class='philologic_property' title='who'>Berowne</span></a>
604
- <div class='philologic_context'>aced them all.
739
+
740
+ <span class='hit_n'>41.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./18?byte=398979' class='philologic_property' title='title'>Love's Labour's Lost</a> - <a href='./18/7?byte=398979'>Act 5</a> - <a href='./18/7/3?byte=398979'>Act 5, Scene 2</a></span>
741
+ <div class='philologic_context'>them all.
605
742
 
606
743
 
607
744
 
608
745
  Berowne
609
746
 
610
- An thou wert a <span class="hilite">lion</span>, we would do so.
747
+ An thou wert a <span class="highlight">lion</span>, we would do so.
611
748
 
612
749
 
613
750
 
614
751
  Boyet
615
752
 
616
- Therefore, a</div>
753
+ Therefore,</div>
617
754
  </li>
618
-
619
755
  <li class='philologic_occurrence'>
620
- <span class="hit_n">42</span>. <a href="./20/3/3/1/8/?byte=15889" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Macbeth</span></i> : <span class='philologic_property' title='who'>Sergeant</span></a>
621
- <div class='philologic_context'>geant
622
-
756
+
757
+ <span class='hit_n'>42.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./20?byte=15889' class='philologic_property' title='title'>Macbeth</a> - <a href='./20/3?byte=15889'>Act 1</a> - <a href='./20/3/3?byte=15889'>Act 1, Scene 2</a></span>
758
+ <div class='philologic_context'>
623
759
  Yes;
624
760
 
625
761
 
626
- As sparrows eagles, or the hare the <span class="hilite">lion</span>.
762
+ As sparrows eagles, or the hare the <span class="highlight">lion</span>.
627
763
 
628
764
 
629
765
  If I say sooth, I must report they were
@@ -631,57 +767,57 @@
631
767
 
632
768
  </div>
633
769
  </li>
634
-
635
770
  <li class='philologic_occurrence'>
636
- <span class="hit_n">43</span>. <a href="./21/3/2/1/7/?byte=9001" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Much Ado About Nothing</span></i> : <span class='philologic_property' title='who'>Messenger</span></a>
771
+
772
+ <span class='hit_n'>43.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./21?byte=9001' class='philologic_property' title='title'>Much Ado About Nothing</a> - <a href='./21/3?byte=9001'>Act 1</a> - <a href='./21/3/2?byte=9001'>Act 1, Scene 1</a></span>
637
773
  <div class='philologic_context'>
638
774
  promise of his age, doing, in the figure of a
639
775
 
640
776
 
641
- lamb, the feats of a <span class="hilite">lion</span>: he hath indeed better
777
+ lamb, the feats of a <span class="highlight">lion</span>: he hath indeed better
642
778
 
643
779
 
644
780
  bettered expectation than you must expect of me to
645
781
 
646
782
  </div>
647
783
  </li>
648
-
649
784
  <li class='philologic_occurrence'>
650
- <span class="hit_n">44</span>. <a href="./22/3/4/1/6/?byte=52687" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Measure for Measure</span></i> : <span class='philologic_property' title='who'>Vincentio</span></a>
785
+
786
+ <span class='hit_n'>44.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./22?byte=52687' class='philologic_property' title='title'>Measure for Measure</a> - <a href='./22/3?byte=52687'>Act 1</a> - <a href='./22/3/4?byte=52687'>Act 1, Scene 3</a></span>
651
787
  <div class='philologic_context'>
652
788
  Which for this fourteen years we have let slip;
653
789
 
654
790
 
655
- Even like an o'ergrown <span class="hilite">lion</span> in a cave,
791
+ Even like an o'ergrown <span class="highlight">lion</span> in a cave,
656
792
 
657
793
 
658
794
  That goes not out to prey. Now, as fond fathers,
659
795
 
660
796
  </div>
661
797
  </li>
662
-
663
798
  <li class='philologic_occurrence'>
664
- <span class="hit_n">45</span>. <a href="./23/4/2/1/4/?byte=83628" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Merchant of Venice</span></i> : <span class='philologic_property' title='who'>Morocco</span></a>
799
+
800
+ <span class='hit_n'>45.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./23?byte=83628' class='philologic_property' title='title'>The Merchant of Venice</a> - <a href='./23/4?byte=83628'>Act 2</a> - <a href='./23/4/2?byte=83628'>Act 2, Scene 1</a></span>
665
801
  <div class='philologic_context'>
666
802
  Pluck the young sucking cubs from the she-bear,
667
803
 
668
804
 
669
- Yea, mock the <span class="hilite">lion</span> when 'a roars for prey,
805
+ Yea, mock the <span class="highlight">lion</span> when 'a roars for prey,
670
806
 
671
807
 
672
808
  To win thee, lady. But, alas the while!
673
809
 
674
810
  </div>
675
811
  </li>
676
-
677
812
  <li class='philologic_occurrence'>
678
- <span class="hit_n">46</span>. <a href="./24/2/1/1/1/?byte=6825" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Midsummer Night's Dream</span></i> : <span class='philologic_property' title='who'></span></a>
813
+
814
+ <span class='hit_n'>46.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./24?byte=6825' class='philologic_property' title='title'>A Midsummer Night's Dream</a> - <a href='./24/2/1?byte=6825'>Dramatis Personae</a></span>
679
815
  <div class='philologic_context'>
680
816
 
681
817
  Thisbe
682
818
 
683
819
 
684
- <span class="hilite">Lion</span>
820
+ <span class="highlight">Lion</span>
685
821
 
686
822
 
687
823
  Wall
@@ -689,61 +825,60 @@
689
825
 
690
826
  </div>
691
827
  </li>
692
-
693
828
  <li class='philologic_occurrence'>
694
- <span class="hit_n">47</span>. <a href="./24/3/3/1/31/?byte=53815" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Midsummer Night's Dream</span></i> : <span class='philologic_property' title='who'>Bottom</span></a>
829
+
830
+ <span class='hit_n'>47.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./24?byte=53815' class='philologic_property' title='title'>A Midsummer Night's Dream</a> - <a href='./24/3?byte=53815'>Act 1</a> - <a href='./24/3/3?byte=53815'>Act 1, Scene 2</a></span>
695
831
  <div class='philologic_context'> roaring.
696
832
 
697
833
 
698
834
 
699
835
  Bottom
700
836
 
701
- Let me play the <span class="hilite">lion</span> too: I will roar, that I
837
+ Let me play the <span class="highlight">lion</span> too: I will roar, that I
702
838
 
703
839
 
704
840
  will do any man's heart good to hear me; I will
705
841
 
706
842
  </div>
707
843
  </li>
708
-
709
844
  <li class='philologic_occurrence'>
710
- <span class="hit_n">48</span>. <a href="./24/4/2/1/24/?byte=84314" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Midsummer Night's Dream</span></i> : <span class='philologic_property' title='who'>Oberon</span></a>
711
- <div class='philologic_context'>
712
-
845
+
846
+ <span class='hit_n'>48.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./24?byte=84314' class='philologic_property' title='title'>A Midsummer Night's Dream</a> - <a href='./24/4?byte=84314'>Act 2</a> - <a href='./24/4/2?byte=84314'>Act 2, Scene 1</a></span>
847
+ <div class='philologic_context'>
713
848
  The next thing then she waking looks upon,
714
849
 
715
850
 
716
- Be it on <span class="hilite">lion</span>, bear, or wolf, or bull,
851
+ Be it on <span class="highlight">lion</span>, bear, or wolf, or bull,
717
852
 
718
853
 
719
854
  On meddling monkey, or on busy ape,
720
855
 
721
856
  </div>
722
857
  </li>
723
-
724
858
  <li class='philologic_occurrence'>
725
- <span class="hit_n">49</span>. <a href="./24/5/2/1/12/?byte=123482" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Midsummer Night's Dream</span></i> : <span class='philologic_property' title='who'>Snout</span></a>
859
+
860
+ <span class='hit_n'>49.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./24?byte=123482' class='philologic_property' title='title'>A Midsummer Night's Dream</a> - <a href='./24/5?byte=123482'>Act 3</a> - <a href='./24/5/2?byte=123482'>Act 3, Scene 1</a></span>
726
861
  <div class='philologic_context'>
727
862
 
728
863
 
729
864
  Snout
730
865
 
731
- Will not the ladies be afeard of the <span class="hilite">lion</span>?
866
+ Will not the ladies be afeard of the <span class="highlight">lion</span>?
732
867
 
733
868
 
734
869
 
735
870
  Starveling
736
871
 
737
- I fear it, I promi</div>
872
+ I fear it, I</div>
738
873
  </li>
739
-
740
874
  <li class='philologic_occurrence'>
741
- <span class="hit_n">50</span>. <a href="./24/5/2/1/14/?byte=124024" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Midsummer Night's Dream</span></i> : <span class='philologic_property' title='who'>Bottom</span></a>
875
+
876
+ <span class='hit_n'>50.</span> <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span> <a href='./24?byte=124024' class='philologic_property' title='title'>A Midsummer Night's Dream</a> - <a href='./24/5?byte=124024'>Act 3</a> - <a href='./24/5/2?byte=124024'>Act 3, Scene 1</a></span>
742
877
  <div class='philologic_context'>
743
878
  Masters, you ought to consider with yourselves:
744
879
 
745
880
 
746
- to bring in — God shield us! — a <span class="hilite">lion</span> among ladies
881
+ to bring in — God shield us! — a <span class="highlight">lion</span> among ladies
747
882
 
748
883
 
749
884
  is a most dreadful thing; for there is not a more
@@ -752,7 +887,31 @@
752
887
  </li>
753
888
  </ol>
754
889
  <div class="more">
755
-
756
- <a href="./?q=lion&start=-49" class="prev"> Back </a> <a href="./?q=lion&start=51&end=100" class="next"> Next </a>
890
+
891
+ <a href="./?q=lion&method=proxy&report=concordance&start=51&end=100&results_per_page=50" class="next"> Next </a>
892
+ <div style='clear:both;'></div>
757
893
  </div>
758
894
  </div>
895
+ </div>
896
+ </div>
897
+ <div id="footer">
898
+ <div class="bottom-border">
899
+ <div class="region-content">
900
+ <div class="footer-nav" style="float:left;">
901
+ <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>
902
+ <li class="menu-139"><a href="/content/subscription-information-0" title="Information concerning ARTFL Subscription">subscription info</a></li>
903
+ <li class="menu-140"><a href="/content/whats-new-artfl" title="New Developments at the ARTFL Project">what&#039;s new</a></li>
904
+ <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>
905
+ <li class="menu-197 last"><a href="/content/contact-us" title="Contact information for the ARTFL Project">contact us</a></li>
906
+ </ul>
907
+ <br />
908
+ <br />
909
+ <img src="http://humanities.uchicago.edu/images/wordmarks/hum-wordmark-black-small.png" style="display:block;margin-left:-5px;" />
910
+ </div>
911
+ <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>
912
+ </div>
913
+ </div>
914
+ </div> <!-- /footer -->
915
+ </div> <!-- /container -->
916
+ </body>
917
+ </html>