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/ChangeLog CHANGED
@@ -1,3 +1,11 @@
1
+ 2010-02-15 Takeshi Nishimatsu <t-nissie@imr.tohoku.ac.jp>
2
+
3
+ * bin/isi2html: isi-1.2.1 r59?
4
+
5
+ 2009-04-22 Takeshi Nishimatsu <t-nissie@imr.tohoku.ac.jp>
6
+
7
+ * lib/isi.rb (ISI_record::to_tohoku_DB): isi-1.2.0 r38?
8
+
1
9
  2008-02-20 Takeshi Nishimatsu <takeshi@physics.rutgers.edu>
2
10
 
3
11
  * isi-1.1.5.gem: r26
data/NewsForRubyforge.txt CHANGED
@@ -1,3 +1,6 @@
1
- New version of ISI Export Format to BibTeX Format converter is now ready.
2
- isi is a Ruby script and it can be used as a library, too.
1
+ New version of "isi" is now ready.
2
+ "isi" is a set of Ruby libraries and scripts for ISI Export Format.
3
+ isi2bibtex converts ISI Export Format to BibTeX Format.
4
+ isi2html generates a list of articles in an HTML file.
5
+ The package also includes isi2kakenhi and isi2tohoku.
3
6
  Visit its project homepage http://isi-rb.rubyforge.org/ .
data/README CHANGED
@@ -1,15 +1,16 @@
1
- = isi
2
-
1
+ = isi = Ruby Scripts and Libraries for ISI Export Format
3
2
  == What is isi?
4
- isi is an ISI Export Format to BibTeX Format converter written in
5
- Ruby script language. You can use isi as a library, too.
3
+ "isi" is a set of Ruby libraries and scripts for ISI Export Format.
4
+ isi2bibtex converts ISI Export Format to BibTeX Format.
5
+ isi2html generates a list of articles in an HTML file.
6
+ The package also includes isi2kakenhi and isi2tohoku.
6
7
 
