isi 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/index.ja.html ADDED
@@ -0,0 +1,216 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html lang="ja">
3
+ <head>
4
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
+ <title>isi = ISI export format のためのRubyスクリプトとライブラリ</title>
6
+ <link rel="stylesheet" href="style.css" type="text/css">
7
+ <link rel="shortcut icon" href="favicon.ico">
8
+ <meta name="description" content="isiはWeb of Scienceの検索結果のISI Export FormatをBibTeX形式等に変換するRubyで書かれたフリーソフトウエアです.">
9
+ </head>
10
+
11
+ <body>
12
+ <h1>isi = ISI export format のためのRubyスクリプトとライブラリ</h1>
13
+ <div class="navi">
14
+ [<a href="index.en.html">English</a>/Japanese]
15
+ </div>
16
+
17
+ <p>
18
+ 「isi」はISI社の巨大な学術論文データベースWeb of Scienceのタグのついた出力ファイル(ISI形式)
19
+ をBibTeX形式やHTMLなどに変換するRubyスクリプトとライブラリのパッケージです.
20
+ isi2bibtex,isi2html,isi2kakenhi,isi2tohoku の4つのコマンドが同梱されています.
21
+ 平生LaTeXで学術論文を書いていて,書誌情報をBibTeXで管理している人にはisi2bibtexが便利かもしれません.
22
+ isi2htmlを使えば<a href="http://t-nissie.users.sourceforge.net/publication/">HTML版の研究業績リスト</a>
23
+ を簡単に作成することができます.
24
+ gem化してrubyforge.orgに置いてあるので,
25
+ <a href="http://rubyforge.org/projects/rubygems/">RubyGems</a>ユーザの方は
26
+ 「gem install isi」だけで簡単にインストールできます.
27
+ </p>
28
+
29
+ <p>
30
+ ホームページ: <a href="http://isi-rb.rubyforge.org/">http://isi-rb.rubyforge.org/</a>
31
+ </p>
32
+
33
+ <p>
34
+ ダウンロード: <a href="http://rubyforge.org/projects/isi-rb">http://rubyforge.org/projects/isi-rb/</a>
35
+ </p>
36
+
37
+ 目次:
38
+ <ul>
39
+ <li><a href="#INSTALL">isiのインストール方法と簡単な使い方</a>
40
+ <ul>
41
+ <li><a href="#WINDOWS">Microsoft Windowsの場合</a></li>
42
+ <li><a href="#MAC">Mac OS Xの場合</a></li>
43
+ </ul>
44
+ </li>
45
+ <li><a href="#COMMANDS">各コマンドの説明</a>
46
+ <ul>
47
+ <li><a href="#ISI2BIBTEX">isi2bibtex</a></li>
48
+ <li><a href="#ISI2HTML">isi2html</a></li>
49
+ <li><a href="#ISI2KAKENHI">isi2kakenhi</a></li>
50
+ <li><a href="#ISI2TOHOKU">isi2tohoku</a></li>
51
+ </ul>
52
+ </li>
53
+ </ul>
54
+
55
+ <h2 id="INSTALL">isiのインストール方法と簡単な使い方</h2>
56
+ <h3 id="WINDOWS">Microsoft Windowsの場合</h3>
57
+ <p>
58
+ ・<a href="http://rubyinstaller.rubyforge.org/">One-Click Ruby Installer for Windows</a>
59
+ でRubyをインストール. 同時にRubyGemsもインストールされます.
60
+ </p>
61
+
62
+ <p>
63
+ ・「コマンドプロンプト(cmd)」で次のコマンドを入力してisiをインストール.
64
+ このとき,ネットワーク セキュリティ ソフトにgemのネットワークへのアクセスの可否を問われることがありますが許可します.
65
+ </p>
66
+
67
+ <pre>
68
+ gem install isi
69
+ </pre>
70
+ <p>
71
+ ・防火壁の中からプロキシ経由で外部ネットワークにアクセスしている場合は,プロキシとそのポート番号を指定する必要があります.
72
+ </p>
73
+ <pre>
74
+ gem install isi -p http://proxy.example.com:8080
75
+ </pre>
76
+
77
+
78
+ <p>
79
+ ★ 変換したいISI形式のファイルを用意します. ここではfoo.isiとします.
80
+ なお,Web of Scienceでセーブのときに "Author(s)","Title","Source","abstract*","keywords","times cited"
81
+ そして "source abbreviation" をチェックしておくとよいでしょう.
82
+ </p>
83
+
84
+ <p>
85
+ ・ foo.isiをBibTeX形式のfoo.bibに変換する方法:
86
+ </p>
87
+
88
+ <pre>
89
+ isi2bibtex foo.isi &gt; foo.bib
90
+ </pre>
91
+
92
+ <p>
93
+ ・foo.isiを「論文一括登録ファイル」形式のfoo.xlcに変換したいなら:
94
+ </p>
95
+
96
+ <pre>
97
+ isi2tohoku --id 12345678 --name 'Example Name' foo.isi &gt; foo.xlc
98
+ </pre>
99
+
100
+ <p>
101
+ なお,
102
+ </p>
103
+
104
+ <pre>
105
+ isi2tohoku --help
106
+ </pre>
107
+
108
+ <p>
109
+ でこのisi2tohokuの使用方法の詳細を知ることができます.
110
+ </p>
111
+
112
+ <p>
113
+ ・foo.isiをHTML形式のfoo.htmlに変換したいなら:
114
+ </p>
115
+
116
+ <pre>
117
+ isi2html --help
118
+ isi2html --name-regexp='(H\. Yukawa|Hideki Yukawa)' --full-name='Hideki Yukawa' foo.isi &gt; hoo.html
119
+ </pre>
120
+
121
+ <p>
122
+ とすると,正規表現で指定した名前に下線がひかれたHTMLファイルができます.
123
+ 適当なpublication.cssを書いていっしょに使うとよいでしょう.
124
+ </p>
125
+
126
+
127
+ <h3 id="MAC">Mac OS Xの場合</h3>
128
+ <p>
129
+ ・ Mac OS 10.5.xまたは10.6.xにははじめからRubyとRubyGemsとがインストールされています.
130
+ 必要なのはisiをインストールすることだけです.
131
+ アプリケーション→ユーティリティから「ターミナル」を起動して,次のコマンドを実行します.
132
+ gem -vで表示されるgemのバージョンが1.0.1未満の場合はMac OSの「ソフトウエアアップデート」を実行して,
133
+ OSを再起動してからisiをインストールしてください.
134
+ </p>
135
+
136
+ <pre>
137
+ gem -v
138
+ sudo gem install isi
139
+ </pre>
140
+ <p>
141
+ ・防火壁の中からプロキシ経由で外部ネットワークにアクセスしている場合は,プロキシとそのポート番号を指定する必要があります.
142
+ </p>
143
+ <pre>
144
+ sudo gem install isi -p http://proxy.example.com:8080
145
+ </pre>
146
+ <p>
147
+ あとは上記「Microsoft Windowsの場合」の★印以降と同じです.
148
+ </p>
149
+
150
+
151
+ <h2 id="COMMANDS">各コマンドの説明</h2>
152
+ <h3 id="ISI2BIBTEX">isi2bibtex</h3>
153
+ <p>
154
+ 学術論文や参考文献などの文献情報を個人的に管理する方法としてはEndNoteやBibDesk,BibCompanion,JabRef,
155
+ はたまたWebベースのCiteULikeなど専用の文献管理ソフトを使う方法があります.
156
+ しかし,平生LaTeXで論文を書いているのであれば,
157
+ 文献情報をBibTeXファイル (bibファイル) で管理するのもよいかもしれません.
158
+ なぜなら,
159
+ </p>
160
+ <ul>
161
+ <li>論文中での引用方法や順番をLaTaXとBibTeXが自動的に処理してくれる.
162
+ (LaTaXとBibTeXの使用方法は
163
+ <a href="http://oku.edu.mie-u.ac.jp/%7Eokumura/bibun4/">
164
+ 奥村晴彦著『[改訂第4版]LaTeX2e美文書作成入門』(技術評論社,ISBN-10: 4774129844)</a>
165
+ が詳しいです.)
166
+ </li>
167
+ <li>bibファイルはテキストファイルなので可読性が高く編集に専用のソフトが不要.</li>
168
+ <li>ファイル中にMemoやWhereIFiledItなど自分の好きな欄を作ってメモを書き込むなど自由度の高い文献管理が
169
+ できる (bibtexコマンドは未知の欄を無視するだけなので.).</li>
170
+ <li>他の文献データベースの形式やHTMLなどとbibファイルとの間でデータを
171
+ インポート/エクスポートするフリーソフトウエアが豊富.
172
+ 例: <a href="http://oku.edu.mie-u.ac.jp/%7Eokumura/texwiki/?BibTeX%E9%96%A2%E9%80%A3%E3%83%84%E3%83%BC%E3%83%AB">BibTeX関連ツール - TeX Wiki</a></li>
173
+ </ul>
174
+ <p>
175
+ などの利点があるからです.
176
+ isi2bibtex はWeb of Scienceという文献データベースのISI形式をbibファイルに変換するためのRubyスクリプトです.
177
+ </p>
178
+
179
+ <h3 id="ISI2HTML">isi2html</h3>
180
+ <p>
181
+ isi2html はISI形式をHTMLファイルに変換します.「研究業績リスト」の作成などにご活用ください.
182
+ </p>
183
+
184
+ <h3 id="ISI2KAKENHI">isi2kakenhi</h3>
185
+ <p>
186
+ isi2kakenhi はISI形式を科学研究費補助金(科研費)の申請書に記載するためのLaTeX形式に変換します.
187
+ 正規表現で指定した著者名に下線を付ける機能があります.
188
+ </p>
189
+
190
+ <h3 id="ISI2TOHOKU">isi2tohoku</h3>
191
+ <p>
192
+ isi2tohoku はISI形式を
193
+ <a href="http://db.tohoku.ac.jp/whois/TunvTopJ.html">「東北大学研究者紹介 aka 東北大学情報データベース or 全学情報データベース」</a>
194
+ の「論文一括登録ファイル」形式に変換します.
195
+ 「論文一括登録ファイル」形式はExelなどで読み込むことのできるTAB区切りのフォーマットです.
196
+ isi-1.2.xでは『大学情報データベースシステム一括登録マニュアル(第1.05版)』
197
+ で説明されているフォーマットに対応しています.
198
+ 他大学でも同様の研究者データベースを同じ業者さんが構築していることがあります.
199
+ スクリプトを少し変更するだけで使うことができるはずです.
200
+ </p>
201
+
202
+ <hr>
203
+
204
+ <p>
205
+ Have fun!
206
+ </p>
207
+
208
+ <p>
209
+ Takeshi Nishimatsu t-nissie {at} imr.tohoku.ac.jp
210
+ </p>
211
+
212
+ </body>
213
+
214
+
215
+
216
+ </html>
data/isi.gemspec CHANGED
@@ -1,5 +1,5 @@
1
1
  # isi.gemspec -*-ruby-*-
