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,5 +1,9 @@
1
1
  = Philologic::Client History
2
2
 
3
+ == 2012-11-20 Philogic::Client v0.2.0
4
+
5
+ * Full Philologic v4 specification support
6
+
3
7
  == 2012-03-30 v0.0.13
4
8
 
5
9
  * Supports all of the Philologic v4 specification except collocation tables
@@ -1,5 +1,4 @@
1
- ---Concordance Report: returned by fulltext searches---
2
-
1
+ ---Concordance Report: returned by fulltext searches---
3
2
  <div class='philologic_response'>
4
3
  <ol class='philologic_concordance'>
5
4
  <li class='philologic_occurrence'>
@@ -20,25 +19,24 @@
20
19
 
21
20
 
22
21
  ---Bibliography Report: returned by metadata-only---
23
-
24
22
  <div class='philologic_response'>
25
23
  <ol class='philologic_cite_list'>
26
24
  <li class='philologic_occurrence'>
27
25
  <span class='hit_n'> {hit_number} </span>
28
- <div class='philologic_cite'>
26
+ <span class='philologic_cite'>
29
27
  <a href='{link_to_cited_object}'>
30
28
  <span class='philologic_property' title="{key}">{value}</span>
31
29
  {more properties}
32
30
  </a>
33
31
  {possibly multiple links with their own properties--page images, etc.}
34
- </div>
32
+ </span>
35
33
  </li>
36
34
  {probably many occurrences}
37
35
  </ol>
38
36
  </div>
39
37
 
40
38
 
41
- ---Frequency Table: returned by frequency and collocation reports---
39
+ ---Frequency Table: returned by frequency report---
42
40
  <div class='philologic_response'>
43
41
  <table class='philologic_table'>
44
42
  <tr class='freq_header_row'>
@@ -56,8 +54,33 @@
56
54
  </div>
57
55
 
58
56
 
59
- ---Object Viewer: returned by div and paragraph object access---
57
+ ---Collocation Table: returned by collocation report---
58
+ <div class='philologic_response'>
59
+ <table class='philologic_table'>
60
+ <tr class='colloc_header_row'>
61
+ <th class='colloc_both_header'>within j words on either side</th>
62
+ <th class='colloc_left_header'>within k words to left</th>
63
+ <th class='colloc_right_header'>within l words to right</th>
64
+ </tr>
65
+
66
+ <tr class='colloc_row'>
67
+ <td class='colloc_both_value'>
68
+ <span class='colloc_label'>[label]</span>
69
+ (<span class='colloc_value'>[value]</span>)
70
+ </td>
71
+ <td class='colloc_left_value'>
72
+ <a class='colloc_label' href="${href_left}">[label]</a>
73
+ (<span clas='colloc_value'>[value]</span>)
74
+ </td>
75
+ <td class='colloc_right_value'>
76
+ <a class='colloc_label' href="${href_right}">[label]</a>
77
+ (<span_class='colloc_value'>[value]</span>)</td>
78
+ </tr>
79
+ </table>
80
+ </div>
81
+
60
82
 
83
+ ---Object Viewer: returned by div and paragraph object access---
61
84
  <div class='philologic_response'>
62
85
  <div class=’philologic_cite’>
63
86
  <span class='philologic_property' title="{key}">{value}</span>
@@ -72,7 +95,6 @@
72
95
 
73
96
 
74
97
  ---Object Navigation: returned by document objects, links to children---
75
-
76
98
  <div class='philologic_response'>
77
99
  <div class=’philologic_cite’>
78
100
  <span class='philologic_property' title="{key}">{value}</span>
@@ -48,6 +48,18 @@
48
48
  doc.each { |p| puts "%s\t%s" % [ p, doc[p] ] }
49
49
 
50
50
 
51
+ # Collocation search
52
+ # Returns Philologic::Client::Collocation object
53
+ q = client.collocation('lion')
54
+
55
+ # Get results if present.
56
+ if q.results?
57
+ q.results.each do |result|
58
+ # +result+ is a Philologic::Client::CollocationRow object
59
+ end
60
+ end
61
+
62
+
51
63
  # Concordance search
52
64
  # Returns Philologic::Client::Concordance object
53
65
  q = client.concordance('lion')
@@ -71,10 +83,6 @@
71
83
  end
72
84
  end
73
85
 
74
-
75
- # Collocation search
76
- # TODO - Pending implementation update
77
-
78
86
  end
79
87
 
80
88
  == Author
data/Rakefile CHANGED
@@ -27,16 +27,16 @@ task :update_test_data do
27
27
  require 'net/http'
28
28
  require 'uri'
29
29
 
30
- endpoint = 'http://pantagruel.ci.uchicago.edu/philo4/shakespeare/dispatcher.py'
30
+ endpoint = 'http://lafayette.uchicago.edu/philo4/shakespeare_bamboo/dispatcher.py/'
31
31
  test_data_dir = File.join( File.dirname(__FILE__), 'test', 'data' )
32
32
  test_data_ext = '.html'