7
- ISI Web of Science (http://isiknowledge.com) provides their bibliographic
8
+ (ISI Web of Science http://isiknowledge.com provides their bibliographic
8
9
  information in ISI Export Format. You can get the tagged Marked List in
9
- Web of Science by clicking the [SAVE TO FILE] button.
10
+ Web of Science by clicking the [SAVE TO FILE] button.)
10
11
 
11
12
  == Where is the homepage of isi?
12
- http://isi-rb.rubyforge.org
13
+ http://isi-rb.rubyforge.org/
13
14
 
14
15
  == Where can I download isi?
15
16
  Go to http://rubyforge.org/projects/isi-rb .
@@ -22,7 +23,7 @@ isi-X.Y.Z.tgz package can be installed as:
22
23
  $ cd isi-X.Y.Z
23
24
  $ su
24
25
  # ruby setup.rb
25
- Note that the text-format library (http://rubyforge.org/projects/text-format) is required.
26
+ Note that the text-format library http://rubyforge.org/projects/text-format is required.
26
27
  === II. RubyGems users can take an easy way
27
28
  There is an easy way, if you are a RubyGems user:
28
29
  $ su
@@ -45,7 +46,7 @@ e.g. savedrecs.txt.
45
46
  $ ruby isi.rb < savedrecs.txt > savedrecs.bib
46
47
  Last two lines are examples of usage for this installation way.
47
48
 
48
- Note that the text-format library (http://rubyforge.org/projects/text-format) is required.
49
+ Note that the text-format library http://rubyforge.org/projects/text-format is required.
49
50
 
50
51
  == How can I use it?
51
52
  === Save the marked records to an output file in ISI Web of Science
@@ -92,12 +93,13 @@ it will be useful, but WITHOUT ANY WARRANTY.
92
93
  You can copy, modify and redistribute isi,
93
94
  but only under the conditions described in
94
95
  the GNU General Public License (the "GPL").
96
+ For more detail, see COPYING.
95
97
 
96
98
  == Thanks to contributor(s)!
97
99
  * Marcin Dulak
98
100
 
99
101
  == Who is the author?
100
- NISHIMATSU Takeshi <t-nissie{at}imr.tohoku.ac.jp>
102
+ NISHIMATSU Takeshi t-nissie{at}imr.tohoku.ac.jp
101
103
 
102
104
  == Why did he write it?
103
105
  Because he do not like the output format of the Perl version.
@@ -116,8 +118,7 @@ You can checkout the latest source tree of isi anonymously from
116
118
  RubyForge with svn(1) command:
117
119
  $ svn checkout svn://rubyforge.org/var/svn/isi-rb/isi
118
120
 
119
- == Meanings of tags in ISI Export Format:
120
- See http://isibasic.com/help/helpprn.html .
121
+ == Meanings of tags in ISI Export Format
121
122
  === file-unique tags
122
123
  FN: File type. The file starts with 'FN ISI Export Format'
123
124
  VR: Version number of ISI export file format
@@ -177,10 +178,15 @@ See http://isibasic.com/help/helpprn.html .
177
178
  UR: URL
178
179
 
179
180
  == Known bugs
180
- * none.
181
+ * none.
181
182
 
182
183
  == TODO
183
- * lib/isi.rb combine ISI_record#and_separated_authors() and ISI_record#comma_and_separated_authors()
184
- into ISI_record#separated_authors()
185
- * Write papers, not tools for writing papers.
186
- * tests/isi_test.rb
184
+ * lib/isi.rb combine ISI_record#and_separated_authors() and ISI_record#comma_and_separated_authors()
185
+ into ISI_record#separated_authors()
186
+ * Write papers, not tools for writing papers.
187
+ * tests/isi_test.rb
188
+
189
+ # Local variables:
190
+ # mode: RD
191
+ # compile-command: "rake index.en.html"
192
+ # End:
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  #! /usr/bin/env rake
2
2
  # -*-Ruby-*-
3
- # Time-stamp: <2009-04-21 20:45:04 takeshi>
3
+ # Time-stamp: <2010-02-15 13:07:50 takeshi>
4
4
  # Author: Takeshi Nishimatsu
5
5
  ##
6
6
  $LOAD_PATH.unshift('lib')
@@ -8,18 +8,13 @@ $LOAD_PATH.unshift('lib')
8
8
  require 'rubygems'
9
9
  require 'rake/gempackagetask'
10
10
  require 'rake/testtask'
11
- require 'rake/rdoctask'
12
11
  require 'rake/clean'
13
- require 'rake/contrib/rubyforgepublisher'
14
12
  require 'isi.rb'
15
13
  require 'zlib'
16
14
 
17
15
  spec = eval(File.read("isi.gemspec"))
18
16
  spec.version = ISI_RB_VERSION
19
- RDOC_OPTS = %w(--title isi --main README --line-numbers)
20
- spec.rdoc_options = RDOC_OPTS
21
17
  ISI_PACKAGE_DIR = '..'
22
- CLEAN.include('html')
23
18
 
24
19
  desc "Build the RubyGem for isi"
25
20
  task :gem => [ :test ]
@@ -38,23 +33,23 @@ Rake::TestTask.new do |t|
38
33
  t.verbose = true
39
34
  end
40
35
 
41
- Rake::RDocTask.new do |rdoc|
42
- rdoc.rdoc_dir = 'html'
43
- rdoc.options = RDOC_OPTS
44
- if ENV['DOC_FILES']
45
- rdoc.rdoc_files.include(ENV['DOC_FILES'].split(/,\s*/))
46
- else
47
- rdoc.rdoc_files.include('README')
48
- rdoc.rdoc_files.include('lib/**/*.rb')
36
+ desc "Publish to RubyForge"
37
+ task :rubyforge => ["index.en.html",
38
+ "index.ja.html",
39
+ "style.css", "index.var", "favicon.ico", "dot.htaccess"] do |t|
40
+ t.prerequisites.each do |f|
41
+ sh "scp #{f} t-nissie@rubyforge.org:/var/www/gforge-projects/isi-rb/"
49
42
  end
43
+ sh "scp dot.htaccess t-nissie@rubyforge.org:/var/www/gforge-projects/isi-rb/.htaccess"
44
+ sh "scp index.en.html t-nissie@rubyforge.org:/var/www/gforge-projects/isi-rb/index.html"
50
45
  end
51
46
 
52
47
  desc "Build Packages"
53
- task :package => [ :rdoc, :isi_version_rb ]
48
+ task :package => [ :isi_version_rb, "index.en.html" ]
54
49
 
55
- desc "Publish to RubyForge"
56
- task :rubyforge => [ :rdoc ] do
57
- Rake::RubyForgePublisher.new('isi-rb', 't-nissie').upload
50
+ desc "Create index.en.html"
51
+ file "index.en.html" => ["style.css", "README"] do |t|
52
+ sh "ulmul2html -c 2..2 -s #{t.prerequisites[0]} #{t.prerequisites[1]} | sed -e 's%</h1>%</h1><div class=\"navi\">[<a href=\"index.en.html\">English</a>/<a href=\"index.ja.html\">Japanese</a>]</div>%' > #{t.name}"
58
53
  end
59
54
 
60
55
  desc "Copy lib/isi.rb ../isi-X.Y.Z.rb"
data/bin/isi2html CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  # isi2html -*-Ruby-*-
3
- # Time-stamp: <2009-04-21 21:08:56 takeshi>
3
+ # Time-stamp: <2009-06-30 12:08:07 takeshi>
4
4
  # Description: isi2html is an ISI Export Format to HTML Format converter.
5
5
  # Project homepage: http://isi-rb.rubyforge.org/
6
6
  # Usage: isi2html --name-regexp='(H\. Yukawa|Hideki Yukawa)' savedrecs.txt > index.html
@@ -11,7 +11,7 @@ require "optparse"
11
11
 
12
12
  class ISI_record
13
13
  def to_html(name_regexp)
14
- " <li>
14
+ " <li value=\"#{@@order}\" id=\"id#{@@order}\">
15
15
  #{comma_and_separated_authors.sub(name_regexp,'<u>\1</u>')}:
16
16
  \"#{@hash['TI']}\",
17
17
  #{ji2journal} <b>#{@hash['VL']}</b>, #{pages} (#{@hash['PY']})#{', ' + doi_html_link if doi_html_link},
data/favicon.ico ADDED
Binary file
data/index.en.html ADDED
@@ -0,0 +1,333 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
6
+ <head>
7
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
+ <title>isi = Ruby Scripts and Libraries for ISI Export Format</title>
9
+ <meta name="author" content="takeshi" />
10
+ <meta name="copyright" content="Copyright &#169; 2010 takeshi" />
11
+ <link rel="stylesheet" href="style.css" type="text/css" />
12
+ <link rel="shortcut icon" href="favicon.ico" />
13
+ </head>
14
+ <body>
15
+ <div class="slide cover">
16
+ <h1 id="LABEL-1">isi = Ruby Scripts and Libraries for ISI Export Format</h1><div class="navi">[<a href="index.en.html">English</a>/<a href="index.ja.html">Japanese</a>]</div>
17
+ <br />Contents:
18
+ <ul>
19
+ <li><a href="#LABEL-2">What is isi?</a></li>
20
+ <li><a href="#LABEL-3">Where is the homepage of isi?</a></li>
21
+ <li><a href="#LABEL-4">Where can I download isi?</a></li>
22
+ <li><a href="#LABEL-5">How can I install isi?</a></li>
23
+ <li><a href="#LABEL-9">How can I use it?</a></li>
24
+ <li><a href="#LABEL-14">Copying</a></li>
25
+ <li><a href="#LABEL-15">Thanks to contributor(s)!</a></li>
26
+ <li><a href="#LABEL-16">Who is the author?</a></li>
27
+ <li><a href="#LABEL-17">Why did he write it?</a></li>
28
+ <li><a href="#LABEL-18">Is there a Perl version?</a></li>
29
+ <li><a href="#LABEL-19">I do not like the output format of isi2bibtex, neither!</a></li>
30
+ <li><a href="#LABEL-20">How can I get the latest source tree of isi?</a></li>
31
+ <li><a href="#LABEL-21">Meanings of tags in ISI Export Format</a></li>
32
+ <li><a href="#LABEL-25">Known bugs</a></li>
33
+ <li><a href="#LABEL-26">TODO</a></li>
34
+ </ul>
35
+
36
+ </div>
37
+
38
+
39
+ <div class="slide">
40
+ <h2 id="LABEL-2">What is isi?</h2>
41
+ <p>
42
+ "isi" is a set of Ruby libraries and scripts for ISI Export Format.
43
+ isi2bibtex converts ISI Export Format to BibTeX Format.
44
+ isi2html generates a list of articles in an HTML file.
45
+ The package also includes isi2kakenhi and isi2tohoku.
46
+ </p>
47
+ <p>
48
+ (ISI Web of Science <a href="http://isiknowledge.com">http://isiknowledge.com</a> provides their bibliographic
49
+ information in ISI Export Format. You can get the tagged Marked List in
50
+ Web of Science by clicking the [SAVE TO FILE] button.)
51
+ </p>
52
+ </div>
53
+
54
+
55
+ <div class="slide">
56
+ <h2 id="LABEL-3">Where is the homepage of isi?</h2>
57
+ <p>
58
+ <a href="http://isi-rb.rubyforge.org/">http://isi-rb.rubyforge.org/</a>
59
+ </p>
60
+ </div>
61
+
62
+
63
+ <div class="slide">
64
+ <h2 id="LABEL-4">Where can I download isi?</h2>
65
+ <p>
66
+ Go to <a href="http://rubyforge.org/projects/isi-rb">http://rubyforge.org/projects/isi-rb</a> .
67
+ </p>
68
+ </div>
69
+
70
+
71
+ <div class="slide">
72
+ <h2 id="LABEL-5">How can I install isi?</h2>
73
+ <p>
74
+ There are three different ways to install isi.
75
+ </p>
76
+ <h3 id="LABEL-6">I. Conservative way; use setup.rb</h3>
77
+ <p>
78
+ isi-X.Y.Z.tgz package can be installed as:
79
+ </p>
80
+ <pre> $ tar zxf isi-X.Y.Z.tgz
81
+ $ cd isi-X.Y.Z
82
+ $ su
83
+ # ruby setup.rb
84
+ </pre>
85
+ <p>
86
+ Note that the text-format library <a href="http://rubyforge.org/projects/text-format">http://rubyforge.org/projects/text-format</a> is required.
87
+ </p>
88
+ <h3 id="LABEL-7">II. RubyGems users can take an easy way</h3>
89
+ <p>
90
+ There is an easy way, if you are a RubyGems user:
91
+ </p>
92
+ <pre> $ su
93
+ # gem install isi
94
+ </pre>
95
+ <p>
96
+ If you do not have the text-format library, gem will download and install the library
97
+ automatically. The gem server is busy sometimes. If you fail in downloading, please
98
+ try again.
99
+ </p>
100
+ <h3 id="LABEL-8">III. Simple way; just copy isi.rb and journaltitleabbreviation.rb</h3>
101
+ <p>
102
+ Just copy lib/isi.rb (isi-X.Y.Z.rb) and
103
+ lib/journaltitleabbreviation.rb (journaltitleabbreviation-X.Y.Z.rb)
104
+ into your working directory which contains your saved "Marked List",
105
+ e.g. savedrecs.txt.
106
+ </p>
107
+ <pre> $ cp lib/isi.rb lib/journaltitleabbreviation.rb ~/your/working/directory/
108
+ ($ cp isi-X.Y.Z.rb ~/your/working/directory/isi.rb)
109
+ $ cp lib/journaltitleabbreviation.rb ~/your/working/directory/
110
+ ($ cp journaltitleabbreviation-X.Y.Z.rb ~/your/working/directory/journaltitleabbreviation.rb)
111
+ $ cd ~/your/working/directory/
112
+ $ ruby isi.rb savedrecs1.txt savedrecs2.txt
113
+ $ ruby isi.rb &lt; savedrecs.txt &gt; savedrecs.bib
114
+ </pre>
115
+ <p>
116
+ Last two lines are examples of usage for this installation way.
117
+ </p>
118
+ <p>
119
+ Note that the text-format library <a href="http://rubyforge.org/projects/text-format">http://rubyforge.org/projects/text-format</a> is required.
120
+ </p>
121
+ </div>
122
+
123
+
124
+ <div class="slide">
125
+ <h2 id="LABEL-9">How can I use it?</h2>
126
+ <h3 id="LABEL-10">Save the marked records to an output file in ISI Web of Science</h3>
127
+ <p>
128
+ Mark the articles in ISI Web of Science. Then, view and save the
129
+ marked records to an output file (savedrecs.txt). I recommend to
130
+ check "Author(s)", "Title", "Source", "abstract*", "keywords",
131
+ "times cited" and "source abbreviation" as the fields to include
132
+ in the output file.
133
+ </p>
134
+ <h3 id="LABEL-11">Here are some examples</h3>
135
+ <pre> $ isi2bibtex savedrecs.txt
136
+ $ isi2bibtex savedrecs1.txt savedrecs2.txt &gt; savedrecs.bib
137
+ $ isi2bibtex &lt; savedrecs.txt &gt; savedrecs.bib
138
+ $ cat savedrecs.txt | isi2bibtex &gt; savedrecs.bib
139
+ </pre>
140
+ <h3 id="LABEL-12">Some other useful executables</h3>
141
+ <p>
142
+ For KakenhiLaTeX <a href="http://osksn2.hep.sci.osaka-u.ac.jp/~taku/kakenhiLaTeX/">http://osksn2.hep.sci.osaka-u.ac.jp/~taku/kakenhiLaTeX/</a>
143
+ </p>
144
+ <pre> $ isi2kakenhi --help
145
+ $ isi2kakenhi --name-regexp='(H\. Yukawa|Hideki Yukawa)' savedrecs.txt &gt; papers.tex
146
+ </pre>
147
+ <p>
148
+ For the database of "Academic Research Staff at Tohoku University" <a href="http://db.tohoku.ac.jp/whois/TunvTopE.html">http://db.tohoku.ac.jp/whois/TunvTopE.html</a>
149
+ </p>
150
+ <pre> $ isi2tohoku --help
151
+ $ isi2tohoku --id 12345678 --name 'Example Name' savedrecs.txt
152
+ </pre>
153
+ <p>
154
+ To convert ISI Export Format to HTML
155
+ </p>
156
+ <pre> $ isi2html --help
157
+ $ isi2html --full-name='Hideki Yukawa' --name-regexp='(H\. Yukawa|Hideki Yukawa)' savedrecs.txt &gt; index.html
158
+ </pre>
159
+ <h3 id="LABEL-13">You can use isi as a library.</h3>
160
+ <p>
161
+ Here is an example:
162
+ </p>
163
+ <pre> #!/usr/bin/env ruby
164
+ ##
165
+ require 'rubygems' # You may not need this line.
166
+ require 'isi'
167
+
168
+ class ISI_record
169
+ def to_title_author
170
+ "#{@hash['TI']} - #{and_separated_authors}\n"
171
+ end
172
+ end
173
+
174
+ while rec = ARGF.read_an_ISI_record
175
+ print rec.to_title_author
176
+ end
177
+ </pre>
178
+ </div>
179
+
180
+
181
+ <div class="slide">
182
+ <h2 id="LABEL-14">Copying</h2>
183
+ <p>
184
+ isi is distributed in the hope that
185
+ it will be useful, but WITHOUT ANY WARRANTY.
186
+ You can copy, modify and redistribute isi,
187
+ but only under the conditions described in
188
+ the GNU General Public License (the "GPL").
189
+ For more detail, see COPYING.
190
+ </p>
191
+ </div>
192
+
193
+
194
+ <div class="slide">
195
+ <h2 id="LABEL-15">Thanks to contributor(s)!</h2>
196
+ <p>
197
+ * Marcin Dulak
198
+ </p>
199
+ </div>
200
+
201
+
202
+ <div class="slide">
203
+ <h2 id="LABEL-16">Who is the author?</h2>
204
+ <p>
205
+ NISHIMATSU Takeshi t-nissie{at}imr.tohoku.ac.jp
206
+ </p>
207
+ </div>
208
+
209
+
210
+ <div class="slide">
211
+ <h2 id="LABEL-17">Why did he write it?</h2>
212
+ <p>
213
+ Because he do not like the output format of the Perl version.
214
+ </p>
215
+ </div>
216
+
217
+
218
+ <div class="slide">
219
+ <h2 id="LABEL-18">Is there a Perl version?</h2>
220
+ <p>
221
+ Yes.
222
+ You can find the Perl version by Jonathan Swinton, Ben Bolker, Anthony Stone, John J. Lee
223
+ in CTAN <a href="http://www.ctan.org/tex-archive/biblio/bibtex/utils/isi2bibtex">http://www.ctan.org/tex-archive/biblio/bibtex/utils/isi2bibtex</a> .
224
+ </p>
225
+ </div>
226
+
227
+
228
+ <div class="slide">
229
+ <h2 id="LABEL-19">I do not like the output format of isi2bibtex, neither!</h2>
230
+ <p>
231
+ The output format is defined in the source code WYSIWYGly.
232
+ So you can easily change the output format by yourself.
233
+ </p>
234
+ </div>
235
+
236
+
237
+ <div class="slide">
238
+ <h2 id="LABEL-20">How can I get the latest source tree of isi?</h2>
239
+ <p>
240
+ You can checkout the latest source tree of isi anonymously from
241
+ RubyForge with svn(1) command:
242
+ </p>
243
+ <pre> $ svn checkout svn://rubyforge.org/var/svn/isi-rb/isi
244
+ </pre>
245
+ </div>
246
+
247
+
248
+ <div class="slide">
249
+ <h2 id="LABEL-21">Meanings of tags in ISI Export Format</h2>
250
+ <h3 id="LABEL-22">file-unique tags</h3>
251
+ <pre>FN: File type. The file starts with 'FN ISI Export Format'
252
+ VR: Version number of ISI export file format
253
+ EF: End of file
254
+ </pre>
255
+ <h3 id="LABEL-23">normal tags</h3>
256
+ <pre>AB: Abstract
257
+ AF: Authors Full (AU Foo, BAR -&gt; AF Foo, B. A. R.; AU Nishimatsu, T -&gt; AF Nishimatsu Takeshi)
258
+ AP: Article number of new APS journals (in ISI Web of Knowledge, 2008-)
259
+ AR: Article number of new APS journals
260
+ AU: Authors
261
+ BN: ISBN
262
+ BP: Beginning page
263
+ C1: Research addresses
264
+ CA: Group authors
265
+ CL: Conference location
266
+ CR: Cited references
267
+ CT: Conference title
268
+ CY: Conference Date
269
+ DE: Original keywords
270
+ DI: DOI
271
+ DT: Document type
272
+ ED: Editors
273
+ EM: E-mail address
274
+ EP: Ending page
275
+ ER: end of a record
276
+ FN: File name
277
+ FU: Funding agency and grant number
278
+ FX: Funding text
279
+ GA: IDS number (ISI original)
280
+ ID: New keywords given by ISI
281
+ IS: issue
282
+ J9: 29-character journal title abbreviation
283
+ JI: ISO journal title abbreviation
284
+ LA: Language
285
+ NR: Cited reference count
286
+ PD: Publication date e.g. "JUN 8" or "JUL"
287
+ PA: Publisher Address
288
+ PG: the number of pages
289
+ PI: Publisher city
290
+ PN: Part number
291
+ PT: Publication type (e.g., book, journal, book in series)
292
+ PU: Publisher
293
+ PY: Publication year
294
+ RP: Reprint address
295
+ SE: Book series title
296
+ SI: Special issue
297
+ SN: ISSN
298
+ SO: journal title, in full
299
+ SP: Conference Sponsors
300
+ SU: Supplement
301
+ TC: Times cited
302
+ TI: Title
303
+ UT: ISI unique article identifier
304
+ VL: Volume
305
+ WP: Publisher web address
306
+ </pre>
307
+ <h3 id="LABEL-24">isi original tags</h3>
308
+ <pre>UR: URL
309
+ </pre>
310
+ </div>
311
+
312
+
313
+ <div class="slide">
314
+ <h2 id="LABEL-25">Known bugs</h2>
315
+
316
+ <ul>
317
+ <li>none.</li>
318
+ </ul>
319
+ </div>
320
+
321
+
322
+ <div class="slide">
323
+ <h2 id="LABEL-26">TODO</h2>
324
+
325
+ <ul>
326
+ <li>lib/isi.rb combine ISI_record#and_separated_authors() and ISI_record#comma_and_separated_authors()
327
+ into ISI_record#separated_authors()</li>
328
+ <li>Write papers, not tools for writing papers.</li>
329
+ <li>tests/isi_test.rb</li>
330
+ </ul>
331
+ </div>
332
+ </body>
333
+ </html>