2
- # Time-stamp: <2009-04-21 20:57:43 takeshi>
2
+ # Time-stamp: <2010-02-15 13:45:15 takeshi>
3
3
  ##
4
4
  Gem::Specification.new do |s|
5
5
  s.autorequire = 'lib/isi.rb'
@@ -10,10 +10,13 @@ Gem::Specification.new do |s|
10
10
  s.default_executable= 'isi2bibtex'
11
11
 
12
12
  s.summary = 'ISI Export Format to BibTeX Format converter. (Formerly named isi.rb or isi2bibtex.rb.)'
13
- s.files = Dir.glob("{html}/**/*") << 'lib/isi.rb' << 'lib/journaltitleabbreviation.rb' <<
14
- 'tests/isi_test.rb' << 'tests/example.isi' <<
15
- 'bin/isi2bibtex' << 'ChangeLog' << 'README' << 'publication.css' <<
16
- 'Rakefile' << 'isi.gemspec' << 'setup.rb' << 'NewsForRubyforge.txt'
13
+ s.files = ['lib/isi.rb', 'lib/journaltitleabbreviation.rb',
14
+ 'tests/isi_test.rb', 'tests/example.isi',
15
+ 'index.ja.html',
16
+ 'index.en.html',
17
+ 'style.css', 'favicon.ico', 'COPYING',
18
+ 'bin/isi2bibtex', 'ChangeLog', 'README', 'publication.css',
19
+ 'Rakefile', 'isi.gemspec', 'setup.rb', 'NewsForRubyforge.txt']
17
20
  s.author = 'Takeshi Nishimatsu'