33
33
  {
34
- '?title=' => 'bibliography',
35
- '?q=lion&report=frequency&field=collocates' => 'collocation',
36
- '?q=lion' => 'concordance',
37
- '?q=lion&report=frequency' => 'frequency',
38
- '1' => 'navigation',
39
- '1/1' => 'object'
34
+ '?method=proxy&q=' => 'bibliography',
35
+ '?method=proxy&q=lion&report=collocation' => 'collocation',
36
+ '?method=proxy&q=lion&report=concordance' => 'concordance',
37
+ '?method=proxy&q=lion&report=frequency' => 'frequency',
38
+ '1' => 'navigation',
39
+ '1/1' => 'object'
40
40
  }.each_pair do |request, file|
41
41
  fn = "#{test_data_dir}/#{file}#{test_data_ext}"
42
42
  uri = URI.parse( "#{endpoint}/#{request}" )
@@ -66,6 +66,18 @@ require 'philologic-client/occurrence'
66
66
  # doc.each { |p| puts "%s\t%s" % [ p, doc[p] ] }
67
67
  #
68
68
  #
69
+ # # Collocation search
70
+ # # Returns Philologic::Client::Collocation object
71
+ # q = client.collocation('lion')
72
+ #
73
+ # # Get results if present.
74
+ # if q.results?
75
+ # q.results.each do |result|
76
+ # # +result+ is a Philologic::Client::CollocationRow object
77
+ # end
78
+ # end
79
+ #
80
+ #
69
81
  # # Concordance search
70
82
  # # Returns Philologic::Client::Concordance object
71
83
  # q = client.concordance('lion')
@@ -89,10 +101,6 @@ require 'philologic-client/occurrence'
89
101
  # end
90
102
  # end
91
103
  #
92
- #
93
- # # Collocation search
94
- # # TODO - Pending implementation update
95
- #
96
104
  # end
97
105
  #
98
106
  # == Author
@@ -152,19 +160,32 @@ module Philologic # :nodoc:
152
160
  # Returns Philologic::Client::Bibliography object or +nil+
153
161
  #
154
162
  def bibliography
155
- result = _query( 'title' => '' )
163
+ result = _query( 'method' => 'proxy', 'q' => '' )
156
164
  return result.kind_of?(Philologic::Client::Bibliography) ? result : nil
157
165
  end
158
166
 
159
167
  #
160
- # Return Philologic::Client::Concordance objet or +nil+.
168
+ # Return Philologic::Client::Collocation object or +nil+.
169
+ #
170
+ # Params:
171
+ # +query+:: Search for this +query+ string.
172
+ #
173
+ def collocation(query)
174
+ raise('nil query') if ( query.nil? || !( [ Hash, String ].include?( query.class ) )) || query.empty?
175
+ defaults = { :method => 'proxy', :report => 'collocation' }
176
+ r = _query( query.kind_of?(String) ? defaults.merge( :q => query ) : defaults.merge(query) )
177
+ return r.kind_of?(Philologic::Client::Collocation) ? r : nil
178
+ end
179
+
180
+ #
181
+ # Return Philologic::Client::Concordance object or +nil+.
161
182
  #
162
183
  # Params:
163
184
  # +query+:: Search for this +query+ string.
164
185
  #
165
186
  def concordance(query)
166
187
  raise('nil query') if ( query.nil? || !( [ Hash, String ].include?( query.class ) )) || query.empty?
167
- defaults = {}
188
+ defaults = { :method => 'proxy', :report => 'concordance' }
168
189
  r = _query( query.kind_of?(String) ? defaults.merge( :q => query ) : defaults.merge(query) )
169
190
  return r.kind_of?(Philologic::Client::Concordance) ? r : nil
170
191
  end
@@ -181,14 +202,14 @@ module Philologic # :nodoc:
181
202
  end
182
203
 
183
204
  #
184
- # Return Philologic::Client::Frequency objet or +nil+.
205
+ # Return Philologic::Client::Frequency object or +nil+.
185
206
  #
186
207
  # Params:
187
208
  # +query+:: Search for this +query+ string.
188
209
  #
189
210
  def frequency(query)
190
211
  raise('nil query') if ( query.nil? || !( [ Hash, String ].include?( query.class ) )) || query.empty?
191
- defaults = { :report => 'frequency' }
212
+ defaults = { :method => 'proxy', :report => 'frequency' }
192
213
  r = _query( query.kind_of?(String) ? defaults.merge( :q => query ) : defaults.merge(query) )
193
214
  return r.kind_of?(Philologic::Client::Frequency) ? r : nil
194
215
  end
@@ -201,7 +222,7 @@ module Philologic # :nodoc:
201
222
  #
202
223
  def _build_query(pairs)
203
224
  raise('no query specified') if pairs.nil? || !pairs.kind_of?(Hash) || pairs.empty?
204
- "?" + pairs.sort.map { |k,v| "#{k}=#{v}" }.join('&')
225
+ "?" + pairs.sort_by { |ary| ary.first.to_s }.map { |k,v| "#{k}=#{v}" }.join('&')
205
226
  end
