unapi 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/unapi/page.rb +9 -2
- data/lib/unapi/utils.rb +7 -1
- data/lib/unapi/validator.rb +2 -1
- data/test/test_dir/relative.html +311 -0
- data/test/unapi_servlet.rb +1 -1
- data/test/unapi_test.rb +11 -0
- metadata +35 -30
data/lib/unapi/page.rb
CHANGED
@@ -23,12 +23,19 @@ module UnAPI
|
|
23
23
|
end
|
24
24
|
return nil if not link_url
|
25
25
|
|
26
|
-
# if
|
26
|
+
# if it's a relative link it must be made non-relative using
|
27
|
+
# the url for the page
|
27
28
|
service_uri = URI.parse(link_url)
|
28
29
|
if service_uri.relative?
|
29
30
|
service_uri.host = @uri.host
|
30
|
-
service_uri.port = @uri.port
|
31
|
+
service_uri.port = @uri.port unless @uri.port == 80
|
31
32
|
service_uri.scheme = @uri.scheme
|
33
|
+
|
34
|
+
# some code I'm probably going to regret that pulls the
|
35
|
+
# constructs the relative path from the page uri by
|
36
|
+
# removing everyting after the last slash on the page uri
|
37
|
+
truncated_page_path = @uri.path.split('/')[0..-2].join('/')
|
38
|
+
service_uri.path = truncated_page_path + '/' + service_uri.path
|
32
39
|
end
|
33
40
|
|
34
41
|
# if they included a ? let's get rid of that
|
data/lib/unapi/utils.rb
CHANGED
@@ -7,7 +7,8 @@ module UnAPI
|
|
7
7
|
# helper stuff used in the rest of the package
|
8
8
|
|
9
9
|
class Utils
|
10
|
-
def Utils.get(url)
|
10
|
+
def Utils.get(url, hops=1)
|
11
|
+
return '', '', '' if hops > 10
|
11
12
|
begin
|
12
13
|
response = Net::HTTP.get_response(URI.parse(url))
|
13
14
|
code = Integer(response.code)
|
@@ -15,6 +16,11 @@ module UnAPI
|
|
15
16
|
# v1.8.2 has no content_type attribute
|
16
17
|
content_type = response.respond_to?('content_type') ?
|
17
18
|
response.content_type : response.header['content-type']
|
19
|
+
|
20
|
+
# follow 302 redirects
|
21
|
+
if code == 302
|
22
|
+
return get(response.header.get_fields('location')[0], hops+1)
|
23
|
+
end
|
18
24
|
return code, body, content_type
|
19
25
|
rescue Exception => e
|
20
26
|
return nil, nil, nil
|
data/lib/unapi/validator.rb
CHANGED
@@ -163,9 +163,10 @@ module UnAPI
|
|
163
163
|
formats.each do |format|
|
164
164
|
next if format.name == nil
|
165
165
|
content = service.get_id_in_format(id, format.name)
|
166
|
+
bytes = content == nil ? 0 : content.length
|
166
167
|
@handler.test((content != nil and content.length > 0),
|
167
168
|
"request for id #{id} in format #{format.name} should return data",
|
168
|
-
"#{
|
169
|
+
"#{bytes} bytes",
|
169
170
|
service.last_url)
|
170
171
|
@handler.test service.content_type.include?(format.type),
|
171
172
|
"request for id #{id} in format #{format.name} should return " +
|
@@ -0,0 +1,311 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/html4/loose.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<title>IPÖ Literature Database -- Query Results</title>
|
6
|
+
<meta name="date" content="01-Aug-06">
|
7
|
+
<meta name="robots" content="index,follow">
|
8
|
+
<meta name="description" lang="en" content="Results from the IPÖ Literature Database">
|
9
|
+
<meta name="keywords" lang="en" content="science academic literature scientific references search citation web database mysql php">
|
10
|
+
<meta http-equiv="content-language" content="en">
|
11
|
+
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
12
|
+
<meta http-equiv="Content-Style-Type" content="text/css">
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" title="CSS Definition">
|
14
|
+
<link rel="alternate" type="application/rss+xml" href="rss.php?where=serial%20%3D%20%2221520%22&showRows=5" title="records where serial is equal to '21520'">
|
15
|
+
<link rel="unapi-server" type="application/xml" title="unAPI" href="unapi.php">
|
16
|
+
<script language="JavaScript" type="text/javascript">
|
17
|
+
function checkall(val,formpart){
|
18
|
+
x=0;
|
19
|
+
while(document.queryResults.elements[x]){
|
20
|
+
if(document.queryResults.elements[x].name==formpart){
|
21
|
+
document.queryResults.elements[x].checked=val;
|
22
|
+
}
|
23
|
+
x++;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
</script>
|
27
|
+
</head>
|
28
|
+
<body>
|
29
|
+
<table align="center" border="0" cellpadding="0" cellspacing="10" width="95%" summary="This holds the title logo and info">
|
30
|
+
<tr>
|
31
|
+
<td valign="middle" rowspan="2" align="left" width="170"><a href="http://www.uni-kiel.de/ipoe/"><img src="img/logo.gif" border="0" alt="IPÖ Home" title="Institut für Polarökologie" width="143" height="107"></a></td>
|
32
|
+
<td>
|
33
|
+
<h2>IPÖ Literature Database</h2>
|
34
|
+
<span class="smallup">
|
35
|
+
<a href="index.php" title="go to main page">Home</a> |
|
36
|
+
<a href="show.php?records=all" title="show all records in the database">Show All</a> |
|
37
|
+
<a href="simple_search.php" title="search the main fields of the database">Simple Search</a> |
|
38
|
+
<a href="advanced_search.php" title="search all fields of the database">Advanced Search</a>
|
39
|
+
<!-- | <a href="help.php" title="display help">Help</a>-->
|
40
|
+
</span>
|
41
|
+
</td>
|
42
|
+
<td class="small" align="right" valign="middle"><br></td>
|
43
|
+
</tr>
|
44
|
+
<tr>
|
45
|
+
<td>1–1 of 1 record found matching your query (<a href="rss.php?where=serial%20%3D%20%2221520%22&showRows=5" title="track newly added records matching your current query by subscribing to this RSS feed">RSS</a>):</td>
|
46
|
+
<td class="small" align="right" valign="middle"><a href="user_login.php?referer=%2Frefs%2Fsearch.php%3FformType%3DsqlSearch%26submit%3DDisplay%26headerMsg%3D%26sqlQuery%3DSELECT%2520author%252C%2520title%252C%2520type%252C%2520year%252C%2520publication%252C%2520abbrev_journal%252C%2520volume%252C%2520issue%252C%2520pages%252C%2520corporate_author%252C%2520thesis%252C%2520address%252C%2520keywords%252C%2520abstract%252C%2520publisher%252C%2520place%252C%2520editor%252C%2520language%252C%2520summary_language%252C%2520orig_title%252C%2520series_editor%252C%2520series_title%252C%2520abbrev_series_title%252C%2520series_volume%252C%2520series_issue%252C%2520edition%252C%2520issn%252C%2520isbn%252C%2520medium%252C%2520area%252C%2520expedition%252C%2520conference%252C%2520notes%252C%2520approved%252C%2520location%252C%2520call_number%252C%2520serial%2520FROM%2520refs%2520WHERE%2520serial%2520%253D%2520%252221520%2522%2520ORDER%2520BY%2520author%252C%2520year%2520DESC%252C%2520publication%26showQuery%3D%26showLinks%3D1%26showRows%3D5%26rowOffset%3D0%26marked%5B%5D%3D%26citeStyleSelector%3DPolar%2520Biol%26citeOrder%3D%26orderBy%3Dauthor%252C%2520year%2520DESC%252C%2520publication%26oldQuery%3DsqlQuery%253DSELECT%2520author%252C%2520title%252C%2520type%252C%2520year%252C%2520publication%252C%2520abbrev_journal%252C%2520volume%252C%2520issue%252C%2520pages%252C%2520corporate_author%252C%2520thesis%252C%2520address%252C%2520keywords%252C%2520abstract%252C%2520publisher%252C%2520place%252C%2520editor%252C%2520language%252C%2520summary_language%252C%2520orig_title%252C%2520series_editor%252C%2520series_title%252C%2520abbrev_series_title%252C%2520series_volume%252C%2520series_issue%252C%2520edition%252C%2520issn%252C%2520isbn%252C%2520medium%252C%2520area%252C%2520expedition%252C%2520conference%252C%2520notes%252C%2520approved%252C%2520location%252C%2520call_number%252C%2520serial%2520FROM%2520refs%2520WHERE%2520serial%2520%253D%2520%252221520%2522%2520ORDER%2520BY%2520author%252C%2520year%2520DESC%252C%2520publication%2526amp%253BshowQuery%253D%2526amp%253BshowLinks%253D1%2526amp%253BformType%253DsqlSearch%2526amp%253BshowRows%253D5%2526amp%253BrowOffset%253D%2526amp%253Bsubmit%253DDisplay%2526amp%253BciteStyleSelector%253DPolar%252520Biol%2526amp%253BciteOrder%253D" title="login to the database">Login</a></td>
|
47
|
+
</tr>
|
48
|
+
</table>
|
49
|
+
<hr align="center" width="95%">
|
50
|
+
<table align="center" border="0" cellpadding="0" cellspacing="10" width="95%" summary="This table holds browse links that link to the results pages of your query">
|
51
|
+
<tr>
|
52
|
+
<td align="left" valign="bottom" width="187" class="small">
|
53
|
+
<a href="JavaScript:checkall(true,'marked%5B%5D')" title="select all records on this page">Select All</a>
|
54
|
+
<a href="JavaScript:checkall(false,'marked%5B%5D')" title="deselect all records on this page">Deselect All</a>
|
55
|
+
</td>
|
56
|
+
<td align="center" valign="bottom">
|
57
|
+
<<
|
58
|
+
<b>1</b>
|
59
|
+
>>
|
60
|
+
</td>
|
61
|
+
<td align="right" valign="bottom" width="187">
|
62
|
+
<a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication&submit=Display&citeStyleSelector=Polar%20Biol&citeOrder=&orderBy=author%2C%20year%20DESC%2C%20publication&headerMsg=&showQuery=&showLinks=0&formType=sqlSearch&showRows=5&rowOffset=0&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=Print"><img src="img/print.gif" alt="print" title="display print view" width="17" height="18" hspace="0" border="0"></a>
|
63
|
+
</td>
|
64
|
+
</tr>
|
65
|
+
</table>
|
66
|
+
<form action="search.php" method="POST" name="queryResults">
|
67
|
+
<input type="hidden" name="formType" value="queryResults">
|
68
|
+
<input type="hidden" name="submit" value="Display">
|
69
|
+
<input type="hidden" name="originalDisplayType" value="Display">
|
70
|
+
<input type="hidden" name="orderBy" value="author%2C%20year%20DESC%2C%20publication">
|
71
|
+
<input type="hidden" name="showQuery" value="">
|
72
|
+
<input type="hidden" name="showLinks" value="1">
|
73
|
+
<input type="hidden" name="rowOffset" value="0">
|
74
|
+
<input type="hidden" name="sqlQuery" value="SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication">
|
75
|
+
<input type="hidden" name="oldQuery" value="sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D">
|
76
|
+
<table align="center" border="0" cellpadding="5" cellspacing="0" width="95%" summary="This table holds the database results for your query">
|
77
|
+
<tr>
|
78
|
+
<th align="left" valign="top"> </th>
|
79
|
+
<th align="left" valign="top" colspan="6">Record</th>
|
80
|
+
<th align="left" valign="top"><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20url%20DESC%2C%20doi%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=url%20DESC%2C%20doi%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'url' (descending order)">Links</a></th>
|
81
|
+
</tr>
|
82
|
+
<tr>
|
83
|
+
<td align="left" valign="top" width="10"><input type="checkbox" name="marked[]" value="21520" title="select this record"></td>
|
84
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=author&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'author' (descending order)">Author</a> <img src="img/sort_asc.gif" alt="(up)" title="sorted by field 'author' (ascending order)" width="8" height="10" hspace="0" border="0"></b></td>
|
85
|
+
<td valign="top" colspan="5" class="mainfieldsbg"><b>Aberle, N; Witte, U</b></td>
|
86
|
+
<td valign="top" width="50" rowspan="2">
|
87
|
+
<a href="http://www.int-res.com/abstracts/meps/v251/p37-47/"><img src="img/www.gif" alt="url" title="goto web page" width="17" height="20" hspace="0" border="0"></a>
|
88
|
+
<a href="http://www.crossref.org/openurl?aulast=Aberle&title=Marine%20Ecology%20Progress%20Series&volume=251&issue=&spage=37&date=2003"><img src="img/xref.gif" alt="openurl" title="find record details (via OpenURL)" width="18" height="20" hspace="0" border="0"></a>
|
89
|
+
</td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td valign="top" width="10"> </td>
|
93
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20title&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=title&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'title' (ascending order)">Title</a></b></td>
|
94
|
+
<td valign="top" colspan="3" class="mainfieldsbg"><b>Deep-sea macrofauna exposed to a simulated sedimentation event in the abyssal NE Atlantic: <i>in situ</i> pulse-chase experiments using <sup>13</sup>C-labelled phytodetritus</b></td>
|
95
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20type&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=type&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'type' (ascending order)">Type</a></b></td>
|
96
|
+
<td valign="top" class="mainfieldsbg">Journal Article</td>
|
97
|
+
</tr>
|
98
|
+
<tr>
|
99
|
+
<td valign="top" width="10"> </td>
|
100
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20year%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=year%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'year' (descending order)">Year</a></b></td>
|
101
|
+
<td valign="top" class="mainfieldsbg"><b>2003</b></td>
|
102
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20publication&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=publication&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'publication' (ascending order)">Publication</a></b></td>
|
103
|
+
<td valign="top" class="mainfieldsbg">Marine Ecology Progress Series</td>
|
104
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20abbrev_journal&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=abbrev_journal&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'abbrev_journal' (ascending order)">Abbreviated Journal</a></b></td>
|
105
|
+
<td valign="top" class="mainfieldsbg">Mar Ecol Prog Ser</td>
|
106
|
+
<td valign="top" width="50"> </td>
|
107
|
+
</tr>
|
108
|
+
<tr>
|
109
|
+
<td valign="top" width="10"> </td>
|
110
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20volume_numeric%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=volume_numeric%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'volume_numeric' (descending order)">Volume</a></b></td>
|
111
|
+
<td valign="top" class="mainfieldsbg">251</td>
|
112
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20issue&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=issue&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'issue' (ascending order)">Issue</a></b></td>
|
113
|
+
<td valign="top" class="mainfieldsbg"></td>
|
114
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20first_page%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=first_page%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'first_page' (descending order)">Pages</a></b></td>
|
115
|
+
<td valign="top" class="mainfieldsbg">37-47</td>
|
116
|
+
<td valign="top" width="50"> </td>
|
117
|
+
</tr>
|
118
|
+
<tr>
|
119
|
+
<td valign="top" width="10"> </td>
|
120
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20corporate_author&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=corporate_author&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'corporate_author' (ascending order)">Corporate Author</a></b></td>
|
121
|
+
<td valign="top" colspan="3" class="otherfieldsbg"></td>
|
122
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20thesis&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=thesis&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'thesis' (ascending order)">Thesis</a></b></td>
|
123
|
+
<td valign="top" class="otherfieldsbg"></td>
|
124
|
+
<td valign="top" width="50"> </td>
|
125
|
+
</tr>
|
126
|
+
<tr>
|
127
|
+
<td valign="top" width="10"> </td>
|
128
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20address&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=address&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'address' (ascending order)">Address</a></b></td>
|
129
|
+
<td valign="top" colspan="5" class="otherfieldsbg">Aberle, Witte: Max Planck Institute for Marine Microbiology, Celsiusstr. 1, 28359 Bremen, Germany; Aberle: Present address: Max Planck Institute for Limnology, August-Thienemann-Str. 2, 24306 Plön, Germany; Email: aberle@mpil-ploen.mpg.de</td>
|
130
|
+
<td valign="top" width="50"> </td>
|
131
|
+
</tr>
|
132
|
+
<tr>
|
133
|
+
<td valign="top" width="10"> </td>
|
134
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20keywords&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=keywords&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'keywords' (ascending order)">Keywords</a></b></td>
|
135
|
+
<td valign="top" colspan="5" class="otherfieldsbg">Deep-sea; Pulse-chase experiment; δ<sup>13</sup>C; Benthic carbon remineralisation; Macrofauna; Porcupine Abyssal Plain</td>
|
136
|
+
<td valign="top" width="50"> </td>
|
137
|
+
</tr>
|
138
|
+
<tr>
|
139
|
+
<td valign="top" width="10"> </td>
|
140
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20abstract&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=abstract&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'abstract' (ascending order)">Abstract</a></b></td>
|
141
|
+
<td valign="top" colspan="5" class="otherfieldsbg">Tracer experiments with <sup>13</sup>C-labelled diatoms <i>Thalassiosira rotula</i> (Bacillariophycea, 98% <sup>13</sup>C-labelled) were conducted at the Porcupine Abyssal Plain (PAP) in the NE Atlantic (BENGAL Station; 48°50'N, 16°30'W, 4850 m depth) during May/June 2000. <i>In situ</i> enrichment experiments were carried out using deep-sea benthic chamber landers: within the chambers a spring bloom was simulated and the fate of this food-pulse within the abyssal macrobenthic community was followed. In focus was the role of different macrofauna taxa and their vertical distribution within the sediment column in consuming and reworking the freshly deposited material. <i>T. rotula</i> is one of the most abundant pelagic diatoms in the NE Atlantic and therefore 0.2 g of freeze dried <i>T. rotula</i>, equivalent to 1 g algal C m<sup>-2</sup> yr<sup>-1</sup>, was injected into each incubation chamber. Three different incubation times of 2.5, 8 and 23 d were chosen in order to follow the uptake of <sup>13</sup>C-labelled phytodetritus by macrofauna. After only 2.5 d, 77% of all macrofauna organisms showed tracer uptake. After 23 d the highest degree of enrichment was measured and 95% of the individuals had taken up <sup>13</sup>C from the introduced algal material. In addition to that a downward transport of organic matter was observed, even though the mixing was not very intense. The initial processing of carbon was dominated by polychaetes that made up a percentage of 52% of total macrofauna. In general macrofauna organisms that lived close to the sediment surface had higher access to the simulated food-pulse, confirming the hypothesis that individuals close to the sediment surface have the strongest impact on the decomposition of phytodetritus. In our study we observed only modest vertical entrainment of <sup>13</sup>C tracers into the sediment. With regard to contradictory results from former <sup>13</sup>C-enrichment experiments in bathyal regions, compared to results from our study site in the abyssal plain, we thus propose pronounced differences in feeding strategies between macrofauna communities from continental margins and abyssal plains.</td>
|
142
|
+
<td valign="top" width="50"> </td>
|
143
|
+
</tr>
|
144
|
+
<tr>
|
145
|
+
<td valign="top" width="10"> </td>
|
146
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20publisher&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=publisher&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'publisher' (ascending order)">Publisher</a></b></td>
|
147
|
+
<td valign="top" class="otherfieldsbg">Inter-Research</td>
|
148
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20place&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=place&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'place' (ascending order)">Place of Publication</a></b></td>
|
149
|
+
<td valign="top" class="otherfieldsbg">Oldendorf/Luhe</td>
|
150
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20editor&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=editor&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'editor' (ascending order)">Editor</a></b></td>
|
151
|
+
<td valign="top" class="otherfieldsbg"></td>
|
152
|
+
<td valign="top" width="50"> </td>
|
153
|
+
</tr>
|
154
|
+
<tr>
|
155
|
+
<td valign="top" width="10"> </td>
|
156
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20language&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=language&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'language' (ascending order)">Language</a></b></td>
|
157
|
+
<td valign="top" class="otherfieldsbg">English</td>
|
158
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20summary_language&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=summary_language&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'summary_language' (ascending order)">Summary Language</a></b></td>
|
159
|
+
<td valign="top" class="otherfieldsbg">English</td>
|
160
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20orig_title&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=orig_title&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'orig_title' (ascending order)">Original Title</a></b></td>
|
161
|
+
<td valign="top" class="otherfieldsbg"></td>
|
162
|
+
<td valign="top" width="50"> </td>
|
163
|
+
</tr>
|
164
|
+
<tr>
|
165
|
+
<td valign="top" width="10"> </td>
|
166
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20series_editor&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=series_editor&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'series_editor' (ascending order)">Series Editor</a></b></td>
|
167
|
+
<td valign="top" class="otherfieldsbg"></td>
|
168
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20series_title&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=series_title&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'series_title' (ascending order)">Series Title</a></b></td>
|
169
|
+
<td valign="top" class="otherfieldsbg"></td>
|
170
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20abbrev_series_title&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=abbrev_series_title&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'abbrev_series_title' (ascending order)">Abbreviated Series Title</a></b></td>
|
171
|
+
<td valign="top" class="otherfieldsbg"></td>
|
172
|
+
<td valign="top" width="50"> </td>
|
173
|
+
</tr>
|
174
|
+
<tr>
|
175
|
+
<td valign="top" width="10"> </td>
|
176
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20series_volume_numeric%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=series_volume_numeric%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'series_volume_numeric' (descending order)">Series Volume</a></b></td>
|
177
|
+
<td valign="top" class="otherfieldsbg"></td>
|
178
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20series_issue&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=series_issue&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'series_issue' (ascending order)">Series Issue</a></b></td>
|
179
|
+
<td valign="top" class="otherfieldsbg"></td>
|
180
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20edition%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=edition%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'edition' (descending order)">Edition</a></b></td>
|
181
|
+
<td valign="top" class="otherfieldsbg"></td>
|
182
|
+
<td valign="top" width="50"> </td>
|
183
|
+
</tr>
|
184
|
+
<tr>
|
185
|
+
<td valign="top" width="10"> </td>
|
186
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20issn&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=issn&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'issn' (ascending order)">ISSN</a></b></td>
|
187
|
+
<td valign="top" class="otherfieldsbg">0171-8630</td>
|
188
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20isbn&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=isbn&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'isbn' (ascending order)">ISBN</a></b></td>
|
189
|
+
<td valign="top" class="otherfieldsbg"></td>
|
190
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20medium&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=medium&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'medium' (ascending order)">Medium</a></b></td>
|
191
|
+
<td valign="top" class="otherfieldsbg"></td>
|
192
|
+
<td valign="top" width="50"> </td>
|
193
|
+
</tr>
|
194
|
+
<tr>
|
195
|
+
<td valign="top" width="10"> </td>
|
196
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20area&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=area&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'area' (ascending order)">Area</a></b></td>
|
197
|
+
<td valign="top" class="otherfieldsbg">NE Atlantic</td>
|
198
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20expedition&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=expedition&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'expedition' (ascending order)">Expedition</a></b></td>
|
199
|
+
<td valign="top" class="otherfieldsbg"></td>
|
200
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20conference&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=conference&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'conference' (ascending order)">Conference</a></b></td>
|
201
|
+
<td valign="top" class="otherfieldsbg"></td>
|
202
|
+
<td valign="top" width="50"> </td>
|
203
|
+
</tr>
|
204
|
+
<tr>
|
205
|
+
<td valign="top" width="10"> </td>
|
206
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20notes&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=notes&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'notes' (ascending order)">Notes</a></b></td>
|
207
|
+
<td valign="top" colspan="3" class="otherfieldsbg"></td>
|
208
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20approved&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=approved&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'approved' (ascending order)">Approved</a></b></td>
|
209
|
+
<td valign="top" class="otherfieldsbg">no</td>
|
210
|
+
<td valign="top" width="50"> </td>
|
211
|
+
</tr>
|
212
|
+
<tr>
|
213
|
+
<td valign="top" width="10"> </td>
|
214
|
+
<td valign="top" width="75" class="otherfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20location&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=location&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'location' (ascending order)">Location</a></b></td>
|
215
|
+
<td valign="top" colspan="5" class="otherfieldsbg">Andrea Lorenz (alorenz@ipoe.uni-kiel.de); Matthias Steffens (msteffens@ipoe.uni-kiel.de)</td>
|
216
|
+
<td valign="top" width="50"> </td>
|
217
|
+
</tr>
|
218
|
+
<tr>
|
219
|
+
<td valign="top" width="10"> </td>
|
220
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20call_number&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=call_number&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'call_number' (ascending order)">Call Number</a></b></td>
|
221
|
+
<td valign="top" colspan="3" class="mainfieldsbg">IPÖ @ alorenz @ alphabetical order; IPÖ @ msteffens @ 706</td>
|
222
|
+
<td valign="top" width="75" class="mainfieldsbg"><b><a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20serial%20DESC&showQuery=&showLinks=1&formType=sqlSearch&showRows=5&rowOffset=0&submit=Display&orderBy=serial%20DESC&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=" title="sort by field 'serial' (descending order)">Serial</a></b></td>
|
223
|
+
<td valign="top" class="mainfieldsbg">21520</td>
|
224
|
+
<td valign="top" width="50"> </td>
|
225
|
+
</tr>
|
226
|
+
<tr>
|
227
|
+
<td colspan="8" align="center" class="smaller"><a href="http://polaris.ipoe.uni-kiel.de/refs/show.php?record=21520" title="copy this URL to directly link to this record">Permanent link to this record</a><div class="unapi"><abbr class="unapi-id" title="http://polaris.ipoe.uni-kiel.de/refs/show.php?record=21520"></abbr></div></td>
|
228
|
+
</tr>
|
229
|
+
</table>
|
230
|
+
<table align="center" border="0" cellpadding="0" cellspacing="10" width="95%" summary="This table holds browse links that link to the results pages of your query">
|
231
|
+
<tr>
|
232
|
+
<td align="left" valign="bottom" width="187" class="small">
|
233
|
+
<a href="JavaScript:checkall(true,'marked%5B%5D')" title="select all records on this page">Select All</a>
|
234
|
+
<a href="JavaScript:checkall(false,'marked%5B%5D')" title="deselect all records on this page">Deselect All</a>
|
235
|
+
</td>
|
236
|
+
<td align="center" valign="bottom">
|
237
|
+
<<
|
238
|
+
<b>1</b>
|
239
|
+
>>
|
240
|
+
</td>
|
241
|
+
<td align="right" valign="bottom" width="187">
|
242
|
+
<a href="search.php?sqlQuery=SELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication&submit=Display&citeStyleSelector=Polar%20Biol&citeOrder=&orderBy=author%2C%20year%20DESC%2C%20publication&headerMsg=&showQuery=&showLinks=0&formType=sqlSearch&showRows=5&rowOffset=0&oldQuery=sqlQuery%3DSELECT%20author%2C%20title%2C%20type%2C%20year%2C%20publication%2C%20abbrev_journal%2C%20volume%2C%20issue%2C%20pages%2C%20corporate_author%2C%20thesis%2C%20address%2C%20keywords%2C%20abstract%2C%20publisher%2C%20place%2C%20editor%2C%20language%2C%20summary_language%2C%20orig_title%2C%20series_editor%2C%20series_title%2C%20abbrev_series_title%2C%20series_volume%2C%20series_issue%2C%20edition%2C%20issn%2C%20isbn%2C%20medium%2C%20area%2C%20expedition%2C%20conference%2C%20notes%2C%20approved%2C%20location%2C%20call_number%2C%20serial%20FROM%20refs%20WHERE%20serial%20%3D%20%2221520%22%20ORDER%20BY%20author%2C%20year%20DESC%2C%20publication%26amp%3BshowQuery%3D%26amp%3BshowLinks%3D1%26amp%3BformType%3DsqlSearch%26amp%3BshowRows%3D5%26amp%3BrowOffset%3D%26amp%3Bsubmit%3DDisplay%26amp%3BciteStyleSelector%3DPolar%2520Biol%26amp%3BciteOrder%3D&viewType=Print"><img src="img/print.gif" alt="print" title="display print view" width="17" height="18" hspace="0" border="0"></a>
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
</table>
|
246
|
+
<table align="center" border="0" cellpadding="0" cellspacing="10" width="90%" summary="This table holds the results footer which offers forms to display/cite selected records">
|
247
|
+
<tr>
|
248
|
+
<td align="left" valign="top">Selected Records:</td>
|
249
|
+
<td align="left" valign="top" colspan="7">
|
250
|
+
<input type="submit" name="submit" value="Display" title="display details for all selected records"> full entries
|
251
|
+
<input type="text" name="showRows" value="5" size="4" title="specify how many records shall be displayed per page (this option also applies to the 'Cite' functionality!)"> records per page
|
252
|
+
</td>
|
253
|
+
</tr>
|
254
|
+
<tr>
|
255
|
+
<td align="left" valign="top">
|
256
|
+
|
257
|
+
</td>
|
258
|
+
<td align="left" valign="top" colspan="7">
|
259
|
+
<input type="submit" name="submit" value="Cite" title="build a list of references for all selected records">
|
260
|
+
using style:
|
261
|
+
<select name="citeStyleSelector" title="choose the output style for your reference list">
|
262
|
+
<option selected>Polar Biol</option>
|
263
|
+
<option>Deep Sea Res</option>
|
264
|
+
<option>J Glaciol</option>
|
265
|
+
<option>Text Citation</option>
|
266
|
+
</select>
|
267
|
+
sort by:
|
268
|
+
<select name="citeOrder" title="choose the primary sort order for your reference list">
|
269
|
+
<option value="author">author</option>
|
270
|
+
<option value="year">year</option>
|
271
|
+
<option value="type">type</option>
|
272
|
+
<option value="type-year">type, year</option>
|
273
|
+
</select>
|
274
|
+
return as:
|
275
|
+
<select name="citeType" title="choose how your reference list shall be returned">
|
276
|
+
<option>html</option>
|
277
|
+
<option>RTF</option>
|
278
|
+
<option>PDF</option>
|
279
|
+
<option>LaTeX</option>
|
280
|
+
</select>
|
281
|
+
</td>
|
282
|
+
</tr>
|
283
|
+
</table>
|
284
|
+
</form>
|
285
|
+
<hr align="center" width="95%">
|
286
|
+
<table align="center" border="0" cellpadding="0" cellspacing="10" width="95%" summary="This table holds the footer">
|
287
|
+
<tr>
|
288
|
+
<td class="small" width="105"><a href="index.php" title="go to main page">Home</a></td>
|
289
|
+
<td class="small" align="center">
|
290
|
+
<a href="show.php?records=all" title="show all records in the database">Show All</a>
|
291
|
+
|
|
292
|
+
<a href="simple_search.php" title="search the main fields of the database">Simple Search</a>
|
293
|
+
|
|
294
|
+
<a href="advanced_search.php" title="search all fields of the database">Advanced Search</a>
|
295
|
+
|
|
296
|
+
<a href="library_search.php" title="search the library of the Institut für Polarökologie">Library Search</a>
|
297
|
+
</td>
|
298
|
+
<td class="small" align="right" width="105">Tue, 1 Aug 2006</td>
|
299
|
+
</tr>
|
300
|
+
<tr>
|
301
|
+
<td class="small" width="105"><a href="http://wiki.refbase.net/" title="display help">Help</a></td>
|
302
|
+
<td class="small" align="center">
|
303
|
+
<a href="show.php" title="display details for a particular record by entering its database serial number">Show Record</a>
|
304
|
+
|
|
305
|
+
<a href="extract.php" title="extract citations from a text and build an appropriate reference list">Extract Citations</a>
|
306
|
+
</td>
|
307
|
+
<td class="small" align="right" width="105">21:39:31 +0200</td>
|
308
|
+
</tr>
|
309
|
+
</table>
|
310
|
+
</body>
|
311
|
+
</html>
|
data/test/unapi_servlet.rb
CHANGED
@@ -94,7 +94,7 @@ end
|
|
94
94
|
# with the servlet at http://localhost:9000/unapi
|
95
95
|
|
96
96
|
if $0 == __FILE__
|
97
|
-
server = WEBrick::HTTPServer.new(:Port => 9000
|
97
|
+
server = WEBrick::HTTPServer.new(:Port => 9000)
|
98
98
|
server.mount("/unapi", UnAPIServlet)
|
99
99
|
trap("INT") {server.shutdown}
|
100
100
|
server.start
|
data/test/unapi_test.rb
CHANGED
@@ -78,4 +78,15 @@ class UnAPITest < Test::Unit::TestCase
|
|
78
78
|
assert_equal 415, service.status_code
|
79
79
|
end
|
80
80
|
|
81
|
+
def test_follow_302
|
82
|
+
service = UnAPI::Service.new 'http://www.hubmed.org/unapi.cgi'
|
83
|
+
rdf = service.get_id_in_format('info:pmid/16803326', 'RDF/XML')
|
84
|
+
assert rdf.length > 0
|
85
|
+
end
|
86
|
+
|
87
|
+
def test_relative_service_url
|
88
|
+
page = UnAPI::Page.new 'http://localhost:9000/test_dir/relative.html'
|
89
|
+
assert_equal 'http://localhost:9000/test_dir/unapi.php', page.service_url
|
90
|
+
end
|
91
|
+
|
81
92
|
end
|
metadata
CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: unapi
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2006-
|
6
|
+
version: 0.0.7
|
7
|
+
date: 2006-08-01 00:00:00 -04:00
|
8
8
|
summary: A library for working with the unapi protocol
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: ehs@pobox.com
|
12
12
|
homepage: http://www.textualize.com/unapi
|
13
13
|
rubyforge_project:
|
@@ -18,43 +18,48 @@ bindir: bin
|
|
18
18
|
has_rdoc: true
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
25
24
|
version:
|
26
25
|
platform: ruby
|
27
26
|
signing_key:
|
28
27
|
cert_chain:
|
29
28
|
authors:
|
30
|
-
|
29
|
+
- Ed Summers
|
31
30
|
files:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
31
|
+
- lib/unapi
|
32
|
+
- lib/unapi.rb
|
33
|
+
- lib/unapi/format.rb
|
34
|
+
- lib/unapi/page.rb
|
35
|
+
- lib/unapi/service.rb
|
36
|
+
- lib/unapi/utils.rb
|
37
|
+
- lib/unapi/validator.rb
|
38
|
+
- test/index.html
|
39
|
+
- test/test_dir
|
40
|
+
- test/unapi_servlet.rb
|
41
|
+
- test/unapi_test.rb
|
42
|
+
- test/validate_test.rb
|
43
|
+
- test/test_dir/relative.html
|
43
44
|
test_files:
|
44
|
-
|
45
|
+
- test.rb
|
45
46
|
rdoc_options: []
|
47
|
+
|
46
48
|
extra_rdoc_files: []
|
49
|
+
|
47
50
|
executables: []
|
51
|
+
|
48
52
|
extensions: []
|
53
|
+
|
49
54
|
requirements: []
|
55
|
+
|
50
56
|
dependencies:
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
version:
|
57
|
+
- !ruby/object:Gem::Dependency
|
58
|
+
name: rubyful_soup
|
59
|
+
version_requirement:
|
60
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 1.0.4
|
65
|
+
version:
|