biblicit 1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +3 -0
- data/.rspec +1 -0
- data/Gemfile +6 -0
- data/LICENSE.TXT +176 -0
- data/README.md +120 -0
- data/Rakefile +8 -0
- data/biblicit.gemspec +33 -0
- data/lib/biblicit/cb2bib.rb +83 -0
- data/lib/biblicit/citeseer.rb +53 -0
- data/lib/biblicit/extractor.rb +37 -0
- data/lib/biblicit.rb +6 -0
- data/perl/DocFilter/lib/CSXUtil/SafeText.pm +140 -0
- data/perl/DocFilter/lib/DocFilter/Config.pm +35 -0
- data/perl/DocFilter/lib/DocFilter/Filter.pm +51 -0
- data/perl/FileConversionService/README.TXT +11 -0
- data/perl/FileConversionService/converters/PDFBox/pdfbox-app-1.7.1.jar +0 -0
- data/perl/FileConversionService/lib/CSXUtil/SafeText.pm +140 -0
- data/perl/FileConversionService/lib/FileConverter/CheckSum.pm +77 -0
- data/perl/FileConversionService/lib/FileConverter/Compression.pm +137 -0
- data/perl/FileConversionService/lib/FileConverter/Config.pm +57 -0
- data/perl/FileConversionService/lib/FileConverter/Controller.pm +191 -0
- data/perl/FileConversionService/lib/FileConverter/JODConverter.pm +61 -0
- data/perl/FileConversionService/lib/FileConverter/PDFBox.pm +69 -0
- data/perl/FileConversionService/lib/FileConverter/PSConverter.pm +69 -0
- data/perl/FileConversionService/lib/FileConverter/PSToText.pm +88 -0
- data/perl/FileConversionService/lib/FileConverter/Prescript.pm +68 -0
- data/perl/FileConversionService/lib/FileConverter/TET.pm +75 -0
- data/perl/FileConversionService/lib/FileConverter/Utils.pm +130 -0
- data/perl/HeaderParseService/README.TXT +80 -0
- data/perl/HeaderParseService/lib/CSXUtil/SafeText.pm +140 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/AssembleXMLMetadata.pm +968 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/Function.pm +2016 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/LoadInformation.pm +444 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/MultiClassChunking.pm +409 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/NamePatternMatch.pm +537 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/Parser.pm +68 -0
- data/perl/HeaderParseService/lib/HeaderParse/API/ParserMethods.pm +1880 -0
- data/perl/HeaderParseService/lib/HeaderParse/Config/API_Config.pm +46 -0
- data/perl/HeaderParseService/resources/data/EbizHeaders.txt +24330 -0
- data/perl/HeaderParseService/resources/data/EbizHeaders.txt.parsed +27506 -0
- data/perl/HeaderParseService/resources/data/EbizHeaders.txt.parsed.old +26495 -0
- data/perl/HeaderParseService/resources/data/tagged_headers.txt +40668 -0
- data/perl/HeaderParseService/resources/data/test_header.txt +31 -0
- data/perl/HeaderParseService/resources/data/test_header.txt.parsed +31 -0
- data/perl/HeaderParseService/resources/database/50states +60 -0
- data/perl/HeaderParseService/resources/database/AddrTopWords.txt +17 -0
- data/perl/HeaderParseService/resources/database/AffiTopWords.txt +35 -0
- data/perl/HeaderParseService/resources/database/AffiTopWordsAll.txt +533 -0
- data/perl/HeaderParseService/resources/database/ChineseSurNames.txt +276 -0
- data/perl/HeaderParseService/resources/database/Csurnames.bin +0 -0
- data/perl/HeaderParseService/resources/database/Csurnames_spec.bin +0 -0
- data/perl/HeaderParseService/resources/database/DomainSuffixes.txt +242 -0
- data/perl/HeaderParseService/resources/database/LabeledHeader +18 -0
- data/perl/HeaderParseService/resources/database/README +2 -0
- data/perl/HeaderParseService/resources/database/TrainMulClassLines +254 -0
- data/perl/HeaderParseService/resources/database/TrainMulClassLines1 +510 -0
- data/perl/HeaderParseService/resources/database/abstract.txt +1 -0
- data/perl/HeaderParseService/resources/database/abstractTopWords +9 -0
- data/perl/HeaderParseService/resources/database/addr.txt +28 -0
- data/perl/HeaderParseService/resources/database/affi.txt +34 -0
- data/perl/HeaderParseService/resources/database/affis.bin +0 -0
- data/perl/HeaderParseService/resources/database/all_namewords_spec.bin +0 -0
- data/perl/HeaderParseService/resources/database/allnamewords.bin +0 -0
- data/perl/HeaderParseService/resources/database/cities_US.txt +4512 -0
- data/perl/HeaderParseService/resources/database/cities_world.txt +4463 -0
- data/perl/HeaderParseService/resources/database/city.txt +3150 -0
- data/perl/HeaderParseService/resources/database/cityname.txt +3151 -0
- data/perl/HeaderParseService/resources/database/country_abbr.txt +243 -0
- data/perl/HeaderParseService/resources/database/countryname.txt +262 -0
- data/perl/HeaderParseService/resources/database/dateTopWords +30 -0
- data/perl/HeaderParseService/resources/database/degree.txt +67 -0
- data/perl/HeaderParseService/resources/database/email.txt +3 -0
- data/perl/HeaderParseService/resources/database/excludeWords.txt +40 -0
- data/perl/HeaderParseService/resources/database/female-names +4960 -0
- data/perl/HeaderParseService/resources/database/firstNames.txt +8448 -0
- data/perl/HeaderParseService/resources/database/firstnames.bin +0 -0
- data/perl/HeaderParseService/resources/database/firstnames_spec.bin +0 -0
- data/perl/HeaderParseService/resources/database/intro.txt +2 -0
- data/perl/HeaderParseService/resources/database/keyword.txt +5 -0
- data/perl/HeaderParseService/resources/database/keywordTopWords +7 -0
- data/perl/HeaderParseService/resources/database/male-names +3906 -0
- data/perl/HeaderParseService/resources/database/middleNames.txt +2 -0
- data/perl/HeaderParseService/resources/database/month.txt +35 -0
- data/perl/HeaderParseService/resources/database/mul +868 -0
- data/perl/HeaderParseService/resources/database/mul.label +869 -0
- data/perl/HeaderParseService/resources/database/mul.label.old +869 -0
- data/perl/HeaderParseService/resources/database/mul.processed +762 -0
- data/perl/HeaderParseService/resources/database/mulAuthor +619 -0
- data/perl/HeaderParseService/resources/database/mulClassStat +45 -0
- data/perl/HeaderParseService/resources/database/nickname.txt +58 -0
- data/perl/HeaderParseService/resources/database/nicknames.bin +0 -0
- data/perl/HeaderParseService/resources/database/note.txt +121 -0
- data/perl/HeaderParseService/resources/database/page.txt +1 -0
- data/perl/HeaderParseService/resources/database/phone.txt +9 -0
- data/perl/HeaderParseService/resources/database/postcode.txt +54 -0
- data/perl/HeaderParseService/resources/database/pubnum.txt +45 -0
- data/perl/HeaderParseService/resources/database/statename.bin +0 -0
- data/perl/HeaderParseService/resources/database/statename.txt +73 -0
- data/perl/HeaderParseService/resources/database/states_and_abbreviations.txt +118 -0
- data/perl/HeaderParseService/resources/database/stopwords +438 -0
- data/perl/HeaderParseService/resources/database/stopwords.bin +0 -0
- data/perl/HeaderParseService/resources/database/surNames.txt +19613 -0
- data/perl/HeaderParseService/resources/database/surnames.bin +0 -0
- data/perl/HeaderParseService/resources/database/surnames_spec.bin +0 -0
- data/perl/HeaderParseService/resources/database/university_list/A.html +167 -0
- data/perl/HeaderParseService/resources/database/university_list/B.html +161 -0
- data/perl/HeaderParseService/resources/database/university_list/C.html +288 -0
- data/perl/HeaderParseService/resources/database/university_list/D.html +115 -0
- data/perl/HeaderParseService/resources/database/university_list/E.html +147 -0
- data/perl/HeaderParseService/resources/database/university_list/F.html +112 -0
- data/perl/HeaderParseService/resources/database/university_list/G.html +115 -0
- data/perl/HeaderParseService/resources/database/university_list/H.html +140 -0
- data/perl/HeaderParseService/resources/database/university_list/I.html +138 -0
- data/perl/HeaderParseService/resources/database/university_list/J.html +82 -0
- data/perl/HeaderParseService/resources/database/university_list/K.html +115 -0
- data/perl/HeaderParseService/resources/database/university_list/L.html +131 -0
- data/perl/HeaderParseService/resources/database/university_list/M.html +201 -0
- data/perl/HeaderParseService/resources/database/university_list/N.html +204 -0
- data/perl/HeaderParseService/resources/database/university_list/O.html +89 -0
- data/perl/HeaderParseService/resources/database/university_list/P.html +125 -0
- data/perl/HeaderParseService/resources/database/university_list/Q.html +49 -0
- data/perl/HeaderParseService/resources/database/university_list/R.html +126 -0
- data/perl/HeaderParseService/resources/database/university_list/S.html +296 -0
- data/perl/HeaderParseService/resources/database/university_list/T.html +156 -0
- data/perl/HeaderParseService/resources/database/university_list/U.html +800 -0
- data/perl/HeaderParseService/resources/database/university_list/V.html +75 -0
- data/perl/HeaderParseService/resources/database/university_list/W.html +144 -0
- data/perl/HeaderParseService/resources/database/university_list/WCSelect.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/X.html +44 -0
- data/perl/HeaderParseService/resources/database/university_list/Y.html +53 -0
- data/perl/HeaderParseService/resources/database/university_list/Z.html +43 -0
- data/perl/HeaderParseService/resources/database/university_list/ae.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/am.html +30 -0
- data/perl/HeaderParseService/resources/database/university_list/ar.html +35 -0
- data/perl/HeaderParseService/resources/database/university_list/at.html +43 -0
- data/perl/HeaderParseService/resources/database/university_list/au.html +82 -0
- data/perl/HeaderParseService/resources/database/university_list/bd.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/be.html +41 -0
- data/perl/HeaderParseService/resources/database/university_list/bg.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/bh.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/blueribbon.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/bm.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/bn.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/br.html +66 -0
- data/perl/HeaderParseService/resources/database/university_list/ca.html +174 -0
- data/perl/HeaderParseService/resources/database/university_list/ch.html +52 -0
- data/perl/HeaderParseService/resources/database/university_list/cl.html +40 -0
- data/perl/HeaderParseService/resources/database/university_list/cn.html +87 -0
- data/perl/HeaderParseService/resources/database/university_list/co.html +39 -0
- data/perl/HeaderParseService/resources/database/university_list/cr.html +34 -0
- data/perl/HeaderParseService/resources/database/university_list/cy.html +34 -0
- data/perl/HeaderParseService/resources/database/university_list/cz.html +44 -0
- data/perl/HeaderParseService/resources/database/university_list/de.html +128 -0
- data/perl/HeaderParseService/resources/database/university_list/dean-mainlink.jpg +0 -0
- data/perl/HeaderParseService/resources/database/university_list/dk.html +42 -0
- data/perl/HeaderParseService/resources/database/university_list/ec.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/ee.html +30 -0
- data/perl/HeaderParseService/resources/database/university_list/eg.html +29 -0
- data/perl/HeaderParseService/resources/database/university_list/es.html +68 -0
- data/perl/HeaderParseService/resources/database/university_list/et.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/faq.html +147 -0
- data/perl/HeaderParseService/resources/database/university_list/fi.html +49 -0
- data/perl/HeaderParseService/resources/database/university_list/fj.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/fo.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/fr.html +106 -0
- data/perl/HeaderParseService/resources/database/university_list/geog.html +150 -0
- data/perl/HeaderParseService/resources/database/university_list/gr.html +38 -0
- data/perl/HeaderParseService/resources/database/university_list/gu.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/hk.html +34 -0
- data/perl/HeaderParseService/resources/database/university_list/hr.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/hu.html +46 -0
- data/perl/HeaderParseService/resources/database/university_list/id.html +29 -0
- data/perl/HeaderParseService/resources/database/university_list/ie.html +49 -0
- data/perl/HeaderParseService/resources/database/university_list/il.html +35 -0
- data/perl/HeaderParseService/resources/database/university_list/in.html +109 -0
- data/perl/HeaderParseService/resources/database/university_list/is.html +32 -0
- data/perl/HeaderParseService/resources/database/university_list/it.html +75 -0
- data/perl/HeaderParseService/resources/database/university_list/jm.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/jo.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/jp.html +155 -0
- data/perl/HeaderParseService/resources/database/university_list/kaplan.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/kr.html +65 -0
- data/perl/HeaderParseService/resources/database/university_list/kw.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/lb.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/linkbw2.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/lk.html +30 -0
- data/perl/HeaderParseService/resources/database/university_list/lt.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/lu.html +34 -0
- data/perl/HeaderParseService/resources/database/university_list/lv.html +30 -0
- data/perl/HeaderParseService/resources/database/university_list/ma.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/maczynski.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/mirror.tar +0 -0
- data/perl/HeaderParseService/resources/database/university_list/mk.html +29 -0
- data/perl/HeaderParseService/resources/database/university_list/mo.html +29 -0
- data/perl/HeaderParseService/resources/database/university_list/mseawdm.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/mt.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/mx.html +68 -0
- data/perl/HeaderParseService/resources/database/university_list/my.html +39 -0
- data/perl/HeaderParseService/resources/database/university_list/ni.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/nl.html +51 -0
- data/perl/HeaderParseService/resources/database/university_list/no.html +56 -0
- data/perl/HeaderParseService/resources/database/university_list/nz.html +41 -0
- data/perl/HeaderParseService/resources/database/university_list/pa.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/pe.html +40 -0
- data/perl/HeaderParseService/resources/database/university_list/ph.html +41 -0
- data/perl/HeaderParseService/resources/database/university_list/pl.html +51 -0
- data/perl/HeaderParseService/resources/database/university_list/pointcom.gif +0 -0
- data/perl/HeaderParseService/resources/database/university_list/pr.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/ps.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/pt.html +45 -0
- data/perl/HeaderParseService/resources/database/university_list/recognition.html +69 -0
- data/perl/HeaderParseService/resources/database/university_list/results.html +71 -0
- data/perl/HeaderParseService/resources/database/university_list/ro.html +38 -0
- data/perl/HeaderParseService/resources/database/university_list/ru.html +48 -0
- data/perl/HeaderParseService/resources/database/university_list/sd.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/se.html +57 -0
- data/perl/HeaderParseService/resources/database/university_list/sg.html +33 -0
- data/perl/HeaderParseService/resources/database/university_list/si.html +30 -0
- data/perl/HeaderParseService/resources/database/university_list/sk.html +35 -0
- data/perl/HeaderParseService/resources/database/university_list/th.html +45 -0
- data/perl/HeaderParseService/resources/database/university_list/tr.html +44 -0
- data/perl/HeaderParseService/resources/database/university_list/tw.html +76 -0
- data/perl/HeaderParseService/resources/database/university_list/ua.html +29 -0
- data/perl/HeaderParseService/resources/database/university_list/uk.html +168 -0
- data/perl/HeaderParseService/resources/database/university_list/univ-full.html +3166 -0
- data/perl/HeaderParseService/resources/database/university_list/univ.html +122 -0
- data/perl/HeaderParseService/resources/database/university_list/uy.html +31 -0
- data/perl/HeaderParseService/resources/database/university_list/ve.html +34 -0
- data/perl/HeaderParseService/resources/database/university_list/yu.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list/za.html +46 -0
- data/perl/HeaderParseService/resources/database/university_list/zm.html +28 -0
- data/perl/HeaderParseService/resources/database/university_list.txt +3025 -0
- data/perl/HeaderParseService/resources/database/url.txt +1 -0
- data/perl/HeaderParseService/resources/database/webTopWords +225 -0
- data/perl/HeaderParseService/resources/database/words +45402 -0
- data/perl/HeaderParseService/resources/models/10ContextModelfold1 +369 -0
- data/perl/HeaderParseService/resources/models/10Modelfold1 +376 -0
- data/perl/HeaderParseService/resources/models/11ContextModelfold1 +400 -0
- data/perl/HeaderParseService/resources/models/11Modelfold1 +526 -0
- data/perl/HeaderParseService/resources/models/12ContextModelfold1 +510 -0
- data/perl/HeaderParseService/resources/models/12Modelfold1 +423 -0
- data/perl/HeaderParseService/resources/models/13ContextModelfold1 +364 -0
- data/perl/HeaderParseService/resources/models/13Modelfold1 +677 -0
- data/perl/HeaderParseService/resources/models/14ContextModelfold1 +459 -0
- data/perl/HeaderParseService/resources/models/14Modelfold1 +325 -0
- data/perl/HeaderParseService/resources/models/15ContextModelfold1 +340 -0
- data/perl/HeaderParseService/resources/models/15Modelfold1 +390 -0
- data/perl/HeaderParseService/resources/models/1ContextModelfold1 +668 -0
- data/perl/HeaderParseService/resources/models/1Modelfold1 +1147 -0
- data/perl/HeaderParseService/resources/models/2ContextModelfold1 +755 -0
- data/perl/HeaderParseService/resources/models/2Modelfold1 +796 -0
- data/perl/HeaderParseService/resources/models/3ContextModelfold1 +1299 -0
- data/perl/HeaderParseService/resources/models/3Modelfold1 +1360 -0
- data/perl/HeaderParseService/resources/models/4ContextModelfold1 +1062 -0
- data/perl/HeaderParseService/resources/models/4Modelfold1 +993 -0
- data/perl/HeaderParseService/resources/models/5ContextModelfold1 +1339 -0
- data/perl/HeaderParseService/resources/models/5Modelfold1 +2098 -0
- data/perl/HeaderParseService/resources/models/6ContextModelfold1 +888 -0
- data/perl/HeaderParseService/resources/models/6Modelfold1 +620 -0
- data/perl/HeaderParseService/resources/models/7ContextModelfold1 +257 -0
- data/perl/HeaderParseService/resources/models/7Modelfold1 +228 -0
- data/perl/HeaderParseService/resources/models/8ContextModelfold1 +677 -0
- data/perl/HeaderParseService/resources/models/8Modelfold1 +1871 -0
- data/perl/HeaderParseService/resources/models/9ContextModelfold1 +198 -0
- data/perl/HeaderParseService/resources/models/9Modelfold1 +170 -0
- data/perl/HeaderParseService/resources/models/NameSpaceModel +181 -0
- data/perl/HeaderParseService/resources/models/NameSpaceTrainF +347 -0
- data/perl/HeaderParseService/resources/models/WrapperBaseFeaDict +13460 -0
- data/perl/HeaderParseService/resources/models/WrapperContextFeaDict +14045 -0
- data/perl/HeaderParseService/resources/models/WrapperSpaceAuthorFeaDict +510 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test1 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test10 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test11 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test12 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test13 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test14 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test15 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test2 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test3 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test4 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test5 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test6 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test7 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test8 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_1156237246.08016_test9 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test1 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test10 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test11 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test12 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test13 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test14 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test15 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test2 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test3 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test4 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test5 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test6 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test7 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test8 +23 -0
- data/perl/HeaderParseService/tmp/tmpVec_914027525.276114_test9 +23 -0
- data/perl/ParsCit/README.TXT +82 -0
- data/perl/ParsCit/crfpp/traindata/parsCit.template +60 -0
- data/perl/ParsCit/crfpp/traindata/parsCit.train.data +12104 -0
- data/perl/ParsCit/crfpp/traindata/tagged_references.txt +500 -0
- data/perl/ParsCit/lib/CSXUtil/SafeText.pm +140 -0
- data/perl/ParsCit/lib/ParsCit/Citation.pm +462 -0
- data/perl/ParsCit/lib/ParsCit/CitationContext.pm +132 -0
- data/perl/ParsCit/lib/ParsCit/Config.pm +46 -0
- data/perl/ParsCit/lib/ParsCit/Controller.pm +306 -0
- data/perl/ParsCit/lib/ParsCit/PostProcess.pm +367 -0
- data/perl/ParsCit/lib/ParsCit/PreProcess.pm +333 -0
- data/perl/ParsCit/lib/ParsCit/Tr2crfpp.pm +331 -0
- data/perl/ParsCit/resources/parsCit.model +0 -0
- data/perl/ParsCit/resources/parsCitDict.txt +148783 -0
- data/perl/extract.pl +199 -0
- data/spec/biblicit/cb2bib_spec.rb +48 -0
- data/spec/biblicit/citeseer_spec.rb +40 -0
- data/spec/fixtures/pdf/10.1.1.109.4049.pdf +0 -0
- data/spec/fixtures/pdf/Bagnoli Watts TAR 2010.pdf +0 -0
- data/spec/fixtures/pdf/ICINCO_2010.pdf +0 -0
- data/spec/spec_helper.rb +3 -0
- metadata +474 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD>
|
|
3
|
+
<TITLE>University and College Home Pages - Survey Results</TITLE>
|
|
4
|
+
</HEAD>
|
|
5
|
+
|
|
6
|
+
<H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue
|
|
7
|
+
Ribbon]" SRC="blueribbon.gif"></A>University and College Home Pages - Survey
|
|
8
|
+
Results</H1>
|
|
9
|
+
|
|
10
|
+
July, 1996. The top fifteen schools are listed below and each has
|
|
11
|
+
received at least 15 votes. Schools with the most votes are listed first.
|
|
12
|
+
I am temporarily unable to take additional nominations, but look for a new
|
|
13
|
+
survey within the next couple of months. You may also want to take a look
|
|
14
|
+
at a <A
|
|
15
|
+
HREF="http://www.ilt.columbia.edu/academic/classes/TU5020/projects/he/higher_ed.html">final
|
|
16
|
+
class project</A> done at Columbia University's Teachers College which
|
|
17
|
+
surveyed over 450 school home pages. <P>
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
<UL>
|
|
21
|
+
|
|
22
|
+
<LI> <A HREF="http://www.princeton.edu/">Princeton University</A>
|
|
23
|
+
<LI> <A HREF="http://www.virginia.edu/">University of Virginia</A>
|
|
24
|
+
<LI> <A HREF="http://www.washington.edu/">University of Washington</A>
|
|
25
|
+
<LI> <A HREF="http://www.berkeley.edu/">University of California, Berkeley</A>
|
|
26
|
+
<LI> <A HREF="http://www.cmu.edu/">Carnegie Mellon University</A>
|
|
27
|
+
<LI> <A HREF="http://www.columbia.edu/">Columbia University</A>
|
|
28
|
+
<LI> <A HREF="http://www.byu.edu/">Brigham Young University</A>
|
|
29
|
+
<LI> <A HREF="http://www.cornell.edu/">Cornell University</A>
|
|
30
|
+
<LI> <A HREF="http://www.ithaca.edu/">Ithaca College</A>
|
|
31
|
+
<LI> <A HREF="http://www.iastate.edu/">Iowa State University</A>
|
|
32
|
+
<LI> <A HREF="http://www.union.edu/">Union College</A>
|
|
33
|
+
<LI> <A HREF="http://www.fandm.edu/">Franklin and Marshall College</A>
|
|
34
|
+
<LI> <A HREF="http://www.upenn.edu/">University of Pennsylvania</A>
|
|
35
|
+
<LI> <A HREF="http://www.utoronto.ca/uoft.html">University of Toronto</A>
|
|
36
|
+
<LI> <A HREF="http://www.yale.edu/">Yale University</A>
|
|
37
|
+
</UL>
|
|
38
|
+
|
|
39
|
+
Note that the comments people seem to make most when nominating a homepage
|
|
40
|
+
include the following characteristics:
|
|
41
|
+
|
|
42
|
+
<UL>
|
|
43
|
+
<LI> Attractive, yet limited graphics.
|
|
44
|
+
|
|
45
|
+
<LI> Easy to find information. In particular people seem to want to be able
|
|
46
|
+
to find:
|
|
47
|
+
<UL>
|
|
48
|
+
|
|
49
|
+
<LI> Admissions information
|
|
50
|
+
|
|
51
|
+
<LI> Alumni information
|
|
52
|
+
|
|
53
|
+
<LI> Campus Maps
|
|
54
|
+
|
|
55
|
+
<LI> Email directories
|
|
56
|
+
|
|
57
|
+
<LI> Information about the surrounding community
|
|
58
|
+
|
|
59
|
+
<LI> Research and Departmental Programs
|
|
60
|
+
|
|
61
|
+
<LI> US Postal Address
|
|
62
|
+
</UL>
|
|
63
|
+
|
|
64
|
+
<LI> Short pages. If a user needs to scroll down the page more than once,
|
|
65
|
+
you might want to consider breaking the information down into several pages.
|
|
66
|
+
|
|
67
|
+
</UL>
|
|
68
|
+
|
|
69
|
+
<h5>Last modified: Mon Jul 15 00:09:48 1996</h5>
|
|
70
|
+
|
|
71
|
+
</HTML>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Romania </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Romania </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.uaic.ro/">Al.I.Cuza Iasi University of Iasi</A>
|
|
19
|
+
<LI> <A HREF="http://www.ubbcluj.ro/">Babes-Bolyai University of Cluj</A>
|
|
20
|
+
<LI> <A HREF="http://www.dsp.pub.ro/pub/pub.html">Politehnica University of Bucharest</A>
|
|
21
|
+
<LI> <A HREF="http://www.cs.pub.ro/">Polytechnical University of Bucharest</A>
|
|
22
|
+
<LI> <A HREF="http://www.utcluj.ro/">Technical University of Cluj</A>
|
|
23
|
+
<LI> <A HREF="http://www.tuiasi.ro/">Technical University of Iasi</A>
|
|
24
|
+
<LI> <A HREF="http://www.uttgm.ro/">Technical University of Targu Mures</A>
|
|
25
|
+
<LI> <A HREF="http://www.utt.ro/">Technical University of Timisoara</A>
|
|
26
|
+
<LI> <A HREF="http://www.comp-craiova.ro/ucv.html">University of Craiova</A>
|
|
27
|
+
<LI> <A HREF="http://www.ugal.ro/">University of Galati</A>
|
|
28
|
+
<LI> <A HREF="http://quasar.uvt.ro/">West University of Timisoara</A>
|
|
29
|
+
</OL>
|
|
30
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
31
|
+
<HR>
|
|
32
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
33
|
+
<P>
|
|
34
|
+
Last updated:
|
|
35
|
+
|
|
36
|
+
Mon Jul 15 00:42:29 PDT 1996
|
|
37
|
+
</BODY>
|
|
38
|
+
</HTML>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Russia </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Russia </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://dcn-asu.altai.su/ENTRY.en.html">Altay State University</A>
|
|
19
|
+
<LI> <A HREF="http://www.ksu.ras.ru/">Kazan University</A>
|
|
20
|
+
<LI> <A HREF="http://alum.cerc.wvu.edu:13131/MVTU/">Moscow Bauman State Technical University
|
|
21
|
+
</A>
|
|
22
|
+
|
|
23
|
+
<LI> <A HREF="http://www.crec.mipt.ru/MIPT">Moscow Institute of Physics and Technology</A>
|
|
24
|
+
<LI> <A HREF="http://www.mpei.ac.ru/">Moscow Power Engineering Institute</A>
|
|
25
|
+
<LI> <A HREF="http://www.rector.msu.su/">Moscow State University</A>
|
|
26
|
+
<LI> <A HREF="http://www.unn.ac.ru/">Nizhni Novgorod State University</A>
|
|
27
|
+
<LI> <A HREF="http://www.novsu.ac.ru/">Novgorod State University</A>
|
|
28
|
+
<LI> <A HREF="http://www.nstu.nsk.su/">Novosibirsk State Technical University</A>
|
|
29
|
+
<LI> <A HREF="http://www.nsu.nsk.su/">Novosibirsk State University</A>
|
|
30
|
+
<LI> <A HREF="http://www.stup.ac.ru/">Penza State Technical University</A>
|
|
31
|
+
<LI> <A HREF="http://www.rnd.runnet.ru/">Rostov State University</A>
|
|
32
|
+
<LI> <A HREF="http://www.ras.ru/">Russian Academy of Sciences</A>
|
|
33
|
+
<LI> <A HREF="http://www.samara.emnet.ru/">Samara State University</A>
|
|
34
|
+
<LI> <A HREF="http://www.unilib.neva.ru/">St. Petersburg State Technical University</A>
|
|
35
|
+
<LI> <A HREF="http://www.pu.ru/">St. Petersburg University</A>
|
|
36
|
+
<LI> <A HREF="http://www.tsu.tomsk.su/">Tomsk State University</A>
|
|
37
|
+
<LI> <A HREF="http://u-pereslavl.botik.ru/UP/">University of Pereslavl</A>
|
|
38
|
+
<LI> <A HREF="http://www.usu.ru/">Ural State University</A>
|
|
39
|
+
</OL>
|
|
40
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
41
|
+
<HR>
|
|
42
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
43
|
+
<P>
|
|
44
|
+
Last updated:
|
|
45
|
+
|
|
46
|
+
Mon Jul 15 00:42:30 PDT 1996
|
|
47
|
+
</BODY>
|
|
48
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Sudan </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Sudan </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.columbia.edu/~tm146/Khar/UofK.html">University of Khartoum</A>
|
|
19
|
+
</OL>
|
|
20
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
21
|
+
<HR>
|
|
22
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
23
|
+
<P>
|
|
24
|
+
Last updated:
|
|
25
|
+
|
|
26
|
+
Mon Jul 15 00:42:31 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Sweden </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Sweden </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.chalmers.se/Home-E.html">Chalmers University of Technology</A>
|
|
19
|
+
<LI> <A HREF="http://www.gu.se/">Göteborgs Universitet</A>
|
|
20
|
+
<LI> <A HREF="http://www.got.kth.se/">Högskolan på Gotland</A>
|
|
21
|
+
<LI> <A HREF="http://www.hh.se:7777/">Halmstad University</A>
|
|
22
|
+
<LI> <A HREF="http://www.hj.se/jibs/">Jönköping International Business School</A>
|
|
23
|
+
<LI> <A HREF="http://www.hj.se/hij.html">Jönköping University</A>
|
|
24
|
+
<LI> <A HREF="http://www.ki.se/">Karolinska Institute</A>
|
|
25
|
+
<LI> <A HREF="http://www-tec.hkr.se/hkr/hkr.html">Kristianstad University</A>
|
|
26
|
+
<LI> <A HREF="http://www.kth.se/">Kungl Tekniska Högskolan</A>
|
|
27
|
+
<LI> <A HREF="http://www.liu.se/">Linkoping University</A>
|
|
28
|
+
<LI> <A HREF="http://www.luth.se/">Lulea University</A>
|
|
29
|
+
<LI> <A HREF="http://www.lth.se/">Lund Institute of Technology</A>
|
|
30
|
+
<LI> <A HREF="http://www.lu.se/">Lund University</A>
|
|
31
|
+
<LI> <A HREF="http://www.mdh.se/">Mälardalens Högskola</A>
|
|
32
|
+
<LI> <A HREF="http://www.forv.mh.se/estart.html">Mid Sweden University</A>
|
|
33
|
+
<LI> <A HREF="http://www.hhs.se/">Stockholm School of Economics</A>
|
|
34
|
+
<LI> <A HREF="http://www.su.se/">Stockholm University</A>
|
|
35
|
+
<LI> <A HREF="http://www.radek.slu.se/">Swedish University of Agricultural Sciences</A>
|
|
36
|
+
<LI> <A HREF="http://www.umu.se/">Umeå University</A>
|
|
37
|
+
<LI> <A HREF="http://www.hoe.se/start.html">University College of Örebro</A>
|
|
38
|
+
<LI> <A HREF="http://www.hgs.se/">University College of Gävle/Sandviken</A>
|
|
39
|
+
<LI> <A HREF="http://www.hik.se/">University College of Kalmar</A>
|
|
40
|
+
<LI> <A HREF="http://www.hb.se/">University of Boras</A>
|
|
41
|
+
<LI> <A HREF="http://txfs1.hfb.se/">University of Falun/Borlänge</A>
|
|
42
|
+
<LI> <A HREF="http://www.hk-r.se/">University of Karlskrona/Ronneby</A>
|
|
43
|
+
<LI> <A HREF="http://www.hks.se/">University of Karlstad</A>
|
|
44
|
+
<LI> <A HREF="http://rimula.hkr.se/hkr/hkr.html">University of Kristianstad</A>
|
|
45
|
+
<LI> <A HREF="http://www.his.se/">University of Skövde</A>
|
|
46
|
+
<LI> <A HREF="http://www.uu.se/">Uppsala Universitet</A>
|
|
47
|
+
<LI> <A HREF="http://www.hv.se/eng/eng_home.html">Växjö University</A>
|
|
48
|
+
</OL>
|
|
49
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
50
|
+
<HR>
|
|
51
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
52
|
+
<P>
|
|
53
|
+
Last updated:
|
|
54
|
+
|
|
55
|
+
Mon Jul 15 00:42:32 PDT 1996
|
|
56
|
+
</BODY>
|
|
57
|
+
</HTML>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Singapore </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Singapore </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://WWW.nyp.ac.sg/">Nanyang Polytechnic</A>
|
|
19
|
+
<LI> <A HREF="http://www.ntu.ac.sg/">Nanyang Technological University, Singapore</A>
|
|
20
|
+
<LI> <A HREF="http://www.nus.sg/">National University of Singapore</A>
|
|
21
|
+
<LI> <A HREF="http://www.np.ac.sg:9080/">Ngee Ann Polytechnic</A>
|
|
22
|
+
<LI> <A HREF="http://www.sp.ac.sg/home.html">Singapore Polytechnic</A>
|
|
23
|
+
<LI> <A HREF="http://www.tp.ac.sg/">Temasek Polytechnic</A>
|
|
24
|
+
</OL>
|
|
25
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
26
|
+
<HR>
|
|
27
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
28
|
+
<P>
|
|
29
|
+
Last updated:
|
|
30
|
+
|
|
31
|
+
Mon Jul 15 00:42:33 PDT 1996
|
|
32
|
+
</BODY>
|
|
33
|
+
</HTML>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Slovenia </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Slovenia </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.ijs.si/">Institut Jozef Stefan</A>
|
|
19
|
+
<LI> <A HREF="http://www.uni-lj.si/">University of Ljubljana</A>
|
|
20
|
+
<LI> <A HREF="http://www.uni-mb.si/">University of Maribor</A>
|
|
21
|
+
</OL>
|
|
22
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
23
|
+
<HR>
|
|
24
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
25
|
+
<P>
|
|
26
|
+
Last updated:
|
|
27
|
+
|
|
28
|
+
Mon Jul 15 00:42:34 PDT 1996
|
|
29
|
+
</BODY>
|
|
30
|
+
</HTML>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Slovakia </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Slovakia </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.uniba.sk/">Comenius University</A>
|
|
19
|
+
<LI> <A HREF="http://www.jfmed.uniba.sk/">Jessenius Faculty of Medicine</A>
|
|
20
|
+
<LI> <A HREF="http://nic.uakom.sk/hypertext/home.html">Matej Bel University</A>
|
|
21
|
+
<LI> <A HREF="http://www.stuba.sk/">Slovak Technical University</A>
|
|
22
|
+
<LI> <A HREF="http://hron.ef.tuke.sk/tu/tuke-a.html">Technical University Kosice</A>
|
|
23
|
+
<LI> <A HREF="http://www.tuzvo.sk/TUZVO/University/">Technical University in Zvolen</A>
|
|
24
|
+
<LI> <A HREF="http://www.uniag.sk/">University of Agriculture, Nitra</A>
|
|
25
|
+
<LI> <A HREF="http://kosice.upjs.sk/upjs.html">University of Pavol Jozef Safarik</A>
|
|
26
|
+
</OL>
|
|
27
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
28
|
+
<HR>
|
|
29
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
30
|
+
<P>
|
|
31
|
+
Last updated:
|
|
32
|
+
|
|
33
|
+
Mon Jul 15 00:42:35 PDT 1996
|
|
34
|
+
</BODY>
|
|
35
|
+
</HTML>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Thailand </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Thailand </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://emailhost.ait.ac.th/">Asian Institute of Technology</A>
|
|
19
|
+
<LI> <A HREF="http://www.bu.ac.th/">Bangkok University</A>
|
|
20
|
+
<LI> <A HREF="http://www.chiangmai.ac.th:80/">Chiang Mai University</A>
|
|
21
|
+
<LI> <A HREF="http://www.netserv.chula.ac.th/">Chulalongkorn University</A>
|
|
22
|
+
<LI> <A HREF="http://www.ku.ac.th/">Kasetsart University</A>
|
|
23
|
+
<LI> <A HREF="http://www.kku.ac.th/">Khon Kaen University</A>
|
|
24
|
+
<LI> <A HREF="http://www.mut.ac.th/">Mahanakorn University of Technology</A>
|
|
25
|
+
<LI> <A HREF="http://www.mahidol.ac.th/mahidol.html">Mahidol University</A>
|
|
26
|
+
<LI> <A HREF="http://www.serv.nida.ac.th/">National Institute of Development Administration</A>
|
|
27
|
+
<LI> <A HREF="http://www.pmk.ac.th/college.htm">Pramongkutklao College of Medicine</A>
|
|
28
|
+
<LI> <A HREF="http://www.psu.ac.th/">Prince of Songkla University</A>
|
|
29
|
+
<LI> <A HREF="http://www.ritnb.ac.th/">Rajamangala Institute of Technology</A>
|
|
30
|
+
<LI> <A HREF="http://www.su.ac.th/">Silpakorn University</A>
|
|
31
|
+
<LI> <A HREF="http://www.swu.ac.th/">Srinakharinwirot University</A>
|
|
32
|
+
<LI> <A HREF="http://www.stou.ac.th/">Sukhothai Thammathirat Open University</A>
|
|
33
|
+
<LI> <A HREF="http://www.sut.ac.th/">Suranaree University of Technology</A>
|
|
34
|
+
<LI> <A HREF="http://alpha.tu.ac.th/">Thammasat University</A>
|
|
35
|
+
<LI> <A HREF="http://www.utcc.ac.th/">University of the Thai Chamber of Commerce</A>
|
|
36
|
+
</OL>
|
|
37
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
38
|
+
<HR>
|
|
39
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
40
|
+
<P>
|
|
41
|
+
Last updated:
|
|
42
|
+
|
|
43
|
+
Mon Jul 15 00:42:36 PDT 1996
|
|
44
|
+
</BODY>
|
|
45
|
+
</HTML>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Turkey </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Turkey </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.ibu.edu.tr/">Abant Izzet Baysal University</A>
|
|
19
|
+
<LI> <A HREF="http://www.anadolu.edu.tr/">Anadolu University</A>
|
|
20
|
+
<LI> <A HREF="http://www.aselsan.com.tr/">Askeri Elektronik Sanayi</A>
|
|
21
|
+
<LI> <A HREF="http://www.bilkent.edu.tr/bilkent.html">Bilkent University</A>
|
|
22
|
+
<LI> <A HREF="http://www.boun.edu.tr/">Bogazici University</A>
|
|
23
|
+
<LI> <A HREF="http://www.ege.edu.tr/">Ege University</A>
|
|
24
|
+
<LI> <A HREF="http://cc.gazi.edu.tr/">Gazi University</A>
|
|
25
|
+
<LI> <A HREF="http://www.ee.hun.edu.tr/">Hacettepe University</A>
|
|
26
|
+
<LI> <A HREF="http://www.itu.edu.tr/">Istanbul Technical University</A>
|
|
27
|
+
<LI> <A HREF="http://www.kho.edu.tr/">Kara Harb Okulu</A>
|
|
28
|
+
<LI> <A HREF="http://u6065.ku.edu.tr:70/0h/ku/ku.guide.html/">Koc University</A>
|
|
29
|
+
<LI> <A HREF="http://www.marun.edu.tr/">Marmara University</A>
|
|
30
|
+
<LI> <A HREF="http://www.metu.edu.tr/">Middle East Technical University</A>
|
|
31
|
+
<LI> <A HREF="http://www.tubitak.gov.tr/">Türkiye Bilimsel ve Teknik Arastirma Kurumu</A>
|
|
32
|
+
<LI> <A HREF="http://www.uludag.edu.tr/">Uludag</A>
|
|
33
|
+
<LI> <A HREF="http://www.gantep.edu.tr/">University of Gazi Antep</A>
|
|
34
|
+
<LI> <A HREF="http://www.ce.yildiz.edu.tr/">Yildiz Technical University</A>
|
|
35
|
+
</OL>
|
|
36
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
37
|
+
<HR>
|
|
38
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
39
|
+
<P>
|
|
40
|
+
Last updated:
|
|
41
|
+
|
|
42
|
+
Mon Jul 15 00:42:37 PDT 1996
|
|
43
|
+
</BODY>
|
|
44
|
+
</HTML>
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Taiwan </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Taiwan </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.cjcicm.edu.tw/">China Junior College of Industrial & Commercial Management</A>
|
|
19
|
+
<LI> <A HREF="http://www.cmc.edu.tw/cmcstart.html">China Medical College</A>
|
|
20
|
+
<LI> <A HREF="http://www.ccit.edu.tw/">Chung Cheng Institute of Technology</A>
|
|
21
|
+
<LI> <A HREF="http://www.chpi.edu.tw/">Chung Hua Polytechnic Institute</A>
|
|
22
|
+
<LI> <A HREF="http://www.csmc.edu.tw/default.html">Chung Shan Medical and Dental College</A>
|
|
23
|
+
<LI> <A HREF="http://140.135.96.1/">Chung Yuan Christian University</A>
|
|
24
|
+
<LI> <A HREF="http://www.dyit.edu.tw/">Da-Yeh Institute of Technology</A>
|
|
25
|
+
<LI> <A HREF="http://www.fcu.edu.tw/">Feng Chia University</A>
|
|
26
|
+
<LI> <A HREF="http://www.secc.fju.edu.tw/">Fu Jen Catholic University</A>
|
|
27
|
+
<LI> <A HREF="http://www.hcht.edu.tw/welcome.html">HuaFan College of Humanitites and Technology</A>
|
|
28
|
+
<LI> <A HREF="http://icu.hkc.edu.tw/">Hung-Kuang College of Nursing</A>
|
|
29
|
+
<LI> <A HREF="http://jupiter.jwc.edu.tw/welcome.html">Jin Wen College</A>
|
|
30
|
+
<LI> <A HREF="http://www.kyit.edu.tw/Welcome.html">Kao-Yuan Junior College of Technology & Commerce</A>
|
|
31
|
+
<LI> <A HREF="http://www.mcu.edu.tw/">Ming-Chuan College</A>
|
|
32
|
+
<LI> <A HREF="http://www.ntc.edu.tw/index.html">Nan Tai College</A>
|
|
33
|
+
<LI> <A HREF="http://www.ncue.edu.tw/">Nation Changhua University of Education</A>
|
|
34
|
+
<LI> <A HREF="http://www.mgt.ncu.edu.tw/">National Central University</A>
|
|
35
|
+
<LI> <A HREF="http://www.ncku.edu.tw/">National Cheng Kung University</A>
|
|
36
|
+
<LI> <A HREF="http://www.nccu.edu.tw/">National Chengchi University</A>
|
|
37
|
+
<LI> <A HREF="http://www.nctu.edu.tw/">National Chiao Tung University</A>
|
|
38
|
+
<LI> <A HREF="http://www.cs.ccu.edu.tw/Welcome.html">National Chung Cheng University</A>
|
|
39
|
+
<LI> <A HREF="http://www.nchu.edu.tw/">National Chung-Hsing University</A>
|
|
40
|
+
<LI> <A HREF="http://www.nhltc.edu.tw/homepage.html">National Hualien Teachers College</A>
|
|
41
|
+
<LI> <A HREF="http://www.nia.edu.tw/">National Institute of the Arts, Taiwan</A>
|
|
42
|
+
<LI> <A HREF="http://www.nknu.edu.tw/">National Kaohsiung Normal University</A>
|
|
43
|
+
<LI> <A HREF="http://www.nsysu.edu.tw/">National Sun Yat-sen University</A>
|
|
44
|
+
<LI> <A HREF="http://alpha.ntcic.edu.tw/">National Taichung Institute of Commerce</A>
|
|
45
|
+
<LI> <A HREF="http://www.ntntc.edu.tw/index.html">National Tainan Teachers College</A>
|
|
46
|
+
<LI> <A HREF="http://www.cc.tit.edu.tw/">National Taipei Institute of Technology</A>
|
|
47
|
+
<LI> <A HREF="http://www.ntit.edu.tw/">National Taiwan Institute of Technology</A>
|
|
48
|
+
<LI> <A HREF="http://www.ntnu.edu.tw/">National Taiwan Normal University</A>
|
|
49
|
+
<LI> <A HREF="http://www.ee.ntou.edu.tw/">National Taiwan Ocean University</A>
|
|
50
|
+
<LI> <A HREF="http://www.ntu.edu.tw/">National Taiwan University</A>
|
|
51
|
+
<LI> <A HREF="http://www.nthu.edu.tw/">National Tsing-Hua University</A>
|
|
52
|
+
<LI> <A HREF="http://www.ym.edu.tw/index.html">National Yang Ming
|
|
53
|
+
University</A>
|
|
54
|
+
|
|
55
|
+
<LI> <A HREF="http://www.lib.yuntech.edu.tw/index.html">National Yunlin Institute of Technology</A>
|
|
56
|
+
<LI> <A HREF="http://www.oit.edu.tw/">Oriental Institute of Technology</A>
|
|
57
|
+
<LI> <A HREF="http://www.tmc.edu.tw/default.htm">Taipei Medical College</A>
|
|
58
|
+
<LI> <A HREF="http://www.tku.edu.tw/">Tamkang University</A>
|
|
59
|
+
<LI> <A HREF="http://www.touc.edu.tw/">Tamsui Oxford University College</A>
|
|
60
|
+
<LI> <A HREF="http://www.cse.ttit.edu.tw/">Tatung Institute of Technology</A>
|
|
61
|
+
<LI> <A HREF="http://peacock.tnjc.edu.tw/">Tung Nan Junior College of Technology</A>
|
|
62
|
+
<LI> <A HREF="http://s867.thu.edu.tw/">Tunghai University</A>
|
|
63
|
+
<LI> <A HREF="http://www.vit.edu.tw/">Van Nung Institute of Technology</A>
|
|
64
|
+
<LI> <A HREF="http://im2.vit.edu.tw/">VanNumg Junior College</A>
|
|
65
|
+
<LI> <A HREF="http://www.wfc.edu.tw/">Wu-Feng Junior College of Technology & Commerce</A>
|
|
66
|
+
<LI> <A HREF="http://www.yzit.edu.tw/">Yuan-Ze Institute of Technology</A>
|
|
67
|
+
</OL>
|
|
68
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
69
|
+
<HR>
|
|
70
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
71
|
+
<P>
|
|
72
|
+
Last updated:
|
|
73
|
+
|
|
74
|
+
Mon Jul 15 00:42:38 PDT 1996
|
|
75
|
+
</BODY>
|
|
76
|
+
</HTML>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Ukraine </TITLE>
|
|
2
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
3
|
+
</HEAD><BODY><H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue Ribbon]" SRC="blueribbon.gif"></A>Colleges and Universities - Ukraine </H1>
|
|
4
|
+
<HR>
|
|
5
|
+
|
|
6
|
+
(C)Copyright 1995,1996 Christina DeMello. Reproduction and distribution are
|
|
7
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
8
|
+
made to this document without the author's written consent. <P>
|
|
9
|
+
|
|
10
|
+
Please send additions, corrections, and comments to <EM><A
|
|
11
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>. Please
|
|
12
|
+
give me a few days to respond as I no longer have a
|
|
13
|
+
direct net connection at work every day. Also, this list may be
|
|
14
|
+
updated more quickly than I can respond personally to email.<P> <HR> <OL>
|
|
15
|
+
|
|
16
|
+
<h5>Last modified: Thu Jul 11 20:53:17 1996</h5>
|
|
17
|
+
|
|
18
|
+
<LI> <A HREF="http://www.opu.odessa.ua/">Odessa State Politechnic University</A>
|
|
19
|
+
<LI> <A HREF="http://www.polynet.lviv.ua/">State University Lvivska Polytechnic</A>
|
|
20
|
+
</OL>
|
|
21
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
22
|
+
<HR>
|
|
23
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
24
|
+
<P>
|
|
25
|
+
Last updated:
|
|
26
|
+
|
|
27
|
+
Mon Jul 15 00:42:39 PDT 1996
|
|
28
|
+
</BODY>
|
|
29
|
+
</HTML>
|