206
227
 
207
228
  #
@@ -223,6 +244,8 @@ module Philologic # :nodoc:
223
244
 
224
245
  if doc.css('ol.philologic_cite_list').first
225
246
  return Philologic::Client::Bibliography.new(doc)
247
+ elsif doc.css('table.philologic_table tr.colloc_header_row').first
248
+ return Philologic::Client::Collocation.new(doc)
226
249
  elsif doc.css('ol.philologic_concordance').first
227
250
  return Philologic::Client::Concordance.new(doc)
228
251
  elsif doc.css('div.philologic_navigation').first
@@ -24,27 +24,7 @@ module Philologic # :nodoc:
24
24
  def initialize(document, client = nil)
25
25
  super
26
26
 
27
- #@results = []
28
- #table = @doc.css('table.philologic_table').first
29
- #unless table.nil?
30
- # #@results = table.css('tr').select { |tr| tr.css('tr > td') }.collect { |tr| tr }
31
- # @results = table.css('tr').collect { |tr| tr }
32
- #end
33
- @results = @doc.css('tr').collect { |tr| tr } # XXX
34
- # <tr>
35
- # <td>
36
- # <tr><td width="25%">bear (8)</td><td width="25%">bear (5)</td><td width="25%">prey
37
- # (5)</td></tr>
38
- #
39
- # </td>
40
- # </tr>
41
- # header = @doc.css('table.philologic_table > tr.freq_header_row').first
42
- # unless header.nil?
43
- # @label_header = header.css('th.freq_label_header').first.text
44
- # @value_header = header.css('th.freq_value_header').first.text
45
- # end
46
- #
47
- # @results = @doc.css('tr.freq_row').collect { |tr| Philologic::Client::CollocationRow.new(tr) }
27
+ @results = @doc.css('tr.colloc_row').collect { |tr| Row.new(tr) }
48
28
  end
49
29
 
50
30
  #
@@ -54,8 +34,53 @@ module Philologic # :nodoc:
54
34
  @results.size > 0 ? true : false
55
35
  end
56
36
 
37
+
38
+ #
39
+ # Row within a collocation table.
40
+ #
41
+ class Row # TODO Should we extend anything?
42
+
43
+ #
44
+ # Get value or +0+
45
+ #
46
+ attr_reader :value
47
+ #
48
+ # Get word or +nil+
49
+ #
50
+ attr_reader :word
51
+ #
52
+ # Get value or +0+
53
+ #
54
+ attr_reader :left_value
55
+ #
56
+ # Get left word or +nil+
57
+ #
58
+ attr_reader :left_word
59
+ #
60
+ # Get value or +0+
61
+ #
62
+ attr_reader :right_value
63
+ #
64
+ # Get right word or +nil+
65
+ #
66
+ attr_reader :right_word
67
+
68
+ def initialize(document = nil)
69
+ both = document.css('td.colloc_both_value').first
70
+ @word = both.css('span.colloc_label').text
71
+ @value = both.css('span.colloc_value').text.to_i
72
+ left = document.css('td.colloc_left_value').first
73
+ @left_word = left.css('a.colloc_label').text
74
+ @left_value = left.css('span.colloc_value').text.to_i
75
+ right= document.css('td.colloc_right_value').first
76
+ @right_word = right.css('a.colloc_label').text
77
+ @right_value = right.css('span.colloc_value').text.to_i
78
+ end
79
+
80
+ end
81
+
57
82
  end
58
83
 
59
- end # class Client
60
- end # module Philologic
84
+ end
85
+ end
61
86
 
@@ -39,7 +39,7 @@ module Philologic # :nodoc:
39
39
  end
40
40
 
41
41
  @links = []
42
- @doc.css('div.philologic_navigation > a').each do |a|
42
+ @doc.css('div.philologic_navigation a').each do |a|
43
43
  @links << ::Philologic::Client::Link.new( a.attributes['href'].value, a.text.strip )
44
44
  end
45
45
  end
@@ -48,20 +48,21 @@ module Philologic # :nodoc:
48
48
  def initialize(document, client = nil)
49
49
  super
50
50
 
51
- @doc.css('a').each do |a|
51
+
52
+ # XXX @doc.css('a').each do |a|
53
+ @doc.css('a[title=title]').each do |a|
52
54
  @properties['href'] = a.attributes['href'].children.text
55
+ @properties['title'] = a.children.text
53
56
  end
57
+
54
58
  @doc.css('span.hit_n').each do |span|
55
59
  @properties['hit_n'] = span.children.text.to_i
56
60
  end
57
- @doc.css('span.philologic_cite').each do |cite|
58
- @properties[ cite.attributes['title'].value ] = cite.children.text
59
- end
60
61
 
61
62
  @html = @text = nil
62
63
  unless @doc.css('div.philologic_context').first.nil?