18
21
  s.email = 't-nissie@imr.tohoku.ac.jp'
19
22
  s.rubyforge_project = 'isi-rb'
@@ -26,10 +29,9 @@ Gem::Specification.new do |s|
26
29
  s.add_dependency('text-format', '>=1.0.0')
27
30
 
28
31
  s.description = <<-EOF
29
- ISI Export Format to BibTeX Format converter.
30
- This is a Ruby script. You can use this script as a library, too.
31
-
32
- You can get the tagged Marked List in Web of Science by pushing the
33
- [SAVE TO FILE] button.
32
+ "isi" is a set of Ruby libraries and scripts for ISI Export Format.
33
+ isi2bibtex converts ISI Export Format to BibTeX Format.
34
+ isi2html generates a list of articles in an HTML file.
35
+ The package also includes isi2kakenhi and isi2tohoku.
34
36
  EOF
35
37
  end
data/lib/isi.rb CHANGED
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
- # Time-stamp: <2009-04-21 20:07:14 takeshi>
2
+ # Time-stamp: <2009-07-01 10:39:28 takeshi>
3
3
  # Author: Takeshi Nishimatsu
4
4
  # Project homepage: http://isi-rb.rubyforge.org/
5
5
  # Usage: ruby isi.rb savedrecs.txt > savedrecs.bib
