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,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Ethiopia </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 - Ethiopia </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.cs.indiana.edu/hyplan/dmulholl/ethiopia/aau_home.html">Addis Ababa 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:41:44 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<title>College and University Listing Frequently Asked Questions</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 Frequently
|
|
9
|
+
Asked Questions</H1>
|
|
10
|
+
|
|
11
|
+
The listing that I maintain has generated a lot of email and questions from
|
|
12
|
+
people, so in an attempt to address some of the questions I get asked most
|
|
13
|
+
often I've compiled the answers below. Please browse through these
|
|
14
|
+
questions and answers before sending a request to me directly. Thanks.
|
|
15
|
+
---christina
|
|
16
|
+
<P>
|
|
17
|
+
<DL>
|
|
18
|
+
<DT> <EM>Why is school X not on your list?</EM>
|
|
19
|
+
<DD> This list is a list of homepages, and is maintained in my spare time.
|
|
20
|
+
As such, schools that are not on the Web will not be found on the list, and
|
|
21
|
+
schools that I have not run across or that someone has not informed me
|
|
22
|
+
about, will not be listed. Unless there are links to your site from other
|
|
23
|
+
sites, it makes it very difficult to find. A lot of people seem to be
|
|
24
|
+
offended when they find a school missing from the list. Please do not be
|
|
25
|
+
offended. It is not my intention that anyone be left off this listing, but I
|
|
26
|
+
can only add the schools I know about either through personal wandering or
|
|
27
|
+
because someone emailed me the URL.
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
<DT> <EM>How does a school get added to the list?</EM>
|
|
31
|
+
<DD> There are several ways for a school to be added. Most recently, I have
|
|
32
|
+
been relying on help from other people to let me know about new schools that
|
|
33
|
+
should be added. I also spend several hours each week looking for new
|
|
34
|
+
sites.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<DT> <EM>Can you send me the URL for school X which is not on your list?</EM>
|
|
38
|
+
<DD> If I have the URL for a school it will be included in the listing.
|
|
39
|
+
Otherwise, I will try to find schools that people want added, but if you do
|
|
40
|
+
not see it on the university listing within a couple of weeks then it may
|
|
41
|
+
not have a homepage, may not be on the net at all, or I could just not find
|
|
42
|
+
any information about the school in my searches. The number of requests I
|
|
43
|
+
receive daily that fall in this category are too high for me to reply
|
|
44
|
+
personally to each one.
|
|
45
|
+
|
|
46
|
+
<DT> <EM>Can I get a list of the email addresses for all the schools on this
|
|
47
|
+
list?</EM>
|
|
48
|
+
<DD> <STRONG>No.</STRONG> I do not maintain a list of contact email
|
|
49
|
+
addresses for all the schools on this list, nor do I have any intention of
|
|
50
|
+
doing so. People want email addresses for various reasons, and often to
|
|
51
|
+
publicize a site or product that is available online. Many schools do not
|
|
52
|
+
have one single email address to answer all requests of this nature, and the
|
|
53
|
+
lists vary by site. For example, one site may have a list for queries
|
|
54
|
+
relating directly to the webserver, another for admissions information about
|
|
55
|
+
the school, and a third for alumni enquiries.
|
|
56
|
+
|
|
57
|
+
<DT> <EM>I am working on a research project about Y, can you send me
|
|
58
|
+
information on it?</EM>
|
|
59
|
+
<DD> Again, I maintain this list strictly as a resource for easily finding
|
|
60
|
+
colleges and universities around the world. I am not familiar with the
|
|
61
|
+
information at each and every site listed, and unfortunately do not have the
|
|
62
|
+
time to help everyone that asks find the information they are looking for.
|
|
63
|
+
This list is provided to help you find a starting point.
|
|
64
|
+
|
|
65
|
+
<DT> <EM>I/My son/daughter is interested in studying Z. Can you send me
|
|
66
|
+
information on schools with programs in this field?</EM>
|
|
67
|
+
<DD> Again, this list is merely there as a useful starting point and
|
|
68
|
+
sometime in the future I would like to be able to provide information about
|
|
69
|
+
areas of study at various schools, but right now what you see is what you
|
|
70
|
+
get. There are other listings that provide more information about areas of
|
|
71
|
+
study, size of schools, and tuition information and you may want to look
|
|
72
|
+
there to find a school, and then check back here to find the link to the
|
|
73
|
+
school's homepage.
|
|
74
|
+
<UL>
|
|
75
|
+
|
|
76
|
+
<LI> <A HREF="http://www.usmall.com/college/">Internet College
|
|
77
|
+
Exchange</A>
|
|
78
|
+
|
|
79
|
+
<LI> <A HREF="http://www.review.com/">Princeton Review</A>
|
|
80
|
+
|
|
81
|
+
<LI> <A HREF="http://www.collegenet.com/">CollegeNet</A>
|
|
82
|
+
|
|
83
|
+
<LI> <A HREF="http://www.nav.com/OWR/oneworld.html">OneWorld</A>
|
|
84
|
+
|
|
85
|
+
<LI> <A
|
|
86
|
+
HREF="http://isl-garnet.uah.edu:80/Universities/universities.html">Listing
|
|
87
|
+
by US State</A>
|
|
88
|
+
|
|
89
|
+
<LI><A HREF="http://easi.ed.gov/">Easy Access for Students and
|
|
90
|
+
Institutions, Project EASI</A>
|
|
91
|
+
|
|
92
|
+
</UL>
|
|
93
|
+
|
|
94
|
+
<DT> <EM>Why are you maintaining this list and how did it start?</EM>
|
|
95
|
+
<DD> When I was still working at MIT, the sudden popularity of the WWW
|
|
96
|
+
caused some controversy with regard to what type of 'front door' MIT wanted
|
|
97
|
+
to present to members of the MIT community and people just wandering the web
|
|
98
|
+
on its "official" homepage. I of course have my own opinions about what
|
|
99
|
+
makes a good home page, but in order to support the need for a professional
|
|
100
|
+
homepage I started making a list of homepages for other schools. There were
|
|
101
|
+
quite a few lists of US schools, but there was no single location for
|
|
102
|
+
universities all over the world, so I spent hours collecting new URLs and
|
|
103
|
+
this list has grown ever since. I am still maintaining this list partly
|
|
104
|
+
because of the challenge in trying to keep up with larger commercial sites
|
|
105
|
+
like Yahoo and Lycos that have more resources at their disposal for getting
|
|
106
|
+
new information. I also enjoy knowing that I am providing a unique resource
|
|
107
|
+
that gets approximately 10,000 accesses a day just at the MIT site so it is
|
|
108
|
+
definitely helping some people.
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
<DT> <EM>Can I mirror this listing?</EM>
|
|
112
|
+
<DD> Yes, feel free to mirror the listing locally, but please email me the
|
|
113
|
+
URL where the listing can be found at your site. Be sure to include an email
|
|
114
|
+
address I can send notification to every time the list is updated though. I
|
|
115
|
+
will include links to the mirror sites off of the univ.html page, but any
|
|
116
|
+
site that is not within two updates of the current listing will be removed
|
|
117
|
+
until they catch up.
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
<DT> <EM>Will you add a link to my page, even though it is not a school
|
|
121
|
+
homepage?</EM>
|
|
122
|
+
<DD> No. I am trying to keep this listing as simple as possible since it is
|
|
123
|
+
a page of college and unversity links. As such there are no extraneous
|
|
124
|
+
graphics, and with the exception of the full listing, and the U listing most
|
|
125
|
+
pages are under 20K in size. This makes it easy for anyone to access
|
|
126
|
+
regardless of the web browser they are using.
|
|
127
|
+
|
|
128
|
+
<DT> <EM>Can I pay you for advertising space on your pages?</EM>
|
|
129
|
+
<DD> How much money are we talking about here???? :) Actually I'm pretty
|
|
130
|
+
happy with the current state of this list as is, and am not sure that I want
|
|
131
|
+
to add more commerical hype to the web. My MIT account won't be around
|
|
132
|
+
forever though, so it you are interested in sponsoring this list at another
|
|
133
|
+
site drop me a line and we can discuss the details.
|
|
134
|
+
|
|
135
|
+
</DL>
|
|
136
|
+
|
|
137
|
+
<h5>Last modified: Sun Jul 14 15:24:23 1996</h5>
|
|
138
|
+
</body>
|
|
139
|
+
</html>
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Finland </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 - Finland </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.abo.fi/">Åbo Akademi University</A>
|
|
19
|
+
<LI> <A HREF="http://www.hamkk.fi/">Häme Polytechnic</A>
|
|
20
|
+
<LI> <A HREF="http://www.helbp.fi/">Helsinki Business Polytechnic</A>
|
|
21
|
+
<LI> <A HREF="http://www.hkkk.fi/">Helsinki School of Economics</A>
|
|
22
|
+
<LI> <A HREF="http://www.hut.fi/index.html">Helsinki University of Technology</A>
|
|
23
|
+
<LI> <A HREF="http://web.lahti-poly.fi/">Lahti Polytechnic</A>
|
|
24
|
+
<LI> <A HREF="http://www.lut.fi/english.html">Lappeenranta University of Technology</A>
|
|
25
|
+
<LI> <A HREF="http://www.otol.fi/index.uk.html">Oulu Institute of Tecnology</A>
|
|
26
|
+
<LI> <A HREF="http://www.spt.fi/">Satakunta Polytechnic</A>
|
|
27
|
+
<LI> <A HREF="http://www.siba.fi/">Sibelius Academy</A>
|
|
28
|
+
<LI> <A HREF="http://www.shh.fi/">Swedish School of Economics and Business Administration, Finland</A>
|
|
29
|
+
<LI> <A HREF="http://www.tit.fi/">Tampere Institute of Technology</A>
|
|
30
|
+
<LI> <A HREF="http://www.cc.tut.fi/">Tampere University of Technology</A>
|
|
31
|
+
<LI> <A HREF="http://www.uiah.fi/">University of Art and Design Helsinki</A>
|
|
32
|
+
<LI> <A HREF="http://www.helsinki.fi/">University of Helsinki</A>
|
|
33
|
+
<LI> <A HREF="http://cc.joensuu.fi/">University of Joensuu</A>
|
|
34
|
+
<LI> <A HREF="http://www.jyu.fi/">University of Jyväskylä</A>
|
|
35
|
+
<LI> <A HREF="http://www.uku.fi/">University of Kuopio</A>
|
|
36
|
+
<LI> <A HREF="http://www.oulu.fi/Welcome.html">University of Oulu</A>
|
|
37
|
+
<LI> <A HREF="http://www.uta.fi/">University of Tampere</A>
|
|
38
|
+
<LI> <A HREF="http://www.utu.fi/">University of Turku</A>
|
|
39
|
+
<LI> <A HREF="http://www.uwasa.fi/">University of Vaasa</A>
|
|
40
|
+
</OL>
|
|
41
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
42
|
+
<HR>
|
|
43
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
44
|
+
<P>
|
|
45
|
+
Last updated:
|
|
46
|
+
|
|
47
|
+
Mon Jul 15 00:41:45 PDT 1996
|
|
48
|
+
</BODY>
|
|
49
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Fiji </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 - Fiji </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.usp.ac.fj/">University of the South Pacific</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:41:46 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Faroe Islands </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 - Faroe Islands </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.sleipnir.fo/unifar.htm">University of the Faroe Islands</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:41:47 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - France </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 - France </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.agsird.edu/">American Graduate School of International Relations and Diplomacy</A>
|
|
19
|
+
<LI> <A HREF="http://www.aup.fr/">American University of Paris</A>
|
|
20
|
+
<LI> <A HREF="http://user.aol.com/Cannes06/private/index.html">Collège International de Cannes</A>
|
|
21
|
+
<LI> <A HREF="http://www.cdfinfo.in2p3.fr/college/college.html">College de France</A>
|
|
22
|
+
<LI> <A HREF="http://www.cdi.fr/">College des Ingenieurs</A>
|
|
23
|
+
<LI> <A HREF="http://www.enpc.fr/mib/pres.htm">ENPC Graduate School of International Business</A>
|
|
24
|
+
<LI> <A HREF="http://www.ecp.fr/">Ecole Centrale Paris (ECP)</A>
|
|
25
|
+
<LI> <A HREF="http://www.ec-lyon.fr/">Ecole Centrale de Lyon</A>
|
|
26
|
+
<LI> <A HREF="http://www.eisti.fr/">Ecole Internationale des Sciences du Traitement de l'Information</A>
|
|
27
|
+
<LI> <A HREF="http://www.paris.ensam.fr/">Ecole Nationale Supérieure d'Arts et Métiers de Paris</A>
|
|
28
|
+
<LI> <A HREF="http://www.enserg.fr/">Ecole Nationale Supérieure d'Electronique et de Radioélectricité de Grenoble</A>
|
|
29
|
+
<LI> <A HREF="http://www-ensimag.imag.fr/">Ecole Nationale Supérieure d'Informatique et de Mathématiques Appliquées de Grenoble (ENSIMAG)</A>
|
|
30
|
+
<LI> <A HREF="http://www-ensps.u-strasbg.fr/">École Nationale Supérieure de Physique de Strasbourg</A>
|
|
31
|
+
<LI> <A HREF="http://www.ensta.fr/">École Nationale Supérieure de Techniques Avancées</A>
|
|
32
|
+
<LI> <A HREF="http://www.ensmp.fr/">École Nationale Supérieure des Mines de Paris</A>
|
|
33
|
+
<LI> <A HREF="http://www.emse.fr/">Ecole Nationale Supérieure des Mines de St-Etienne</A>
|
|
34
|
+
<LI> <A HREF="http://www.enst-bretagne.fr/Home_page_en.html">École Nationale Supérieure des Telecommunications de Bretagne</A>
|
|
35
|
+
<LI> <A HREF="http://www.enserb.u-bordeaux.fr/">Ecole Nationale Superieure d'Electronique et de Radioelectricite de Bordeaux</A>
|
|
36
|
+
<LI> <A HREF="http://www.enseeiht.fr/">Ecole Nationale Superieure d'Electronique, d'Electrotechnique, d'Informatique et d'Hydraulique de Toulouse (ENSEEIHT)</A>
|
|
37
|
+
<LI> <A HREF="http://www.ensica.fr/">Ecole Nationale Superieure d'Ingenieurs en Construction Aeronautique (ENSICA)</A>
|
|
38
|
+
<LI> <A HREF="http://www.enst.fr/">Ecole Nationale Superieure des Telecommunications de Paris (ENST)</A>
|
|
39
|
+
<LI> <A HREF="http://apollo12.eis.enac.dgac.fr:8001/">Ecole Nationale de l'Aviation Civile (ENAC)</A>
|
|
40
|
+
<LI> <A HREF="http://www.ens.fr/">École Normale Supérieure</A>
|
|
41
|
+
<LI> <A HREF="http://www.ens-cachan.fr/">École Normale Supérieure de Cachan</A>
|
|
42
|
+
<LI> <A HREF="http://www.ens-lyon.fr/">Ecole Normale Supérieure de Lyon</A>
|
|
43
|
+
<LI> <A HREF="http://www.polytechnique.fr/">École Polytechnique</A>
|
|
44
|
+
<LI> <A HREF="http://www.epita.fr:5000/">Ecole Pour l'Informatique et les Techniques Avancée</A>
|
|
45
|
+
<LI> <A HREF="http://www.supelec.fr/">École Supérieure D'Électricité</A>
|
|
46
|
+
<LI> <A HREF="http://www.esiee.fr/">École Supérieure D'Ingénieur en Électronique et Électrotechnique</A>
|
|
47
|
+
<LI> <A HREF="http://www.essi.fr/">Ecole Supérieure en Sciences Informatiques</A>
|
|
48
|
+
<LI> <A HREF="http://www-escmp.u-3mrs.fr/">Ecole Superieure de Commerce de Marseille-Provence</A>
|
|
49
|
+
<LI> <A HREF="http://www.escp.ccip.fr/">Ecole Superieure de Commerce de Paris</A>
|
|
50
|
+
<LI> <A HREF="http://www.insead.fr/">European Institute of Business Administration</A>
|
|
51
|
+
<LI> <A HREF="http://www.ecole-navale.fr/homepageang.html">French Naval Academy</A>
|
|
52
|
+
<LI> <A HREF="http://www.ifremer.fr/">Institut Francais de Recherche pour l'Exploitation de la Mer</A>
|
|
53
|
+
<LI> <A HREF="http://www.inpg.fr/">Institut National Polytechnique de Grenoble</A>
|
|
54
|
+
<LI> <A HREF="http://www.inp-fc.fr/">Institut National Polytechnique de Toulouse</A>
|
|
55
|
+
<LI> <A HREF="http://info.in2p3.fr/">Institut National de Physique Nucleaire et de Physique des Particules</A>
|
|
56
|
+
<LI> <A HREF="http://www.insa-lyon.fr/">Institut National des Sciences Appliquées de Lyon </A>
|
|
57
|
+
<LI> <A HREF="http://www.insa-tlse.fr/">Institut National des Sciences Appliquees de Toulouse</A>
|
|
58
|
+
<LI> <A HREF="http://www.int-evry.fr/">Institut National des T�l�communications</A>
|
|
59
|
+
<LI> <A HREF="http://www-isia.cma.fr/">Institut Supérieur d'Informatique et d'Automatique</A>
|
|
60
|
+
<LI> <A HREF="http://wwwserv.isen.fr/english.html">Institut Supérieure D'Electronique du Nord</A>
|
|
61
|
+
<LI> <A HREF="http://www.isg.fr/">Institut Superieur de Gestion</A>
|
|
62
|
+
<LI> <A HREF="http://www.u-psud.fr/enseignement/iut-sceaux/">Institut Universitaire de Technologie de Sceaux</A>
|
|
63
|
+
<LI> <A HREF="http://iie.cnam.fr/">Institut d'Informatique d'Entreprise</A>
|
|
64
|
+
<LI> <A HREF="http://www.dig-isim.univ-montp2.fr/">Institut des Sciences
|
|
65
|
+
de l'Ingénieur de Montpellier</A>
|
|
66
|
+
|
|
67
|
+
<LI> <A HREF="http://www.u-strasbg.fr/">Strasbourg University</A>
|
|
68
|
+
<LI> <A HREF="http://www.univ-lille3.fr/">Université Charles-de-Gaulle - Lille 3</A>
|
|
69
|
+
<LI> <A HREF="http://www.univ-lyon1.fr/">Université Claude Bernard Lyon I</A>
|
|
70
|
+
<LI> <A HREF="http://www.ujf-grenoble.fr/">Université Joseph Fourier</A>
|
|
71
|
+
<LI> <A HREF="http://sunserv0.montaigne.u-bordeaux.fr/">Université Michel de Montaigne - Bordeaux 3</A>
|
|
72
|
+
<LI> <A HREF="http://www.nancy2.u-nancy.fr/">Université Nancy 2</A>
|
|
73
|
+
<LI> <A HREF="http://www.univ-paris8.fr/">Université Paris 8</A>
|
|
74
|
+
<LI> <A HREF="http://www.bu.dauphine.fr/">Université Paris IX Dauphine</A>
|
|
75
|
+
<LI> <A HREF="http://www.grenet.fr/upmf/">Université Pierre Mendès France</A>
|
|
76
|
+
<LI> <A HREF="http://www.u-3mrs.fr/">Université d'Aix-Marseille III</A>
|
|
77
|
+
<LI> <A HREF="http://www.univ-angers.fr/">Université d'Angers</A>
|
|
78
|
+
<LI> <A HREF="http://news.u-bordeaux.fr/">Université de Bourdeaux</A>
|
|
79
|
+
<LI> <A HREF="http://www.unicaen.fr/">Université de Caen</A>
|
|
80
|
+
<LI> <A HREF="http://www.univ-fcomte.fr/">Université de Franche-Comté</A>
|
|
81
|
+
<LI> <A HREF="http://indy.univ-mlv.fr/">Université de Marne la Vallée</A>
|
|
82
|
+
<LI> <A HREF="http://www.unice.fr/">Université de Nice - Sophia Antipolis</A>
|
|
83
|
+
|
|
84
|
+
<LI> <A HREF="http://www.univ-perp.fr/">Université de Perpignan</A>
|
|
85
|
+
<LI> <A HREF="http://newsup.univ-mrs.fr/">Université de Provence</A>
|
|
86
|
+
<LI> <A HREF="http://www.univ-savoie.fr/">Université de Savoie</A>
|
|
87
|
+
<LI> <A HREF="http://www.univ-compiegne.fr/">Université de Technologie de Compiègne</A>
|
|
88
|
+
<LI> <A HREF="http://www.univ-aix.fr/">Université de la Méditerranée</A>
|
|
89
|
+
<LI> <A HREF="http://www.univ-lille1.fr/">Université des Sciences et Technologies de Lille</A>
|
|
90
|
+
<LI> <A HREF="http://web.univ-lyon2.fr/Universite.html">Universite Lumiere Lyon</A>
|
|
91
|
+
<LI> <A HREF="http://web.univ-orleans.fr/index2.html">Universite d'Orleans</A>
|
|
92
|
+
<LI> <A HREF="http://www.univ-pau.fr/">Universite de Pau et des Pays de l'Adour</A>
|
|
93
|
+
<LI> <A HREF="http://delta.si.univ-compiegne.fr/">Universite de Technologie Compiegne</A>
|
|
94
|
+
<LI> <A HREF="http://www.ups-tlse.fr/">Universiti Paul Sabatier</A>
|
|
95
|
+
<LI> <A HREF="http://www.u-picardie.fr/">University of Picardie</A>
|
|
96
|
+
<LI> <A HREF="http://www.univ-rennes1.fr/welcome.html">University of Rennes 1</A>
|
|
97
|
+
</OL>
|
|
98
|
+
<A HREF="geog.html">Return to Top Level</A>
|
|
99
|
+
<HR>
|
|
100
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>
|
|
101
|
+
<P>
|
|
102
|
+
Last updated:
|
|
103
|
+
|
|
104
|
+
Mon Jul 15 00:41:49 PDT 1996
|
|
105
|
+
</BODY>
|
|
106
|
+
</HTML>
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
<HTML>
|
|
2
|
+
<HEAD><TITLE>College and University Home Pages</TITLE>
|
|
3
|
+
<LINK HREF="mailto:cdemello@mit.edu">
|
|
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 Home Pages -
|
|
9
|
+
Geographical Listing</H1>
|
|
10
|
+
|
|
11
|
+
<HR>
|
|
12
|
+
|
|
13
|
+
(C)Copyright 1995,1996 <A
|
|
14
|
+
HREF="http://www.mit.edu:8001/people/cdemello/home.html">Christina
|
|
15
|
+
DeMello</A>. Reproduction and distribution are permissible for non-profit
|
|
16
|
+
purposes only, but no changes are to be made to this document without the
|
|
17
|
+
author's written consent. <P>
|
|
18
|
+
|
|
19
|
+
Please send additions, corrections, and comments to <EM><A
|
|
20
|
+
HREF="mailto:cdemello@mit.edu">cdemello@mit.edu</A></EM>.<P>
|
|
21
|
+
|
|
22
|
+
<HR>
|
|
23
|
+
|
|
24
|
+
<STRONG>July, 1996</STRONG>. This list now has over <STRONG>3000</STRONG>
|
|
25
|
+
entries in more than 80 countries! Several other sites have given special
|
|
26
|
+
attention to this site, so they are now listed on a <A
|
|
27
|
+
HREF="recognition.html">recognition</A> page. <P>
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
In response to the increasing amount of email
|
|
31
|
+
I have been getting, I've compiled a list of <A HREF="faq.html">frequently
|
|
32
|
+
asked questions</A>. <EM>Please read these answers before sending me
|
|
33
|
+
email!</EM> <P>
|
|
34
|
+
|
|
35
|
+
<STRONG>SURVEY:</STRONG>I'm
|
|
36
|
+
no longer able to keep up with the survey on 'good school homepages', but
|
|
37
|
+
you can see the final <A HREF="results.html">results.</A> Look for an
|
|
38
|
+
updated survey within the next couple of months.<P>
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
This list contains universities and colleges all over the world. It
|
|
42
|
+
does not contain departmental pages unless the page in question did an
|
|
43
|
+
adequate job of providing general campus information as well - there
|
|
44
|
+
is also only one link per school. For a list of US schools only, see
|
|
45
|
+
Mike Conlon's <A
|
|
46
|
+
HREF="http://www.clas.ufl.edu/CLAS/american-universities.html">list of
|
|
47
|
+
American Universities</A>. <P>
|
|
48
|
+
|
|
49
|
+
This is the geographical listing, but you can access an <A
|
|
50
|
+
HREF="univ.html">alphabetical listing</A> as well, which includes mirror
|
|
51
|
+
sites for these lists. To skip ahead to a particular country or region
|
|
52
|
+
select it from the following list:
|
|
53
|
+
|
|
54
|
+
<A HREF="ar.html">Argentina</A>,
|
|
55
|
+
<A HREF="am.html">Armenia</A>,
|
|
56
|
+
<A HREF="au.html">Australia</A>,
|
|
57
|
+
<A HREF="at.html">Austria</A>,
|
|
58
|
+
<A HREF="bh.html">Bahrain</A>,
|
|
59
|
+
<A HREF="bd.html">Bangladesh</A>,
|
|
60
|
+
<A HREF="be.html">Belgium</A>,
|
|
61
|
+
<A HREF="bm.html">Bermuda</A>,
|
|
62
|
+
<A HREF="br.html">Brazil</A>,
|
|
63
|
+
<A HREF="bn.html">Brunei Darussalam</A>,
|
|
64
|
+
<A HREF="bg.html">Bulgaria</A>,
|
|
65
|
+
<A HREF="ca.html">Canada</A>,
|
|
66
|
+
<A HREF="cl.html">Chile</A>,
|
|
67
|
+
<A HREF="cn.html">China</A>,
|
|
68
|
+
<A HREF="co.html">Colombia</A>,
|
|
69
|
+
<A HREF="cr.html">Costa Rica</A>,
|
|
70
|
+
<A HREF="hr.html">Croatia</A>,
|
|
71
|
+
<A HREF="cy.html">Cyprus</A>,
|
|
72
|
+
<A HREF="cz.html">Czech Republic</A>,
|
|
73
|
+
<A HREF="dk.html">Denmark</A>,
|
|
74
|
+
<A HREF="ec.html">Ecuador</A>,
|
|
75
|
+
<A HREF="eg.html">Egypt</A>,
|
|
76
|
+
<A HREF="ee.html">Estonia</A>,
|
|
77
|
+
<A HREF="et.html">Ethiopia</A>,
|
|
78
|
+
<A HREF="fo.html">Faroe Islands</A>,
|
|
79
|
+
<A HREF="fj.html">Fiji</A>,
|
|
80
|
+
<A HREF="fi.html">Finland</A>,
|
|
81
|
+
<A HREF="fr.html">France</A>,
|
|
82
|
+
<A HREF="de.html">Germany</A>,
|
|
83
|
+
<A HREF="gr.html">Greece</A>,
|
|
84
|
+
<A HREF="gu.html">Guam</A>,
|
|
85
|
+
<A HREF="hk.html">Hong Kong</A>,
|
|
86
|
+
<A HREF="hu.html">Hungary</A>,
|
|
87
|
+
<A HREF="is.html">Iceland</A>,
|
|
88
|
+
<A HREF="in.html">India</A>,
|
|
89
|
+
<A HREF="id.html">Indonesia</A>,
|
|
90
|
+
<A HREF="ie.html">Ireland</A>,
|
|
91
|
+
<A HREF="il.html">Israel</A>,
|
|
92
|
+
<A HREF="it.html">Italy</A>,
|
|
93
|
+
<A HREF="jm.html">Jamaica</A>,
|
|
94
|
+
<A HREF="jp.html">Japan</A>,
|
|
95
|
+
<A HREF="jo.html">Jordan</A>,
|
|
96
|
+
<A HREF="kr.html">Korea</A>,
|
|
97
|
+
<A HREF="kw.html">Kuwait</A>,
|
|
98
|
+
<A HREF="lv.html">Latvia</A>,
|
|
99
|
+
<A HREF="lb.html">Lebanon</A>,
|
|
100
|
+
<A HREF="lt.html">Lithuania</A>,
|
|
101
|
+
<A HREF="lu.html">Luxembourg</A>,
|
|
102
|
+
<A HREF="mo.html">Macau</A>,
|
|
103
|
+
<A HREF="mk.html">Macedonia</A>,
|
|
104
|
+
<A HREF="my.html">Malaysia</A>,
|
|
105
|
+
<A HREF="mt.html">Malta</A>,
|
|
106
|
+
<A HREF="mx.html">Mexico</A>,
|
|
107
|
+
<A HREF="ma.html">Morocco</A>,
|
|
108
|
+
<A HREF="nl.html">Netherlands</A>,
|
|
109
|
+
<A HREF="nz.html">New Zealand</A>,
|
|
110
|
+
<A HREF="ni.html">Nicaragua</A>,
|
|
111
|
+
<A HREF="no.html">Norway</A>,
|
|
112
|
+
<A HREF="ps.html">Palestine</A>,
|
|
113
|
+
<A HREF="pa.html">Panama</A>,
|
|
114
|
+
<A HREF="pe.html">Peru</A>,
|
|
115
|
+
<A HREF="ph.html">Philippines</A>,
|
|
116
|
+
<A HREF="pl.html">Poland</A>,
|
|
117
|
+
<A HREF="pt.html">Portugal</A>,
|
|
118
|
+
<A HREF="pr.html">Puerto Rico</A>,
|
|
119
|
+
<A HREF="ro.html">Romania</A>,
|
|
120
|
+
<A HREF="ru.html">Russia</A>,
|
|
121
|
+
<A HREF="sg.html">Singapore</A>,
|
|
122
|
+
<A HREF="sk.html">Slovakia</A>,
|
|
123
|
+
<A HREF="si.html">Slovenia</A>,
|
|
124
|
+
<A HREF="za.html">South Africa</A>,
|
|
125
|
+
<A HREF="es.html">Spain</A>,
|
|
126
|
+
<A HREF="lk.html">Sri Lanka</A>,
|
|
127
|
+
<A HREF="sd.html">Sudan</A>,
|
|
128
|
+
<A HREF="se.html">Sweden</A>,
|
|
129
|
+
<A HREF="ch.html">Switzerland</A>,
|
|
130
|
+
<A HREF="tw.html">Taiwan</A>,
|
|
131
|
+
<A HREF="th.html">Thailand</A>,
|
|
132
|
+
<A HREF="tr.html">Turkey</A>,
|
|
133
|
+
<A HREF="ua.html">Ukraine</A>,
|
|
134
|
+
<A HREF="ae.html">United Arab Emirates</A>,
|
|
135
|
+
<A HREF="uk.html">United Kingdom</A>,
|
|
136
|
+
<A HREF="http://www.clas.ufl.edu/CLAS/american-universities.html">United
|
|
137
|
+
States</A>,
|
|
138
|
+
<A HREF="uy.html">Uruguay</A>,
|
|
139
|
+
<A HREF="ve.html">Venezuela</A>,
|
|
140
|
+
<A HREF="yu.html">Yugoslavia</A>,
|
|
141
|
+
<A HREF="zm.html">Zambia</A>
|
|
142
|
+
|
|
143
|
+
<P>
|
|
144
|
+
<HR>
|
|
145
|
+
|
|
146
|
+
<EM><A HREF="mailto:cdemello@mit.edu">cdemello@mit.edu, cdemello@us.oracle.com</A></EM>/
|
|
147
|
+
<h5>Last modified: Mon Jul 15 00:11:44 1996</h5>
|
|
148
|
+
|
|
149
|
+
</BODY>
|
|
150
|
+
</HTML>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Greece </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 - Greece </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.lance.colostate.edu/auth/">Aristotle University of Thessaloniki (mirror)</A>
|
|
19
|
+
<LI> <A HREF="http://www.aueb.gr/">Athens University of Economics and Business (AUEB)</A>
|
|
20
|
+
<LI> <A HREF="http://www.cc.duth.gr/">Democritus University</A>
|
|
21
|
+
<LI> <A HREF="http://www.ntua.gr/">National Technical University of Athens</A>
|
|
22
|
+
<LI> <A HREF="http://www.ergasya.tuc.gr/">Technical University of Crete (T.U.C)</A>
|
|
23
|
+
<LI> <A HREF="http://www.uoa.gr/">University of Athens</A>
|
|
24
|
+
<LI> <A HREF="http://www.cc.uch.gr/">University of Crete</A>
|
|
25
|
+
<LI> <A HREF="http://www.uoi.gr/">University of Ioannina</A>
|
|
26
|
+
<LI> <A HREF="http://www.it.uom.gr/">University of Macedonia</A>
|
|
27
|
+
<LI> <A HREF="http://www.apel.ee.upatras.gr/">University of Patras</A>
|
|
28
|
+
<LI> <A HREF="http://www.aegean.gr/">University of the Aegean</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:41:50 PDT 1996
|
|
37
|
+
</BODY>
|
|
38
|
+
</HTML>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<HTML><HEAD><TITLE>Colleges and Universities - Guam </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 - Guam </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://uog2.uog.edu/">University of Guam</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:41:51 PDT 1996
|
|
27
|
+
</BODY>
|
|
28
|
+
</HTML>
|