63
- @text = @doc.css('div.philologic_context').children.text
64
- @html = @doc.css('div.philologic_context').children.to_html
64
+ @text = @doc.css('div.philologic_context').children.text.rstrip
65
+ @html = @doc.css('div.philologic_context').children.to_html.rstrip
65
66
  end
66
67
  end
67
68
 
@@ -5,6 +5,6 @@ module Philologic
5
5
  #
6
6
  # Philologic::Client version
7
7
  #
8
- VERSION = '0.0.13'
8
+ VERSION = '0.2.0'
9
9
  end
10
10
  end
@@ -1,182 +1,444 @@
1
+ <html>
1
2
  <head>
2
- <title>shakespeare</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'>
144
+ <div class='form_body'>
145
+ <form action="./" style='width:600px; margin-left:100px; margin-right: auto;'>
146
+ <table>
147
+ <tr><td>Query Terms:</td><td><input type='text' name='q' id='q'></input></td></tr>
148
+ <tr><td><select name='query_method'>
149
+ <option value='proxy'>Within</option>
150
+ <option value='phrase'>Exactly</option>
151
+ </select></td><td>
152
+ <input type='text' name='query_arg'></input> words.</td></tr>
153
+ <tr><td>Report Generator:</td><td><select name='report' id="report" onchange="showHide(this.value);">
154
+ <option value='concordance' selected="selected">Concordance</option>
155
+ <option value='relevance'>Ranked relevance</option>
156
+ <option value='kwic'>KWIC</option>
157
+ <option value='collocation'>Collocation</option>
158
+ <option value='frequency'>Frequency Table</option>
159
+ <option value='theme_rheme'>Theme Rheme</option></select></td></tr>
160
+
161
+ <tr id="collocation"><td>Within </td><td><select name='word_num'>
162
+ <option value='1'>1</option>
163
+ <option value='2'>2</option>
164
+ <option value='3'>3</option>
165
+ <option value='4'>4</option>
166
+ <option value='5' selected="selected">5</option>
167
+ <option value='6'>6</option>
168
+ <option value='7'>7</option>
169
+ <option value='8'>8</option>
170
+ <option value='9'>9</option>
171
+ <option value='10'>10</option>
172
+ </select> words</td></tr>
173
+
174
+ <tr id="frequency"><td>Frequency by:</td><td><select name='field'>
175
+ <option value='author'>author</option>
176
+ <option value='title'>title</option>
177
+ <option value='date'>date</option>
178
+ <option value='volume'>volume</option>
179
+ <option value='id'>id</option>
180
+ <option value='head'>head</option>
181
+ <option value='n'>n</option>
182
+ <option value='who'>who</option>
183
+ <input type="radio" name="rate" value="raw" checked/>Normal</input>
184
+ <input type="radio" name="rate" value="relative"/>per 10,000</input>
185
+ </td></tr>
186
+
187
+ <tr id="theme_rheme"><td>Word position:</td><td><select name='theme_rheme'>
188
+ <option value="front">Front of clause</option>
189
+ <option value="end">End of clause</option>
190
+ <option value="front_end">Front and end only</option>
191
+ <option value="front_middle_end">Front, middle and end</option>
192
+ <option value="full">Full report</option>
193
+ </select></td></tr>
194
+
195
+ <tr id="results_per_page"><td>Results per page:</td><td><select name='results_per_page'>
196
+ <option value='20' selected="selected">20</option>
197
+ <option value='50'>50</option>
198
+ <option value='100'>100</option></select></td></tr>
199
+ <tr><td><input type='submit'/></td></tr>
200
+ </table>
201
+ </div>
202
+ <div class='philologic_response' style="padding-left: 60px;">
8
203
  <p class='description'>Bibliography Report: 42 results.</p>
204
+ <div class='bibliographic_results'>
9
205
  <ol class='philologic_cite_list'>
206
+
10
207
 
11
- <li class='philologic_occurrence'>
12
- <a href="./1/0/0/0/0" 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'></span></a>
208
+ <li class='philologic_occurrence' style='list-style-type:none'>
209
+ <span class='hit_n'>1</span>. <input type="checkbox" name="philo_id" value="(1, 0, 0, 0, 0, 0, 0)">
210
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./1?'>The First Part of King Henry the Fourth</a></i> []</span>
13
211
  </li>
14
212
 
15
- <li class='philologic_occurrence'>
16
- <a href="./2/0/0/0/0" 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'></span></a>
213
+ <li class='philologic_occurrence' style='list-style-type:none'>
214
+ <span class='hit_n'>2</span>. <input type="checkbox" name="philo_id" value="(2, 0, 0, 0, 0, 0, 0)">
215
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./2?'>The First Part of King Henry the Sixth</a></i> []</span>
17
216
  </li>
18
217
 
19
- <li class='philologic_occurrence'>
20
- <a href="./3/0/0/0/0" 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'></span></a>
218
+ <li class='philologic_occurrence' style='list-style-type:none'>
219
+ <span class='hit_n'>3</span>. <input type="checkbox" name="philo_id" value="(3, 0, 0, 0, 0, 0, 0)">
220
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./3?'>The Second Part of King Henry the Fourth</a></i> []</span>
21
221
  </li>