6
6
  ##
7
- ISI_RB_VERSION = '1.2.0'
7
+ ISI_RB_VERSION = '1.2.1'
8
8
  require 'text/format' # http://rubyforge.org/projects/text-format/
9
9
  class ISI_record
10
10
  public
@@ -15,32 +15,32 @@ public
15
15
  end
16
16
 
17
17
  def to_tohoku_DB(tohoku_id, name)
18
- "#{tohoku_id}\t" + # A ID
19
- "#{name}\t" + # B Name
20
- "#{@hash['TI']}\t" + # C Title
21
- "#{@hash['TI']}\t" + # D Title in English
22
- "01\t" + # E Language
23
- "2\t" + # F The number of Author(s) 1:1, 2:not 1 (default)
24
- "1\t" + # G Kind - 1:regular paper
25
- "1\t" + # H Refereep - 0:nil 1:t
26
- "0\t" + # I Invitedp - 0:nil 1:t
27
- "Greatly\t" + # J Contribution
28
- "#{ji2journal}\t" + # K Journal
29
- "#{ji2journal}\t" + # L Journal in English
30
- "#{@hash['VL']}\t" + # M Vol.
31
- "#{@hash['IS']}\t" + # N No.
32
- "#{@hash['AP'] or @hash['AR'] or @hash['BP']}\t" +
33
- "\t" + # P Page END
34
- "#{@hash['PY']}\t" + # Q Year
35
- "#{month_in_number}\t" + # R Month
36
- "\t" + # S Date
37
- "#{and_separated_authors.gsub(" and ",", ")}\t" +
38
- "#{and_separated_authors.gsub(" and ",", ")}\t" +
39
- "#{@hash['UR']}\t" + # V URL of online journal
40
- "#{@hash['DI']}\t" + # W DOI
41
- "#{@hash['PY']-2000}#{sprintf("%.2d",@@order)}\t" + # X Bikou
42
- "\t" + # Y Order
43
- "1\n" # Z Status
18
+ "#{tohoku_id}\t" + # A ID
19
+ "#{name}\t" + # B Name
20
+ "#{@hash['TI']}\t" + # C Title
21
+ "#{@hash['TI']}\t" + # D Title in English
22
+ "01\t" + # E Language
23
+ "2\t" + # F Single author(1) or not(2)
24
+ "1\t" + # G Kind - 1:regular paper
25
+ "1\t" + # H Refereep - 0:nil 1:t
26
+ "0\t" + # I Invitedp - 0:nil 1:t
27
+ "Greatly\t" + # J Contribution
28
+ "#{ji2journal}\t" + # K Journal
29
+ "#{ji2journal}\t" + # L Journal in English
30
+ "#{@hash['VL']}\t" + # M Vol.
31
+ "#{@hash['IS']}\t" + # N No.
32
+ "#{@hash['AP'] or @hash['AR'] or @hash['BP']}\t" + # O Page BEGIN
33
+ "\t" + # P Page END
34
+ "#{@hash['PY']}\t" + # Q Year
35
+ "#{month_in_number}\t" + # R Month
36
+ "\t" + # S Date
37
+ "#{and_separated_authors.gsub(" and ",", ")}\t" + # T Authors original
38
+ "#{and_separated_authors.gsub(" and ",", ")}\t" + # U Authors in English
39
+ "#{@hash['UR']}\t" + # V URL of online journal
40
+ "#{@hash['DI']}\t" + # W DOI
41
+ "\t" + # X Bikou
42
+ "\t" + # Y Display order
43
+ "1\n" # Z Status
44
44
  end
