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,39 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Malaysia </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 - Malaysia </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://ittm.com.my/">Institute of Telecommunications and Information Technology</A>
|
|
19
|
+
<LI> <A HREF="http://mimos.my/icp/start.html">International College Penang</A>
|
|
20
|
+
<LI> <A HREF="http://www.iiu.my/">International Islamic University Malaysia</A>
|
|
21
|
+
<LI> <A HREF="http://scc.mimos.my/uia/uia.html">International Islamic University, Malaysia</A>
|
|
22
|
+
<LI> <A HREF="http://161.142.40.1/0c:\versi.htm|/">Northern University of Malaysia</A>
|
|
23
|
+
<LI> <A HREF="http://www.ukm.my/">Universiti Kebangsaan Malaysia</A>
|
|
24
|
+
<LI> <A HREF="http://www.cc.um.edu.my/">Universiti Malaya</A>
|
|
25
|
+
<LI> <A HREF="http://www.fit.unimas.my:8080/">Universiti Malaysia Sarawak </A>
|
|
26
|
+
<LI> <A HREF="http://www.upm.edu.my/">Universiti Pertanian Malaysia</A>
|
|
27
|
+
<LI> <A HREF="http://www.usm.my/">Universiti Sains Malaysia</A>
|
|
28
|
+
<LI> <A HREF="http://www.utm.my/">Universiti Teknologi Malaysia</A>
|
|
29
|
+
<LI> <A HREF="http://www.unimas.my/">University Malaysia Sarawak</A>
|
|
30
|
+
</OL>
|
|
31
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
32
|
+
<HR>
|
|
33
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
34
|
+
<P>
|
|
35
|
+
Last updated:
|
|
36
|
+
|
|
37
|
+
Mon Jul 15 00:42:16 PDT 1996
|
|
38
|
+
</BODY>
|
|
39
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Nicaragua </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 - Nicaragua </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://165.98.11.3/">Universidad Americana</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:17 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Netherlands </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 - Netherlands </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.tudelft.nl/">Delft University of Technology</A>
|
|
19
|
+
<LI> <A HREF="http://www.worldaccess.nl/~elephant/education/delta.htm">Delta University</A>
|
|
20
|
+
<LI> <A HREF="http://www.tue.nl/">Eindhoven University of Technology</A>
|
|
21
|
+
<LI> <A HREF="http://www.eur.nl/">Erasmus University of Rotterdam</A>
|
|
22
|
+
<LI> <A HREF="http://www.hhs.nl/Welcome.html">Haagse Hogeschool</A>
|
|
23
|
+
<LI> <A HREF="http://www.hanze.nl/">Hanzehogeschool</A>
|
|
24
|
+
<LI> <A HREF="http://www.hse.nl/">Hogeschool Eindhoven</A>
|
|
25
|
+
<LI> <A HREF="http://www.hva.nl">Hogeschool van Amsterdam</A>
|
|
26
|
+
<LI> <A HREF="http://www.hvu.nl/index_english.html">Hogeschool van Utrecht</A>
|
|
27
|
+
<LI> <A HREF="http://htoc11.hto.rhij.nl/engels.htm">IJselland Polytechnic</A>
|
|
28
|
+
<LI> <A HREF="http://www.noord.bart.nl/~iouedu/IOUhome.html">Intercultural Open University</A>
|
|
29
|
+
<LI> <A HREF="http://www.leidenuniv.nl/index_e.html">Leiden University</A>
|
|
30
|
+
<LI> <A HREF="http://www.nijenrode.nl/">Nijenrode University</A>
|
|
31
|
+
<LI> <A HREF="http://www.tem.nhl.nl/">Noordelijke Hogeschool Leeuwarden</A>
|
|
32
|
+
<LI> <A HREF="http://www.ouh.nl/">Open University of the Netherlands</A>
|
|
33
|
+
<LI> <A HREF="http://www.kub.nl:2080/">Tilburg University</A>
|
|
34
|
+
<LI> <A HREF="http://www.uva.nl/00/english.html">University of Amsterdam</A>
|
|
35
|
+
<LI> <A HREF="http://www.rug.nl/rug/mapuk.html">University of Groningen</A>
|
|
36
|
+
<LI> <A HREF="http://www.cs.rulimburg.nl/">University of Limburg</A>
|
|
37
|
+
<LI> <A HREF="http://www.kun.nl/">University of Nijmegen</A>
|
|
38
|
+
<LI> <A HREF="http://www.utwente.nl/uthomuk.htm">University of Twente</A>
|
|
39
|
+
<LI> <A HREF="http://www.ruu.nl/">Utrecht University</A>
|
|
40
|
+
<LI> <A HREF="http://www.cca.vu.nl/">Vrije University</A>
|
|
41
|
+
<LI> <A HREF="http://www.wau.nl/welcome.html">Wageningen Agricultural University</A>
|
|
42
|
+
</OL>
|
|
43
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
44
|
+
<HR>
|
|
45
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
46
|
+
<P>
|
|
47
|
+
Last updated:
|
|
48
|
+
|
|
49
|
+
Mon Jul 15 00:42:18 PDT 1996
|
|
50
|
+
</BODY>
|
|
51
|
+
</HTML>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Norway </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 - Norway </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.hia.no/">Agder College</A>
|
|
19
|
+
<LI> <A HREF="http://www.nlh.no/Studie_kontor/info_eng/info_eng.html">Agricultural University of Norway (NLH)</A>
|
|
20
|
+
<LI> <A HREF="http://www.hials.no/">Ålesund College</A>
|
|
21
|
+
<LI> <A HREF="http://www.hib.no/">Bergen College</A>
|
|
22
|
+
<LI> <A HREF="http://www.uib.no/index-eng.html">Bergen University</A>
|
|
23
|
+
<LI> <A HREF="http://linnea.gih.no/">Gjøvik College</A>
|
|
24
|
+
<LI> <A HREF="http://www.hibo.no/">Høgskolen i Bodø</A>
|
|
25
|
+
<LI> <A HREF="http://www.hihm.no/">Høgskolen i Hedmark</A>
|
|
26
|
+
<LI> <A HREF="http://www.hioslo.no/">Høgskolen i Oslo</A>
|
|
27
|
+
<LI> <A HREF="http://www.hil.no/">Lillehammer College</A>
|
|
28
|
+
<LI> <A HREF="http://www.hiMolde.no/">Molde College</A>
|
|
29
|
+
<LI> <A HREF="http://samson.shks.no/">National College of Art & Design, Norway</A>
|
|
30
|
+
<LI> <A HREF="http://oter.hinesna.no/">Nesna College</A>
|
|
31
|
+
<LI> <A HREF="http://www.ntdh.no/homepage.html">Nord-Trøndelag College</A>
|
|
32
|
+
<LI> <A HREF="http://www.ntnu.no/">Norges Teknisk-Naturvitenskapelige Universitet</A>
|
|
33
|
+
<LI> <A HREF="http://www.unit.no/NTH">Norwegian Institute of Technology, Trondheim</A>
|
|
34
|
+
<LI> <A HREF="http://www.nhh.no/">Norwegian School of Economics and Business Administration</A>
|
|
35
|
+
<LI> <A HREF="http://www.bi.no/">Norwegian School of Management</A>
|
|
36
|
+
<LI> <A HREF="http://www.odh.no/">Oppland College</A>
|
|
37
|
+
<LI> <A HREF="http://www.hiof.no/">Østfold College</A>
|
|
38
|
+
<LI> <A HREF="http://www.hist.no/">Sør-Trøndelag College (HiST)</A>
|
|
39
|
+
<LI> <A HREF="http://www.hsr.no/">Stavanger College</A>
|
|
40
|
+
<LI> <A HREF="http://www.ssh.no/">Stord/Haugesund College</A>
|
|
41
|
+
<LI> <A HREF="http://www.tdh.no/">Telemark College</A>
|
|
42
|
+
<LI> <A HREF="http://www.unik.no/ENGELSK/presentengelsk.html">UNIK - Center for Technology at Kjeller, University of Oslo</A>
|
|
43
|
+
<LI> <A HREF="http://www.uio.no/">University of Oslo</A>
|
|
44
|
+
<LI> <A HREF="http://www.service.uit.no/homepage-uit.no">University of Tromsø</A>
|
|
45
|
+
<LI> <A HREF="http://www-ri.hsv.no/index.html">Vestfold College</A>
|
|
46
|
+
<LI> <A HREF="http://www.hivolda.no/">Volda College</A>
|
|
47
|
+
</OL>
|
|
48
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
49
|
+
<HR>
|
|
50
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
51
|
+
<P>
|
|
52
|
+
Last updated:
|
|
53
|
+
|
|
54
|
+
Mon Jul 15 00:42:19 PDT 1996
|
|
55
|
+
</BODY>
|
|
56
|
+
</HTML>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - New Zealand </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 - New Zealand </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.ait.ac.nz/">Auckland Institute of Technology</A>
|
|
19
|
+
<LI> <A HREF="http://www.canterbury.ac.nz/">Canterbury University</A>
|
|
20
|
+
<LI> <A HREF="http://www.cit.ac.nz/">Central Institute of Technology</A>
|
|
21
|
+
<LI> <A HREF="http://vesta.chch.planet.co.nz/polytech/polytech.html">Christchurch Polytechnic</A>
|
|
22
|
+
<LI> <A HREF="http://www.lincoln.ac.nz/">Lincoln University</A>
|
|
23
|
+
<LI> <A HREF="http://www.massey.ac.nz/">Massey University</A>
|
|
24
|
+
<LI> <A HREF="http://edtech.unitec.ac.nz/">UNITEC Institute of Technology</A>
|
|
25
|
+
<LI> <A HREF="http://www.auckland.ac.nz/">University of Auckland</A>
|
|
26
|
+
<LI> <A HREF="http://www.otago.ac.nz/">University of Otago</A>
|
|
27
|
+
<LI> <A HREF="http://www.waikato.ac.nz/default.html">University of Waikato</A>
|
|
28
|
+
<LI> <A HREF="http://www.vuw.ac.nz/">Victoria University of Wellington</A>
|
|
29
|
+
<LI> <A HREF="http://www.twp.ac.nz/">Waikato Polytechnic</A>
|
|
30
|
+
<LI> <A HREF="http://www.waikato.ac.nz/">Waikato University</A>
|
|
31
|
+
<LI> <A HREF="http://ourworld.compuserve.com/homepages/wcad/">Whitecliffe College of Art & Design</A>
|
|
32
|
+
</OL>
|
|
33
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
34
|
+
<HR>
|
|
35
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
36
|
+
<P>
|
|
37
|
+
Last updated:
|
|
38
|
+
|
|
39
|
+
Mon Jul 15 00:42:20 PDT 1996
|
|
40
|
+
</BODY>
|
|
41
|
+
</HTML>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Panama </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 - Panama </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.ulat.ac.pa/">Universidad Latina</A>
|
|
19
|
+
<LI> <A HREF="http://www.usma.ac.pa/">Universidad Santa Maria La Antigua</A>
|
|
20
|
+
<LI> <A HREF="http://www.utp.ac.pa/">Universidad Tecnológica de Panamá</A>
|
|
21
|
+
<LI> <A HREF="http://www.up.ac.pa/">Universidad de Panamá</A>
|
|
22
|
+
</OL>
|
|
23
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
24
|
+
<HR>
|
|
25
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
26
|
+
<P>
|
|
27
|
+
Last updated:
|
|
28
|
+
|
|
29
|
+
Mon Jul 15 00:42:21 PDT 1996
|
|
30
|
+
</BODY>
|
|
31
|
+
</HTML>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Peru </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 - Peru </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.america.edu.pe/">Colegio America</A>
|
|
19
|
+
<LI> <A HREF="http://ekeko.rcp.net.pe/CBC/">Colegio Universitario Andino</A>
|
|
20
|
+
<LI> <A HREF="http://ekeko.rcp.net.pe/ENAMM/">Escuela Nacional de Marina Mercante</A>
|
|
21
|
+
<LI> <A HREF="http://www.esan.edu.pe/">Escuela de Administracion de Negocios para Graduados</A>
|
|
22
|
+
<LI> <A HREF="http://www.ipae.edu.pe/">Instituto Peruano de Administración de Empresas</A>
|
|
23
|
+
<LI> <A HREF="http://www.pucp.edu.pe/">Pontificia Universidad Católica del Perú</A>
|
|
24
|
+
<LI> <A HREF="http://principal.unjbg.edu.pe/">Universidad Nacional Jorge Basadre Grohmann</A>
|
|
25
|
+
<LI> <A HREF="http://ekeko.rcp.net.pe/UNMSM/">Universidad Nacional Mayor de San Marcos</A>
|
|
26
|
+
<LI> <A HREF="http://chanchan.unitru.edu.pe/">Universidad Nacional de Trujillo</A>
|
|
27
|
+
<LI> <A HREF="http://www.upc.edu.pe/">Universidad Peruana de Ciencias Aplicadas</A>
|
|
28
|
+
<LI> <A HREF="http://www.ulima.edu.pe/">Universidad de Lima</A>
|
|
29
|
+
<LI> <A HREF="http://www.up.edu.pe/">Universidad del Pacifico</A>
|
|
30
|
+
<LI> <A HREF="http://ekeko.rcp.net.pe/UNFV/WEB_MAIN.HTM">Unniversidad Nacional Federico Villarreal</A>
|
|
31
|
+
</OL>
|
|
32
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
33
|
+
<HR>
|
|
34
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
35
|
+
<P>
|
|
36
|
+
Last updated:
|
|
37
|
+
|
|
38
|
+
Mon Jul 15 00:42:22 PDT 1996
|
|
39
|
+
</BODY>
|
|
40
|
+
</HTML>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Philippines </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 - Philippines </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://netserve.aim.edu.ph/">Asian Institute of Management</A>
|
|
19
|
+
<LI> <A HREF="http://kilaw.admu.edu.ph/">Ateneo de Manila University</A>
|
|
20
|
+
<LI> <A HREF="http://www.dlsu.edu.ph/">De La Salle University</A>
|
|
21
|
+
<LI> <A HREF="http://www.msuiit.edu.ph/">Mindanao State University - Iligan Institute of Technology</A>
|
|
22
|
+
<LI> <A HREF="http://g-net.globe.com.ph/~misnet/">Saint Mary's College of Meycauayan</A>
|
|
23
|
+
<LI> <A HREF="http://www.slu.edu.ph/">St. Louis University, Baguio</A>
|
|
24
|
+
<LI> <A HREF="http://www.uap.edu.ph/">University of Asia and the Pacific</A>
|
|
25
|
+
<LI> <A HREF="http://www.usc.edu.ph/">University of San Carlos (Cebu)</A>
|
|
26
|
+
<LI> <A HREF="http://www.ust.edu.ph/">University of Santo Tomas</A>
|
|
27
|
+
<LI> <A HREF="http://plato.fapenet.org/ue2/htm/uevtour.htm">University of the East, Caloocan Campus</A>
|
|
28
|
+
<LI> <A HREF="http://www.upd.edu.ph/">University of the Philippines, Diliman</A>
|
|
29
|
+
<LI> <A HREF="http://www.uplb.edu.ph/">University of the Philippines, Los Baños</A>
|
|
30
|
+
<LI> <A HREF="http://www.upm.edu.ph/">University of the Philippines, Manila</A>
|
|
31
|
+
<LI> <A HREF="http://www.xu.edu.ph/">Xavier University (Cagayan de Oro)</A>
|
|
32
|
+
</OL>
|
|
33
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
34
|
+
<HR>
|
|
35
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
36
|
+
<P>
|
|
37
|
+
Last updated:
|
|
38
|
+
|
|
39
|
+
Mon Jul 15 00:42:24 PDT 1996
|
|
40
|
+
</BODY>
|
|
41
|
+
</HTML>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Poland </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 - Poland </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.ae.wroc.pl/">Academy of Economics, Wroclaw</A>
|
|
19
|
+
<LI> <A HREF="http://www.amu.edu.pl/welcome.html">Adam Mickiewicz University</A>
|
|
20
|
+
<LI> <A HREF="http://www.americad.com/">American Academy of English</A>
|
|
21
|
+
<LI> <A HREF="http://snsinfo.ifpan.edu.pl/">College of Science, Warsaw</A>
|
|
22
|
+
<LI> <A HREF="http://www.pk.edu.pl/">Cracow University of Technology</A>
|
|
23
|
+
<LI> <A HREF="http://www.efp.poznan.pl/">Franco-Polish School of New Information and Communication Technologies</A>
|
|
24
|
+
<LI> <A HREF="http://www.amg.gda.pl/">Gdansk Medical Academy</A>
|
|
25
|
+
<LI> <A HREF="http://www.pg.gda.pl/pg.html">Gdansk Technical University</A>
|
|
26
|
+
<LI> <A HREF="http://www.wsm.gdynia.pl/index-e.html">Gdynia Maritime Academy</A>
|
|
27
|
+
<LI> <A HREF="http://www.ii.uj.edu.pl/">Jagiellonian University</A>
|
|
28
|
+
<LI> <A HREF="http://eber.kul.lublin.pl/">Katolicki Uniwersytet Lubelski (KUL)</A>
|
|
29
|
+
<LI> <A HREF="http://zsku.p.lodz.pl/">Lodz Technical University</A>
|
|
30
|
+
<LI> <A HREF="http://www.umcs.lublin.pl/">Maria Curie-Sklodowska University</A>
|
|
31
|
+
<LI> <A HREF="http://www.cc.uni.torun.pl/">Nicolaus Copernicus University</A>
|
|
32
|
+
<LI> <A HREF="http://www.wsp.krakow.pl/">Pedagogical University of Krakow</A>
|
|
33
|
+
<LI> <A HREF="http://www.put.poznan.pl/">Politechnika Poznanska</A>
|
|
34
|
+
<LI> <A HREF="http://www.tuniv.szczecin.pl/">Politechnika Szczeciñska</A>
|
|
35
|
+
<LI> <A HREF="http://www.polsl.gliwice.pl/">Silesian Technical University</A>
|
|
36
|
+
<LI> <A HREF="http://www.uci.agh.edu.pl/">Stanislaw Staszic University of Mining And Metallurgy</A>
|
|
37
|
+
<LI> <A HREF="http://www.univ.gda.pl/">Uniwersytetu Gdanskiego</A>
|
|
38
|
+
<LI> <A HREF="http://www.sgh.waw.pl/">Warsaw School of Economics</A>
|
|
39
|
+
<LI> <A HREF="http://info.fuw.edu.pl/">Warsaw University</A>
|
|
40
|
+
<LI> <A HREF="http://www.elka.pw.edu.pl/">Warsaw University of Technology</A>
|
|
41
|
+
<LI> <A HREF="http://www.ict.pwr.wroc.pl/">Wroclaw Technical University</A>
|
|
42
|
+
</OL>
|
|
43
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
44
|
+
<HR>
|
|
45
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
46
|
+
<P>
|
|
47
|
+
Last updated:
|
|
48
|
+
|
|
49
|
+
Mon Jul 15 00:42:25 PDT 1996
|
|
50
|
+
</BODY>
|
|
51
|
+
</HTML>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Puerto Rico </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 - Puerto Rico </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://coqui.metro.inter.edu/">Inter American University</A>
|
|
19
|
+
<LI> <A HREF="http://www.pupr.edu/">Polytechnic University of Puerto Rico</A>
|
|
20
|
+
<LI> <A HREF="http://www.usc.clu.edu/">Universidad del Sagrado Corazón</A>
|
|
21
|
+
<LI> <A HREF="http://www.upr.clu.edu/">University of Puerto Rico</A>
|
|
22
|
+
</OL>
|
|
23
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
24
|
+
<HR>
|
|
25
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
26
|
+
<P>
|
|
27
|
+
Last updated:
|
|
28
|
+
|
|
29
|
+
Mon Jul 15 00:42:26 PDT 1996
|
|
30
|
+
</BODY>
|
|
31
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Palestine </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 - Palestine </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.birzeit.edu/">Birzeit University</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:26 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Portugal </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 - Portugal </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.eseset.pt/ese/">Escola Superior de Educação de Setúbal</A>
|
|
19
|
+
<LI> <A HREF="http://www.ipp.pt/">Instituto Politecnico do Porto</A>
|
|
20
|
+
<LI> <A HREF="http://www.iscte.pt/">Instituto Superior de Ciencias do Trabalho e da Empresa</A>
|
|
21
|
+
<LI> <A HREF="http://www.istp.pt/">Instituto Superior de Transportes</A>
|
|
22
|
+
<LI> <A HREF="http://www.unl.pt/">Univerdade Nova de Lisboa</A>
|
|
23
|
+
<LI> <A HREF="http://www.ucp.pt/">Universidade Católica Portuguesa</A>
|
|
24
|
+
<LI> <A HREF="http://www.uportu.pt/">Universidade Portucalense</A>
|
|
25
|
+
<LI> <A HREF="http://www.utl.pt/">Universidade Técnica de Lisboa</A>
|
|
26
|
+
<LI> <A HREF="http://www.ubi.pt/">Universidade da Beira Interior</A>
|
|
27
|
+
<LI> <A HREF="http://www.uma.pt/">Universidade da Madeira</A>
|
|
28
|
+
<LI> <A HREF="http://www.uevora.pt/">Universidade de Évora</A>
|
|
29
|
+
<LI> <A HREF="http://www.ua.pt/">Universidade de Aveiro</A>
|
|
30
|
+
<LI> <A HREF="http://www.uc.pt/">Universidade de Coimbra</A>
|
|
31
|
+
<LI> <A HREF="http://www.ul.pt/">Universidade de Lisboa</A>
|
|
32
|
+
<LI> <A HREF="http://www.ualg.pt/">Universidade do Algarve</A>
|
|
33
|
+
<LI> <A HREF="http://www.uminho.pt/">Universidade do Minho</A>
|
|
34
|
+
<LI> <A HREF="http://www.up.pt/">Universidade do Porto</A>
|
|
35
|
+
<LI> <A HREF="http://www.uac.pt/">Universidade dos Açores</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:27 PDT 1996
|
|
44
|
+
</BODY>
|
|
45
|
+
</HTML>
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<title>College and University Listing - Recognition</title>
|
|
4
|
+
</head>
|
|
5
|
+
<body>
|
|
6
|
+
|
|
7
|
+
<H1><A HREF="http://www.eff.org/blueribbon.html"><IMG ALIGN="TOP" ALT="[Blue
|
|
8
|
+
Ribbon]" SRC="blueribbon.gif"></A> College and University Listing
|
|
9
|
+
Recognition</H1>
|
|
10
|
+
|
|
11
|
+
<HR>
|
|
12
|
+
|
|
13
|
+
(C)Copyright 1995,1996 <A HREF="http://www.mit.edu:8001/people/cdemello/home.html">Christina DeMello</A>. Reproduction and distribution are
|
|
14
|
+
permissible for non-profit purposes only, but no changes are to be
|
|
15
|
+
made to these documents without the author's written consent. <P>
|
|
16
|
+
|
|
17
|
+
This listing has been recognized by various sources over its almost two year
|
|
18
|
+
lifetime. The following is a list of some sites which have given the
|
|
19
|
+
listing special recognition or include prominent links to my listing.
|
|
20
|
+
|
|
21
|
+
<UL>
|
|
22
|
+
|
|
23
|
+
<LI> <A HREF="http://www.bigeye.com/">Big Eye</A>
|
|
24
|
+
|
|
25
|
+
<LI> <A HREF="http://chronicle.merit.edu/.index.html">Chronicle of Higher
|
|
26
|
+
Education</A>
|
|
27
|
+
|
|
28
|
+
<LI> <A HREF="http://www.city.net/">City.Net</A>
|
|
29
|
+
|
|
30
|
+
<LI> <A HREF="http://www.ed.gov/">Department of Education (US)</A>
|
|
31
|
+
|
|
32
|
+
<LI> <A HREF="http://galaxy.einet.net/">EINet Galaxy</A>
|
|
33
|
+
|
|
34
|
+
<LI> <A HREF="http://www.basenet.net/~tci/sites.html"><IMG
|
|
35
|
+
SRC="maczynski.gif">Maczynski's Info Service</A>
|
|
36
|
+
|
|
37
|
+
<LI> <A HREF="http://www.pointcom.com/"><IMG ALT="[Top 5%]"
|
|
38
|
+
SRC="pointcom.gif">Point Communication</A>
|
|
39
|
+
|
|
40
|
+
<LI> <A HREF="http://www.syllabus.com/toptwenty.html">Syllabus Top 20
|
|
41
|
+
Education Sites</A>
|
|
42
|
+
|
|
43
|
+
<LI> <a href=http://www.2ask.com/cgibin/2ask_Best_of_the_WEB_Award/><img
|
|
44
|
+
src=http://www.2ask.com/cgibin/2ask_Best_of_the_WEB_Award/2ask_Top.gif
|
|
45
|
+
border=0 width=60 height=112 alt=2ask best of the web award.>2ask Best of
|
|
46
|
+
the Web</a>
|
|
47
|
+
|
|
48
|
+
<LI> <A HREF="http://www.vmedia.com/vvc/onlcomp/business/index.html"><IMG
|
|
49
|
+
SRC="http://www.vmedia.com/cat/pics/ib500r.gif" ALT="[Logo]">Internet
|
|
50
|
+
Business 500 Premiere Site!</A>
|
|
51
|
+
|
|
52
|
+
<LI> <A HREF="http://www.mainstreetearth.com/"><IMG SRC="mseawdm.gif"
|
|
53
|
+
ALT="[Logo]">Main Street Earth Animated Ribbon of Distinction</A>
|
|
54
|
+
|
|
55
|
+
<LI> <A HREF="http://www.kn.pacbell.com/wired/bluewebn/"><IMG SRC="linkbw2.gif"
|
|
56
|
+
ALT="[Logo]">Blue Web'n Library of Learning Applications!</A>
|
|
57
|
+
|
|
58
|
+
<LI> <A HREF="http://www.mainquad.com/quad/resources/index.html"><IMG
|
|
59
|
+
SRC="dean-mainlink.jpg" ALT="[Logo]">The Dean's List</A>
|
|
60
|
+
|
|
61
|
+
<LI> <A HREF="http://www.kaplan.com/library/"><IMG SRC="kaplan.gif"
|
|
62
|
+
ALT="[Logo]">Kaplan Student Choice Award</A>
|
|
63
|
+
|
|
64
|
+
<LI> <A HREF="http://www.YellowPlaces.com/">YellowPlaces</A>
|
|
65
|
+
</UL>
|
|
66
|
+
|
|
67
|
+
<h5>Last modified: Sun Jul 14 15:48:30 1996</h5>
|
|
68
|
+
</body>
|
|
69
|
+
</html>
|