22
222
 
23
- <li class='philologic_occurrence'>
24
- <a href="./4/0/0/0/0" 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'></span></a>
223
+ <li class='philologic_occurrence' style='list-style-type:none'>
224
+ <span class='hit_n'>4</span>. <input type="checkbox" name="philo_id" value="(4, 0, 0, 0, 0, 0, 0)">
225
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./4?'>The Second Part of King Henry the Sixth</a></i> []</span>
25
226
  </li>
26
227
 
27
- <li class='philologic_occurrence'>
28
- <a href="./5/0/0/0/0" 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'></span></a>
228
+ <li class='philologic_occurrence' style='list-style-type:none'>
229
+ <span class='hit_n'>5</span>. <input type="checkbox" name="philo_id" value="(5, 0, 0, 0, 0, 0, 0)">
230
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./5?'>The Third Part of King Henry the Sixth</a></i> []</span>
29
231
  </li>
30
232
 
31
- <li class='philologic_occurrence'>
32
- <a href="./6/0/0/0/0" 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'></span></a>
233
+ <li class='philologic_occurrence' style='list-style-type:none'>
234
+ <span class='hit_n'>6</span>. <input type="checkbox" name="philo_id" value="(6, 0, 0, 0, 0, 0, 0)">
235
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./6?'>Antony and Cleopatra</a></i> []</span>
33
236
  </li>
34
237
 
35
- <li class='philologic_occurrence'>
36
- <a href="./7/0/0/0/0" 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'></span></a>
238
+ <li class='philologic_occurrence' style='list-style-type:none'>
239
+ <span class='hit_n'>7</span>. <input type="checkbox" name="philo_id" value="(7, 0, 0, 0, 0, 0, 0)">
240
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./7?'>All's Well That Ends Well</a></i> []</span>
37
241
  </li>
38
242
 
39
- <li class='philologic_occurrence'>
40
- <a href="./8/0/0/0/0" 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'></span></a>
243
+ <li class='philologic_occurrence' style='list-style-type:none'>
244
+ <span class='hit_n'>8</span>. <input type="checkbox" name="philo_id" value="(8, 0, 0, 0, 0, 0, 0)">
245
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./8?'>As You Like It</a></i> []</span>
41
246
  </li>
42
247
 
43
- <li class='philologic_occurrence'>
44
- <a href="./9/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Comedy of Errors</span></i> : <span class='philologic_property' title='who'></span></a>
248
+ <li class='philologic_occurrence' style='list-style-type:none'>
249
+ <span class='hit_n'>9</span>. <input type="checkbox" name="philo_id" value="(9, 0, 0, 0, 0, 0, 0)">
250
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./9?'>The Comedy of Errors</a></i> []</span>
45
251
  </li>
46
252
 
47
- <li class='philologic_occurrence'>
48
- <a href="./10/0/0/0/0" 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'></span></a>
253
+ <li class='philologic_occurrence' style='list-style-type:none'>
254
+ <span class='hit_n'>10</span>. <input type="checkbox" name="philo_id" value="(10, 0, 0, 0, 0, 0, 0)">
255
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./10?'>Coriolanus</a></i> []</span>
49
256
  </li>
50
257
 
51
- <li class='philologic_occurrence'>
52
- <a href="./11/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Cymbeline</span></i> : <span class='philologic_property' title='who'></span></a>
258
+ <li class='philologic_occurrence' style='list-style-type:none'>
259
+ <span class='hit_n'>11</span>. <input type="checkbox" name="philo_id" value="(11, 0, 0, 0, 0, 0, 0)">
260
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./11?'>Cymbeline</a></i> []</span>
53
261
  </li>
54
262
 
55
- <li class='philologic_occurrence'>
56
- <a href="./12/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Hamlet, Prince of Denmark</span></i> : <span class='philologic_property' title='who'></span></a>
263
+ <li class='philologic_occurrence' style='list-style-type:none'>
264
+ <span class='hit_n'>12</span>. <input type="checkbox" name="philo_id" value="(12, 0, 0, 0, 0, 0, 0)">
265
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./12?'>Hamlet, Prince of Denmark</a></i> []</span>
57
266
  </li>
58
267
 
59
- <li class='philologic_occurrence'>
60
- <a href="./13/0/0/0/0" 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'></span></a>
268
+ <li class='philologic_occurrence' style='list-style-type:none'>
269
+ <span class='hit_n'>13</span>. <input type="checkbox" name="philo_id" value="(13, 0, 0, 0, 0, 0, 0)">
270
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./13?'>The Life of King Henry the Fifth</a></i> []</span>
61
271
  </li>
62
272
 
63
- <li class='philologic_occurrence'>
64
- <a href="./14/0/0/0/0" 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'></span></a>
273
+ <li class='philologic_occurrence' style='list-style-type:none'>
274
+ <span class='hit_n'>14</span>. <input type="checkbox" name="philo_id" value="(14, 0, 0, 0, 0, 0, 0)">
275
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./14?'>The Life of King Henry the Eighth</a></i> []</span>
65
276
  </li>