45
45
 
46
46
  def to_bibtex
data/style.css ADDED
@@ -0,0 +1,63 @@
1
+ body
2
+ {
3
+ color: black;
4
+ font-family: verdana, arial, helvetica, sans-serif;
5
+ }
6
+
7
+ h1, h2, h3, h4, h6
8
+ {
9
+ font-family: verdana, arial, helvetica, sans-serif;
10
+ }
11
+
12
+ h1
13
+ {
14
+ color: red;
15
+ background-color: #fff0f0;
16
+ }
17
+
18
+ h2
19
+ {
20
+ border-top: red 5px solid;
21
+ border-bottom: red 1px solid;
22
+ padding-left: 8px;
23
+ background-color: #fff0f0;
24
+ }
25
+
26
+ h3
27
+ {
28
+ border-top: red 2px solid;
29
+ border-bottom: red 1px solid;
30
+ padding-left: 4px;
31
+ }
32
+
33
+ h4
34
+ {
35
+ border-top: red 1px solid;
36
+ padding-left: 4px;
37
+ background-color: #fff0f0;
38
+ }
39
+
40
+ h5
41
+ {
42
+ font-size: larger;
43
+ font-family: courier, verdana, arial, helvetica, sans-serif;
44
+ padding-top: 10px;
45
+ color: red;
46
+ }
47
+
48
+ pre
49
+ {
50
+ font-family: monospace, courier, verdana, arial, helvetica, sans-serif;
51
+ padding-right: 0.5em;
52
+ padding-left: 0.5em;
53
+ padding-top: 0.1ex;
54
+ padding-bottom: 0.1ex;
55
+ margin-left: 0.5em;
56
+ margin-right: 1.0em;
57
+ white-space: pre;
58
+ color: darkred;
59
+ background-color: #fff3f3;
60
+ }
61
+
62
+ div.navi { text-align: right;
63
+ margin-right: 1.0em; }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: isi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeshi Nishimatsu
@@ -9,7 +9,7 @@ autorequire: lib/isi.rb
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-22 00:00:00 +09:00
12
+ date: 2010-02-15 00:00:00 +09:00
13
13
  default_executable: isi2bibtex
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -22,7 +22,7 @@ dependencies:
22
22
  - !ruby/object:Gem::Version
23
23
  version: 1.0.0
24
24
  version:
25
- description: ISI Export Format to BibTeX Format converter. This is a Ruby script. You can use this script as a library, too. You can get the tagged Marked List in Web of Science by pushing the [SAVE TO FILE] button.
25
+ description: " \"isi\" is a set of Ruby libraries and scripts for ISI Export Format.\n isi2bibtex converts ISI Export Format to BibTeX Format.\n isi2html generates a list of articles in an HTML file.\n The package also includes isi2kakenhi and isi2tohoku.\n"
26
26
  email: t-nissie@imr.tohoku.ac.jp
27
27
  executables:
28
28
  - isi2bibtex
@@ -34,33 +34,15 @@ extensions: []
34
34
  extra_rdoc_files:
35
35
  - README
36
36
  files:
37
- - html/files
38
- - html/files/README.html
39
- - html/files/lib
40
- - html/files/lib/journaltitleabbreviation_rb.html
41
- - html/files/lib/isi_rb.html
42
- - html/rdoc-style.css
43
- - html/classes
44
- - html/classes/ISI_record.src
45
- - html/classes/ISI_record.src/M000004.html
46
- - html/classes/ISI_record.src/M000003.html
47
- - html/classes/ISI_record.src/M000002.html
48
- - html/classes/ARGF.html
49
- - html/classes/String.html
50
- - html/classes/ISI_record.html
51
- - html/classes/ARGF.src
52
- - html/classes/ARGF.src/M000005.html
53
- - html/classes/String.src
54
- - html/classes/String.src/M000001.html
55
- - html/created.rid
56
- - html/index.html
57
- - html/fr_class_index.html
58
- - html/fr_method_index.html
59
- - html/fr_file_index.html
60
37
  - lib/isi.rb
61
38
  - lib/journaltitleabbreviation.rb
62
39
  - tests/isi_test.rb
63
40
  - tests/example.isi
41
+ - index.ja.html
42
+ - index.en.html
43
+ - style.css
44
+ - favicon.ico
45
+ - COPYING
64
46
  - bin/isi2bibtex
65
47
  - ChangeLog
66
48
  - README
@@ -71,13 +53,11 @@ files:
71
53
  - NewsForRubyforge.txt
72
54
  has_rdoc: true
73
55
  homepage: http://isi-rb.rubyforge.org/
56
+ licenses: []
57
+
74
58
  post_install_message:
75
- rdoc_options:
76
- - --title
77
- - isi
78
- - --main
79
- - README
80
- - --line-numbers
59
+ rdoc_options: []
60
+
81
61
  require_paths:
82
62
  - lib
83
63
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -95,9 +75,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
75
  requirements: []
96
76
 
97
77
  rubyforge_project: isi-rb
98
- rubygems_version: 1.3.1
78
+ rubygems_version: 1.3.2
99
79
  signing_key:
100
- specification_version: 2
80
+ specification_version: 3
101
81
  summary: ISI Export Format to BibTeX Format converter. (Formerly named isi.rb or isi2bibtex.rb.)
102
82
  test_files:
103
83
  - tests/isi_test.rb
@@ -1,139 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <title>Module: ARGF [isi]</title>
6
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
8
- <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
9
- <script type="text/javascript">
10
- // <![CDATA[
11
-
12
- function popupCode( url ) {
13
- window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
14
- }
15
-
16
- function toggleCode( id ) {
17
- if ( document.getElementById )
18
- elem = document.getElementById( id );
19
- else if ( document.all )
20
- elem = eval( "document.all." + id );
21
- else
22
- return false;
23
-
24
- elemStyle = elem.style;
25
-
26
- if ( elemStyle.display != "block" ) {
27
- elemStyle.display = "block"
28
- } else {
29
- elemStyle.display = "none"
30
- }
31
-
32
- return true;
33
- }
34
-
35
- // Make codeblocks hidden by default
36
- document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }<\/style>" )
37
-
38
- // ]]>
39
- </script>
40
-
41
- </head>
42
- <body>
43
-
44
-
45
- <div id="classHeader">
46
- <table class="header-table">
47
- <tr class="top-aligned-row">
48
- <td><strong>Module</strong></td>
49
- <td class="class-name-in-header">ARGF</td>
50
- </tr>
51
- <tr class="top-aligned-row">
52
- <td><strong>In:</strong></td>
53
- <td>
54
-
55
-
56
- <a href="../files/lib/isi_rb.html">
57
-
58
- lib/isi.rb
59
-
60
- </a>
61
-
62
-
63
- <br />
64
-
65
- </td>
66
- </tr>
67
-
68
-
69
- </table>
70
- </div>
71
- <!-- banner header -->
72
-
73
- <div id="bodyContent">
74
-
75
- <div id="contextContent">
76
-
77
- </div>
78
-
79
-
80
- <div id="method-list">
81
- <h3 class="section-bar">Methods</h3>
82
-
83
- <div class="name-list">
84
-
85
- <a href="#M000005">read_an_ISI_record</a>&nbsp;&nbsp;
86
-
87
- </div>
88
- </div>
89
-
90
- </div>
91
-
92
- <!-- if includes -->
93
-
94
- <div id="section">
95
-
96
-
97
-
98
-
99
- <!-- if method_list -->
100
-
101
- <div id="methods">
102
-
103
- <h3 class="section-bar">Public Class methods</h3>
104
-
105
-
106
- <div id="method-M000005" class="method-detail">
107
- <a name="M000005"></a>
108
-
109
- <div class="method-heading">
110
-
111
- <a href="ARGF.src/M000005.html" target="Code" class="method-signature"
112
- onclick="popupCode('ARGF.src/M000005.html');return false;">
113
-
114
- <span class="method-name">read_an_ISI_record</span><span class="method-args">()</span>
115
-
116
- </a>
117
-
118
- </div>
119
-
120
- <div class="method-description">
121
-
122
- </div>
123
- </div>
124
-
125
-
126
-
127
- </div>
128
-
129
-
130
-
131
-
132
- </div>
133
-
134
- <div id="validator-badges">
135
- <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
136
- </div>
137
-
138
- </body>
139
- </html>