66
277
 
67
- <li class='philologic_occurrence'>
68
- <a href="./15/0/0/0/0" 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'></span></a>
278
+ <li class='philologic_occurrence' style='list-style-type:none'>
279
+ <span class='hit_n'>15</span>. <input type="checkbox" name="philo_id" value="(15, 0, 0, 0, 0, 0, 0)">
280
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./15?'>Julius Caesar</a></i> []</span>
69
281
  </li>
70
282
 
71
- <li class='philologic_occurrence'>
72
- <a href="./16/0/0/0/0" 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'></span></a>
283
+ <li class='philologic_occurrence' style='list-style-type:none'>
284
+ <span class='hit_n'>16</span>. <input type="checkbox" name="philo_id" value="(16, 0, 0, 0, 0, 0, 0)">
285
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./16?'>The Life and Death of King John</a></i> []</span>
73
286
  </li>
74
287
 
75
- <li class='philologic_occurrence'>
76
- <a href="./17/0/0/0/0" 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'></span></a>
288
+ <li class='philologic_occurrence' style='list-style-type:none'>
289
+ <span class='hit_n'>17</span>. <input type="checkbox" name="philo_id" value="(17, 0, 0, 0, 0, 0, 0)">
290
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./17?'>King Lear</a></i> []</span>
77
291
  </li>
78
292
 
79
- <li class='philologic_occurrence'>
80
- <a href="./18/0/0/0/0" 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'></span></a>
293
+ <li class='philologic_occurrence' style='list-style-type:none'>
294
+ <span class='hit_n'>18</span>. <input type="checkbox" name="philo_id" value="(18, 0, 0, 0, 0, 0, 0)">
295
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./18?'>Love's Labour's Lost</a></i> []</span>
81
296
  </li>
82
297
 
83
- <li class='philologic_occurrence'>
84
- <a href="./19/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>A Lover's Complaint</span></i> : <span class='philologic_property' title='who'></span></a>
298
+ <li class='philologic_occurrence' style='list-style-type:none'>
299
+ <span class='hit_n'>19</span>. <input type="checkbox" name="philo_id" value="(19, 0, 0, 0, 0, 0, 0)">
300
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./19?'>A Lover's Complaint</a></i> []</span>
85
301
  </li>
86
302
 
87
- <li class='philologic_occurrence'>
88
- <a href="./20/0/0/0/0" 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'></span></a>
303
+ <li class='philologic_occurrence' style='list-style-type:none'>
304
+ <span class='hit_n'>20</span>. <input type="checkbox" name="philo_id" value="(20, 0, 0, 0, 0, 0, 0)">
305
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./20?'>Macbeth</a></i> []</span>
89
306
  </li>
90
307
 
91
- <li class='philologic_occurrence'>
92
- <a href="./21/0/0/0/0" 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'></span></a>
308
+ <li class='philologic_occurrence' style='list-style-type:none'>
309
+ <span class='hit_n'>21</span>. <input type="checkbox" name="philo_id" value="(21, 0, 0, 0, 0, 0, 0)">
310
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./21?'>Much Ado About Nothing</a></i> []</span>
93
311
  </li>
94
312
 
95
- <li class='philologic_occurrence'>
96
- <a href="./22/0/0/0/0" 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'></span></a>
313
+ <li class='philologic_occurrence' style='list-style-type:none'>
314
+ <span class='hit_n'>22</span>. <input type="checkbox" name="philo_id" value="(22, 0, 0, 0, 0, 0, 0)">
315
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./22?'>Measure for Measure</a></i> []</span>
97
316
  </li>
98
317
 
99
- <li class='philologic_occurrence'>
100
- <a href="./23/0/0/0/0" 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'></span></a>
318
+ <li class='philologic_occurrence' style='list-style-type:none'>
319
+ <span class='hit_n'>23</span>. <input type="checkbox" name="philo_id" value="(23, 0, 0, 0, 0, 0, 0)">
320
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./23?'>The Merchant of Venice</a></i> []</span>
101
321
  </li>
102
322
 
103
- <li class='philologic_occurrence'>
104
- <a href="./24/0/0/0/0" 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>
323
+ <li class='philologic_occurrence' style='list-style-type:none'>
324
+ <span class='hit_n'>24</span>. <input type="checkbox" name="philo_id" value="(24, 0, 0, 0, 0, 0, 0)">
325
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./24?'>A Midsummer Night's Dream</a></i> []</span>
105
326
  </li>
106
327
 
107
- <li class='philologic_occurrence'>
108
- <a href="./25/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Merry Wives of Windsor</span></i> : <span class='philologic_property' title='who'></span></a>
328
+ <li class='philologic_occurrence' style='list-style-type:none'>
329
+ <span class='hit_n'>25</span>. <input type="checkbox" name="philo_id" value="(25, 0, 0, 0, 0, 0, 0)">
330
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./25?'>The Merry Wives of Windsor</a></i> []</span>
109
331
  </li>
110
332
 
111
- <li class='philologic_occurrence'>
112
- <a href="./26/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Othello, the Moor of Venice</span></i> : <span class='philologic_property' title='who'></span></a>
333
+ <li class='philologic_occurrence' style='list-style-type:none'>
334
+ <span class='hit_n'>26</span>. <input type="checkbox" name="philo_id" value="(26, 0, 0, 0, 0, 0, 0)">
335
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./26?'>Othello, the Moor of Venice</a></i> []</span>
113
336
  </li>
114
337
 
115
- <li class='philologic_occurrence'>
116
- <a href="./27/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Pericles, Prince of Tyre</span></i> : <span class='philologic_property' title='who'></span></a>
338
+ <li class='philologic_occurrence' style='list-style-type:none'>
339
+ <span class='hit_n'>27</span>. <input type="checkbox" name="philo_id" value="(27, 0, 0, 0, 0, 0, 0)">
340
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./27?'>Pericles, Prince of Tyre</a></i> []</span>
117
341
  </li>
118
342
 
119
- <li class='philologic_occurrence'>
120
- <a href="./28/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Phoenix and Turtle</span></i> : <span class='philologic_property' title='who'></span></a>
343
+ <li class='philologic_occurrence' style='list-style-type:none'>
344
+ <span class='hit_n'>28</span>. <input type="checkbox" name="philo_id" value="(28, 0, 0, 0, 0, 0, 0)">
345
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./28?'>The Phoenix and Turtle</a></i> []</span>
121
346
  </li>
122
347
 
123
- <li class='philologic_occurrence'>
124
- <a href="./29/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Rape of Lucrece</span></i> : <span class='philologic_property' title='who'></span></a>
348
+ <li class='philologic_occurrence' style='list-style-type:none'>
349
+ <span class='hit_n'>29</span>. <input type="checkbox" name="philo_id" value="(29, 0, 0, 0, 0, 0, 0)">
350
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./29?'>The Rape of Lucrece</a></i> []</span>
125
351
  </li>
126
352
 
127
- <li class='philologic_occurrence'>
128
- <a href="./30/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Tragedy of King Richard the Second</span></i> : <span class='philologic_property' title='who'></span></a>
353
+ <li class='philologic_occurrence' style='list-style-type:none'>
354
+ <span class='hit_n'>30</span>. <input type="checkbox" name="philo_id" value="(30, 0, 0, 0, 0, 0, 0)">
355
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./30?'>The Tragedy of King Richard the Second</a></i> []</span>
129
356
  </li>
130
357
 
131
- <li class='philologic_occurrence'>
132
- <a href="./31/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Tragedy of King Richard the Third</span></i> : <span class='philologic_property' title='who'></span></a>
358
+ <li class='philologic_occurrence' style='list-style-type:none'>
359
+ <span class='hit_n'>31</span>. <input type="checkbox" name="philo_id" value="(31, 0, 0, 0, 0, 0, 0)">
360
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./31?'>The Tragedy of King Richard the Third</a></i> []</span>
133
361
  </li>
134
362
 
135
- <li class='philologic_occurrence'>
136
- <a href="./32/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Romeo and Juliet</span></i> : <span class='philologic_property' title='who'></span></a>
363
+ <li class='philologic_occurrence' style='list-style-type:none'>
364
+ <span class='hit_n'>32</span>. <input type="checkbox" name="philo_id" value="(32, 0, 0, 0, 0, 0, 0)">
365
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./32?'>Romeo and Juliet</a></i> []</span>
137
366
  </li>
138
367
 
139
- <li class='philologic_occurrence'>
140
- <a href="./33/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Sonnets</span></i> : <span class='philologic_property' title='who'></span></a>
368
+ <li class='philologic_occurrence' style='list-style-type:none'>
369
+ <span class='hit_n'>33</span>. <input type="checkbox" name="philo_id" value="(33, 0, 0, 0, 0, 0, 0)">
370
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./33?'>Sonnets</a></i> []</span>
141
371
  </li>
142
372
 
143
- <li class='philologic_occurrence'>
144
- <a href="./34/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Taming of the Shrew</span></i> : <span class='philologic_property' title='who'></span></a>
373
+ <li class='philologic_occurrence' style='list-style-type:none'>
374
+ <span class='hit_n'>34</span>. <input type="checkbox" name="philo_id" value="(34, 0, 0, 0, 0, 0, 0)">
375
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./34?'>The Taming of the Shrew</a></i> []</span>
145
376
  </li>
146
377
 
147
- <li class='philologic_occurrence'>
148
- <a href="./35/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Tempest</span></i> : <span class='philologic_property' title='who'></span></a>
378
+ <li class='philologic_occurrence' style='list-style-type:none'>
379
+ <span class='hit_n'>35</span>. <input type="checkbox" name="philo_id" value="(35, 0, 0, 0, 0, 0, 0)">
380
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./35?'>The Tempest</a></i> []</span>
149
381
  </li>
150
382
 
151
- <li class='philologic_occurrence'>
152
- <a href="./36/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Two Gentlemen of Verona</span></i> : <span class='philologic_property' title='who'></span></a>
383
+ <li class='philologic_occurrence' style='list-style-type:none'>
384
+ <span class='hit_n'>36</span>. <input type="checkbox" name="philo_id" value="(36, 0, 0, 0, 0, 0, 0)">
385
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./36?'>Two Gentlemen of Verona</a></i> []</span>
153
386
  </li>
154
387
 
155
- <li class='philologic_occurrence'>
156
- <a href="./37/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Timon of Athens</span></i> : <span class='philologic_property' title='who'></span></a>
388
+ <li class='philologic_occurrence' style='list-style-type:none'>
389
+ <span class='hit_n'>37</span>. <input type="checkbox" name="philo_id" value="(37, 0, 0, 0, 0, 0, 0)">
390
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./37?'>Timon of Athens</a></i> []</span>
157
391
  </li>
158
392
 
159
- <li class='philologic_occurrence'>
160
- <a href="./38/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Titus Andronicus</span></i> : <span class='philologic_property' title='who'></span></a>
393
+ <li class='philologic_occurrence' style='list-style-type:none'>
394
+ <span class='hit_n'>38</span>. <input type="checkbox" name="philo_id" value="(38, 0, 0, 0, 0, 0, 0)">
395
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./38?'>Titus Andronicus</a></i> []</span>
161
396
  </li>
162
397
 
163
- <li class='philologic_occurrence'>
164
- <a href="./39/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Troilus and Cressida</span></i> : <span class='philologic_property' title='who'></span></a>
398
+ <li class='philologic_occurrence' style='list-style-type:none'>
399
+ <span class='hit_n'>39</span>. <input type="checkbox" name="philo_id" value="(39, 0, 0, 0, 0, 0, 0)">
400
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./39?'>Troilus and Cressida</a></i> []</span>
165
401
  </li>
166
402
 
167
- <li class='philologic_occurrence'>
168
- <a href="./40/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Twelfth Night or What You Will</span></i> : <span class='philologic_property' title='who'></span></a>
403
+ <li class='philologic_occurrence' style='list-style-type:none'>
404
+ <span class='hit_n'>40</span>. <input type="checkbox" name="philo_id" value="(40, 0, 0, 0, 0, 0, 0)">
405
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./40?'>Twelfth Night or What You Will</a></i> []</span>
169
406
  </li>
170
407
 
171
- <li class='philologic_occurrence'>
172
- <a href="./41/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>Venus and Adonis</span></i> : <span class='philologic_property' title='who'></span></a>
408
+ <li class='philologic_occurrence' style='list-style-type:none'>
409
+ <span class='hit_n'>41</span>. <input type="checkbox" name="philo_id" value="(41, 0, 0, 0, 0, 0, 0)">
410
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./41?'>Venus and Adonis</a></i> []</span>
173
411
  </li>
174
412
 
175
- <li class='philologic_occurrence'>
176
- <a href="./42/0/0/0/0" class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><span class='philologic_cite' title='title'>The Winter's Tale</span></i> : <span class='philologic_property' title='who'></span></a>
413
+ <li class='philologic_occurrence' style='list-style-type:none'>
414
+ <span class='hit_n'>42</span>. <input type="checkbox" name="philo_id" value="(42, 0, 0, 0, 0, 0, 0)">
415
+ <span class='philologic_cite'><span class='philologic_property' title='author'>William Shakespeare</span>, <i><a class='philologic_property' title='title' href='./42?'>The Winter's Tale</a></i> []</span>
177
416
  </li>
178
417
  </ol>
418
+ <input type='submit'/>
179
419
  </div>
180
- </body>
420
+ </form>
421
+ </div>
422
+ </div>
423
+ </div>
424
+ <div id="footer">
425
+ <div class="bottom-border">
426
+ <div class="region-content">
427
+ <div class="footer-nav" style="float:left;">
428
+ <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>
429
+ <li class="menu-139"><a href="/content/subscription-information-0" title="Information concerning ARTFL Subscription">subscription info</a></li>
430
+ <li class="menu-140"><a href="/content/whats-new-artfl" title="New Developments at the ARTFL Project">what&#039;s new</a></li>
431
+ <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>
432
+ <li class="menu-197 last"><a href="/content/contact-us" title="Contact information for the ARTFL Project">contact us</a></li>
433
+ </ul>
434
+ <br />
435
+ <br />
436
+ <img src="http://humanities.uchicago.edu/images/wordmarks/hum-wordmark-black-small.png" style="display:block;margin-left:-5px;" />
437
+ </div>
438
+ <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>
439
+ </div>
440
+ </div>
441
+ </div> <!-- /footer -->
442
+ </div> <!-- /container -->
443
+ </body>
181
444
  </html>
182
-