de.oddb 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Guide.txt +3 -0
- data/History.txt +5 -0
- data/LICENCE.txt +339 -0
- data/Manifest.txt +430 -0
- data/README +423 -0
- data/README.txt +25 -0
- data/Rakefile +28 -0
- data/bin/admin +71 -0
- data/bin/exportd +44 -0
- data/bin/oddbd +33 -0
- data/data/fulltext/data/dicts/french/fulltext.aff +1057 -0
- data/data/fulltext/data/dicts/french/fulltext.dict +91189 -0
- data/data/fulltext/data/dicts/french/fulltext.stop +135 -0
- data/data/fulltext/data/dicts/german/fulltext.aff +1233 -0
- data/data/fulltext/data/dicts/german/fulltext.dict +287574 -0
- data/data/fulltext/data/dicts/german/fulltext.stop +133 -0
- data/data/fulltext/data/german_compound/README +15 -0
- data/data/fulltext/data/german_compound/compound.pl +63 -0
- data/data/fulltext/data/german_compound/german.stop +20 -0
- data/data/fulltext/data/ispell-german-compound.tar.gz +0 -0
- data/data/fulltext/redist/dict_french/Makefile +12 -0
- data/data/fulltext/redist/dict_french/README.french +1 -0
- data/data/fulltext/redist/dict_french/dict_french.sql.in +7 -0
- data/data/fulltext/redist/dict_french/dict_snowball.c +56 -0
- data/data/fulltext/redist/dict_french/french_stem.c +1222 -0
- data/data/fulltext/redist/dict_french/french_stem.h +16 -0
- data/data/fulltext/redist/dict_french/subinclude.h +2 -0
- data/data/fulltext/redist/dict_german/Makefile +12 -0
- data/data/fulltext/redist/dict_german/README.german +1 -0
- data/data/fulltext/redist/dict_german/dict_german.sql.in +7 -0
- data/data/fulltext/redist/dict_german/dict_snowball.c +56 -0
- data/data/fulltext/redist/dict_german/german_stem.c +527 -0
- data/data/fulltext/redist/dict_german/german_stem.h +16 -0
- data/data/fulltext/redist/dict_german/subinclude.h +1 -0
- data/data/fulltext/redist/french_stem.c +1222 -0
- data/data/fulltext/redist/french_stem.h +16 -0
- data/data/fulltext/redist/german_stem.c +527 -0
- data/data/fulltext/redist/german_stem.h +16 -0
- data/jobs/export_chde_xls +20 -0
- data/jobs/export_csv +20 -0
- data/jobs/export_fachinfo_yaml +20 -0
- data/jobs/export_patinfo_yaml +20 -0
- data/jobs/export_yaml +20 -0
- data/jobs/import_dimdi +15 -0
- data/jobs/import_gkv +19 -0
- data/jobs/import_pharma24 +15 -0
- data/jobs/import_pharmnet +30 -0
- data/jobs/import_whocc +18 -0
- data/lib/fixes/singular.rb +9 -0
- data/lib/fixes/yaml.rb +13 -0
- data/lib/oddb.rb +13 -0
- data/lib/oddb/business/company.rb +18 -0
- data/lib/oddb/business/grant_download.rb +27 -0
- data/lib/oddb/business/invoice.rb +75 -0
- data/lib/oddb/config.rb +112 -0
- data/lib/oddb/currency.rb +6 -0
- data/lib/oddb/drugs.rb +16 -0
- data/lib/oddb/drugs/active_agent.rb +37 -0
- data/lib/oddb/drugs/atc.rb +53 -0
- data/lib/oddb/drugs/composition.rb +41 -0
- data/lib/oddb/drugs/ddd.rb +24 -0
- data/lib/oddb/drugs/dose.rb +107 -0
- data/lib/oddb/drugs/galenic_form.rb +21 -0
- data/lib/oddb/drugs/galenic_group.rb +17 -0
- data/lib/oddb/drugs/package.rb +111 -0
- data/lib/oddb/drugs/part.rb +55 -0
- data/lib/oddb/drugs/product.rb +25 -0
- data/lib/oddb/drugs/sequence.rb +68 -0
- data/lib/oddb/drugs/substance.rb +31 -0
- data/lib/oddb/drugs/substance_group.rb +13 -0
- data/lib/oddb/drugs/unit.rb +12 -0
- data/lib/oddb/export.rb +4 -0
- data/lib/oddb/export/csv.rb +94 -0
- data/lib/oddb/export/l10n_sessions.rb +30 -0
- data/lib/oddb/export/rss.rb +44 -0
- data/lib/oddb/export/server.rb +137 -0
- data/lib/oddb/export/xls.rb +127 -0
- data/lib/oddb/export/yaml.rb +212 -0
- data/lib/oddb/html/state/download.rb +13 -0
- data/lib/oddb/html/state/drugs/admin/package.rb +190 -0
- data/lib/oddb/html/state/drugs/admin/product.rb +56 -0
- data/lib/oddb/html/state/drugs/admin/sequence.rb +253 -0
- data/lib/oddb/html/state/drugs/ajax/explain_ddd_price.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/explain_price.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/global.rb +18 -0
- data/lib/oddb/html/state/drugs/ajax/package_infos.rb +19 -0
- data/lib/oddb/html/state/drugs/ajax/remote_infos.rb +19 -0
- data/lib/oddb/html/state/drugs/atc_browser.rb +39 -0
- data/lib/oddb/html/state/drugs/atc_guidelines.rb +21 -0
- data/lib/oddb/html/state/drugs/compare.rb +52 -0
- data/lib/oddb/html/state/drugs/download_export.rb +18 -0
- data/lib/oddb/html/state/drugs/downloads.rb +42 -0
- data/lib/oddb/html/state/drugs/fachinfo.rb +21 -0
- data/lib/oddb/html/state/drugs/feedback.rb +91 -0
- data/lib/oddb/html/state/drugs/global.rb +270 -0
- data/lib/oddb/html/state/drugs/init.rb +18 -0
- data/lib/oddb/html/state/drugs/login.rb +17 -0
- data/lib/oddb/html/state/drugs/package.rb +32 -0
- data/lib/oddb/html/state/drugs/patinfo.rb +21 -0
- data/lib/oddb/html/state/drugs/products.rb +51 -0
- data/lib/oddb/html/state/drugs/result.rb +125 -0
- data/lib/oddb/html/state/global.rb +206 -0
- data/lib/oddb/html/state/global_predefine.rb +17 -0
- data/lib/oddb/html/state/limit.rb +17 -0
- data/lib/oddb/html/state/login.rb +56 -0
- data/lib/oddb/html/state/paypal/checkout.rb +97 -0
- data/lib/oddb/html/state/paypal/collect.rb +19 -0
- data/lib/oddb/html/state/paypal/download.rb +61 -0
- data/lib/oddb/html/state/paypal/redirect.rb +18 -0
- data/lib/oddb/html/state/register_download.rb +24 -0
- data/lib/oddb/html/state/register_export.rb +38 -0
- data/lib/oddb/html/state/register_poweruser.rb +17 -0
- data/lib/oddb/html/state/viral/admin.rb +79 -0
- data/lib/oddb/html/state/viral/poweruser.rb +16 -0
- data/lib/oddb/html/util/annotated_list.rb +39 -0
- data/lib/oddb/html/util/know_it_all.rb +28 -0
- data/lib/oddb/html/util/known_user.rb +55 -0
- data/lib/oddb/html/util/lookandfeel.rb +698 -0
- data/lib/oddb/html/util/need_all_input.rb +29 -0
- data/lib/oddb/html/util/session.rb +84 -0
- data/lib/oddb/html/util/sort.rb +72 -0
- data/lib/oddb/html/util/unsaved_helper.rb +20 -0
- data/lib/oddb/html/util/validator.rb +59 -0
- data/lib/oddb/html/view/ajax/json.rb +22 -0
- data/lib/oddb/html/view/alpha_header.rb +28 -0
- data/lib/oddb/html/view/document.rb +117 -0
- data/lib/oddb/html/view/download.rb +33 -0
- data/lib/oddb/html/view/drugs/admin/package.rb +245 -0
- data/lib/oddb/html/view/drugs/admin/product.rb +104 -0
- data/lib/oddb/html/view/drugs/admin/sequence.rb +305 -0
- data/lib/oddb/html/view/drugs/ajax/explain_ddd_price.rb +87 -0
- data/lib/oddb/html/view/drugs/ajax/explain_price.rb +61 -0
- data/lib/oddb/html/view/drugs/ajax/package_infos.rb +105 -0
- data/lib/oddb/html/view/drugs/ajax/remote_infos.rb +44 -0
- data/lib/oddb/html/view/drugs/atc_browser.rb +68 -0
- data/lib/oddb/html/view/drugs/atc_guidelines.rb +94 -0
- data/lib/oddb/html/view/drugs/compare.rb +95 -0
- data/lib/oddb/html/view/drugs/download_export.rb +28 -0
- data/lib/oddb/html/view/drugs/downloads.rb +128 -0
- data/lib/oddb/html/view/drugs/fachinfo.rb +46 -0
- data/lib/oddb/html/view/drugs/feedback.rb +235 -0
- data/lib/oddb/html/view/drugs/init.rb +51 -0
- data/lib/oddb/html/view/drugs/legend.rb +24 -0
- data/lib/oddb/html/view/drugs/package.rb +403 -0
- data/lib/oddb/html/view/drugs/patinfo.rb +46 -0
- data/lib/oddb/html/view/drugs/products.rb +97 -0
- data/lib/oddb/html/view/drugs/result.rb +296 -0
- data/lib/oddb/html/view/drugs/search.rb +33 -0
- data/lib/oddb/html/view/drugs/template.rb +15 -0
- data/lib/oddb/html/view/foot.rb +52 -0
- data/lib/oddb/html/view/google.rb +23 -0
- data/lib/oddb/html/view/google_ads.rb +40 -0
- data/lib/oddb/html/view/head.rb +78 -0
- data/lib/oddb/html/view/limit.rb +109 -0
- data/lib/oddb/html/view/list.rb +59 -0
- data/lib/oddb/html/view/login.rb +38 -0
- data/lib/oddb/html/view/navigation.rb +67 -0
- data/lib/oddb/html/view/offset_header.rb +35 -0
- data/lib/oddb/html/view/paypal/collect.rb +95 -0
- data/lib/oddb/html/view/paypal/redirect.rb +51 -0
- data/lib/oddb/html/view/paypal/register_form.rb +149 -0
- data/lib/oddb/html/view/register_download.rb +29 -0
- data/lib/oddb/html/view/register_export.rb +29 -0
- data/lib/oddb/html/view/register_poweruser.rb +29 -0
- data/lib/oddb/html/view/rss/feedback.rb +64 -0
- data/lib/oddb/html/view/rss_preview.rb +61 -0
- data/lib/oddb/html/view/search.rb +104 -0
- data/lib/oddb/html/view/snapback.rb +24 -0
- data/lib/oddb/html/view/template.rb +56 -0
- data/lib/oddb/import/dimdi.rb +583 -0
- data/lib/oddb/import/excel.rb +45 -0
- data/lib/oddb/import/gkv.rb +463 -0
- data/lib/oddb/import/importer.rb +36 -0
- data/lib/oddb/import/pharma24.rb +211 -0
- data/lib/oddb/import/pharmnet.rb +1186 -0
- data/lib/oddb/import/rtf.rb +409 -0
- data/lib/oddb/import/whocc.rb +148 -0
- data/lib/oddb/import/xml.rb +15 -0
- data/lib/oddb/model.rb +179 -0
- data/lib/oddb/persistence.rb +22 -0
- data/lib/oddb/persistence/odba.rb +32 -0
- data/lib/oddb/persistence/odba/business/company.rb +13 -0
- data/lib/oddb/persistence/odba/business/grant_download.rb +14 -0
- data/lib/oddb/persistence/odba/business/invoice.rb +15 -0
- data/lib/oddb/persistence/odba/drugs/atc.rb +15 -0
- data/lib/oddb/persistence/odba/drugs/galenic_form.rb +18 -0
- data/lib/oddb/persistence/odba/drugs/galenic_group.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/package.rb +25 -0
- data/lib/oddb/persistence/odba/drugs/product.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/sequence.rb +21 -0
- data/lib/oddb/persistence/odba/drugs/substance.rb +21 -0
- data/lib/oddb/persistence/odba/drugs/substance_group.rb +13 -0
- data/lib/oddb/persistence/odba/drugs/unit.rb +13 -0
- data/lib/oddb/persistence/odba/export.rb +26 -0
- data/lib/oddb/persistence/odba/model.rb +68 -0
- data/lib/oddb/persistence/odba/text/document.rb +11 -0
- data/lib/oddb/persistence/odba/util/code.rb +11 -0
- data/lib/oddb/persistence/odba/util/m10l_document.rb +13 -0
- data/lib/oddb/persistence/og.rb +16 -0
- data/lib/oddb/persistence/og/drugs/composition.rb +14 -0
- data/lib/oddb/persistence/og/drugs/product.rb +14 -0
- data/lib/oddb/persistence/og/drugs/sequence.rb +15 -0
- data/lib/oddb/persistence/og/model.rb +25 -0
- data/lib/oddb/persistence/og/util/multilingual.rb +13 -0
- data/lib/oddb/redist/rtf_tools/reader.rb +139 -0
- data/lib/oddb/remote/business/company.rb +17 -0
- data/lib/oddb/remote/drugs/active_agent.rb +27 -0
- data/lib/oddb/remote/drugs/atc.rb +31 -0
- data/lib/oddb/remote/drugs/dose.rb +8 -0
- data/lib/oddb/remote/drugs/galenic_form.rb +24 -0
- data/lib/oddb/remote/drugs/package.rb +128 -0
- data/lib/oddb/remote/drugs/part.rb +30 -0
- data/lib/oddb/remote/drugs/substance.rb +20 -0
- data/lib/oddb/remote/drugs/unit.rb +20 -0
- data/lib/oddb/remote/object.rb +36 -0
- data/lib/oddb/text/chapter.rb +23 -0
- data/lib/oddb/text/document.rb +42 -0
- data/lib/oddb/text/format.rb +37 -0
- data/lib/oddb/text/paragraph.rb +53 -0
- data/lib/oddb/text/picture.rb +89 -0
- data/lib/oddb/text/table.rb +68 -0
- data/lib/oddb/util.rb +9 -0
- data/lib/oddb/util/annotated_list.rb +37 -0
- data/lib/oddb/util/code.rb +69 -0
- data/lib/oddb/util/comparison.rb +36 -0
- data/lib/oddb/util/download.rb +17 -0
- data/lib/oddb/util/exporter.rb +8 -0
- data/lib/oddb/util/feedback.rb +23 -0
- data/lib/oddb/util/ipn.rb +53 -0
- data/lib/oddb/util/job.rb +23 -0
- data/lib/oddb/util/logger.rb +20 -0
- data/lib/oddb/util/m10l_document.rb +41 -0
- data/lib/oddb/util/mail.rb +87 -0
- data/lib/oddb/util/money.rb +64 -0
- data/lib/oddb/util/multilingual.rb +70 -0
- data/lib/oddb/util/quanty.rb +3 -0
- data/lib/oddb/util/quanty/fact.rb +242 -0
- data/lib/oddb/util/quanty/main.rb +164 -0
- data/lib/oddb/util/quanty/parse.rb +872 -0
- data/lib/oddb/util/quanty/units.dump +0 -0
- data/lib/oddb/util/server.rb +150 -0
- data/lib/oddb/util/smtp_tls.rb +58 -0
- data/lib/oddb/util/updater.rb +161 -0
- data/lib/oddb/util/ydim.rb +110 -0
- data/lib/oddb/util/yus.rb +46 -0
- data/test/business/test_company.rb +29 -0
- data/test/business/test_grant_download.rb +29 -0
- data/test/drugs/test_active_agent.rb +53 -0
- data/test/drugs/test_atc.rb +54 -0
- data/test/drugs/test_composition.rb +88 -0
- data/test/drugs/test_ddd.rb +22 -0
- data/test/drugs/test_dose.rb +189 -0
- data/test/drugs/test_galenic_form.rb +41 -0
- data/test/drugs/test_package.rb +172 -0
- data/test/drugs/test_part.rb +32 -0
- data/test/drugs/test_product.rb +31 -0
- data/test/drugs/test_sequence.rb +140 -0
- data/test/drugs/test_substance.rb +51 -0
- data/test/drugs/test_substance_group.rb +27 -0
- data/test/export/test_rss.rb +86 -0
- data/test/export/test_server.rb +163 -0
- data/test/export/test_xls.rb +146 -0
- data/test/export/test_yaml.rb +120 -0
- data/test/import/data/csv/products.csv +11 -0
- data/test/import/data/html/dimdi_index.html +400 -0
- data/test/import/data/html/gkv/Befreiungsliste_Arzneimittel_Versicherte.gkvnet +508 -0
- data/test/import/data/html/pharma24/1337397.html +754 -0
- data/test/import/data/html/pharma24/842756.html +570 -0
- data/test/import/data/html/pharma24/ac-page-10.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-11.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-12.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-13.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-14.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-15.html +3011 -0
- data/test/import/data/html/pharma24/ac-page-16.html +3050 -0
- data/test/import/data/html/pharma24/ac-page-17.html +3285 -0
- data/test/import/data/html/pharma24/ac-page-18.html +3109 -0
- data/test/import/data/html/pharma24/ac-page-19.html +3126 -0
- data/test/import/data/html/pharma24/ac-page-2.html +3005 -0
- data/test/import/data/html/pharma24/ac-page-20.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-21.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-22.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-23.html +3055 -0
- data/test/import/data/html/pharma24/ac-page-24.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-25.html +3004 -0
- data/test/import/data/html/pharma24/ac-page-26.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-27.html +3167 -0
- data/test/import/data/html/pharma24/ac-page-28.html +3236 -0
- data/test/import/data/html/pharma24/ac-page-29.html +3110 -0
- data/test/import/data/html/pharma24/ac-page-3.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-30.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-31.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-32.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-33.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-34.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-35.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-36.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-37.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-38.html +3003 -0
- data/test/import/data/html/pharma24/ac-page-39.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-4.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-40.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-41.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-42.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-43.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-44.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-45.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-46.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-47.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-48.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-49.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-5.html +3168 -0
- data/test/import/data/html/pharma24/ac-page-50.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-51.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-52.html +3003 -0
- data/test/import/data/html/pharma24/ac-page-53.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-54.html +3095 -0
- data/test/import/data/html/pharma24/ac-page-55.html +3041 -0
- data/test/import/data/html/pharma24/ac-page-56.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-57.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-58.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-59.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-6.html +3072 -0
- data/test/import/data/html/pharma24/ac-page-60.html +3001 -0
- data/test/import/data/html/pharma24/ac-page-61.html +3005 -0
- data/test/import/data/html/pharma24/ac-page-62.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-63.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-64.html +3007 -0
- data/test/import/data/html/pharma24/ac-page-65.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-66.html +3011 -0
- data/test/import/data/html/pharma24/ac-page-67.html +3026 -0
- data/test/import/data/html/pharma24/ac-page-68.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-69.html +3010 -0
- data/test/import/data/html/pharma24/ac-page-7.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-70.html +3192 -0
- data/test/import/data/html/pharma24/ac-page-71.html +3133 -0
- data/test/import/data/html/pharma24/ac-page-72.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-73.html +3227 -0
- data/test/import/data/html/pharma24/ac-page-74.html +3241 -0
- data/test/import/data/html/pharma24/ac-page-75.html +3227 -0
- data/test/import/data/html/pharma24/ac-page-76.html +3244 -0
- data/test/import/data/html/pharma24/ac-page-77.html +1164 -0
- data/test/import/data/html/pharma24/ac-page-8.html +2999 -0
- data/test/import/data/html/pharma24/ac-page-9.html +2999 -0
- data/test/import/data/html/pharma24/ac.html +2999 -0
- data/test/import/data/html/pharmnet/display.html +662 -0
- data/test/import/data/html/pharmnet/display1.html +625 -0
- data/test/import/data/html/pharmnet/display2.html +625 -0
- data/test/import/data/html/pharmnet/display3.html +625 -0
- data/test/import/data/html/pharmnet/display_tramal.html +634 -0
- data/test/import/data/html/pharmnet/empty_result.html +395 -0
- data/test/import/data/html/pharmnet/gate.html +246 -0
- data/test/import/data/html/pharmnet/index.html +258 -0
- data/test/import/data/html/pharmnet/paged_result_1.html +401 -0
- data/test/import/data/html/pharmnet/paged_result_2.html +401 -0
- data/test/import/data/html/pharmnet/result.html +401 -0
- data/test/import/data/html/pharmnet/search.html +865 -0
- data/test/import/data/html/pharmnet/search_filtered.html +182 -0
- data/test/import/data/html/whocc/A.html +56 -0
- data/test/import/data/html/whocc/A03.html +48 -0
- data/test/import/data/html/whocc/A03AB.html +48 -0
- data/test/import/data/html/whocc/A06AA.html +47 -0
- data/test/import/data/html/whocc/C03.html +47 -0
- data/test/import/data/html/whocc/login.html +77 -0
- data/test/import/data/mail/csv.mail +81 -0
- data/test/import/data/rtf/pharmnet/aarane.pi.rtf +648 -0
- data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.pi.rtf +324 -0
- data/test/import/data/rtf/pharmnet/ace_hemmer_ratio.rtf +4816 -0
- data/test/import/data/rtf/pharmnet/acemetacin.pi.rtf +388 -0
- data/test/import/data/rtf/pharmnet/acemit.pi.rtf +240 -0
- data/test/import/data/rtf/pharmnet/acerbon.pi.rtf +1257 -0
- data/test/import/data/rtf/pharmnet/acetylcystein.pi.rtf +323 -0
- data/test/import/data/rtf/pharmnet/aciclo.pi.rtf +287 -0
- data/test/import/data/rtf/pharmnet/aciclovir.pi.rtf +236 -0
- data/test/import/data/rtf/pharmnet/actrapid.pi.rtf +322 -0
- data/test/import/data/rtf/pharmnet/amlodipin.pi.rtf +452 -0
- data/test/import/data/rtf/pharmnet/amlodipin.rtf +473 -0
- data/test/import/data/rtf/pharmnet/aspirin.pi.rtf +313 -0
- data/test/import/data/rtf/pharmnet/aspirin.rtf +781 -0
- data/test/import/data/rtf/pharmnet/baymycard.pi.rtf +447 -0
- data/test/import/data/rtf/pharmnet/omeprazol.pi.rtf +510 -0
- data/test/import/data/rtf/pharmnet/omeprazol.rtf +9216 -0
- data/test/import/data/rtf/pharmnet/paroxetin.pi.rtf +678 -0
- data/test/import/data/rtf/pharmnet/selegilin.pi.rtf +312 -0
- data/test/import/data/rtf/pharmnet/selegilin.rtf +683 -0
- data/test/import/data/rtf/pharmnet/valium.pi.rtf +387 -0
- data/test/import/data/txt/gkv/gkv_p1.txt +17 -0
- data/test/import/data/xls/darform_010706.xls +0 -0
- data/test/import/data/xls/fb010706.xls +0 -0
- data/test/import/data/xls/liste_zuzahlungsbefreite_arzneimittel_suchfunktion.xls +0 -0
- data/test/import/data/xls/wirkkurz_010406.xls +0 -0
- data/test/import/data/xml/ATC_2006.xml +47 -0
- data/test/import/data/xml/ATC_2006_ddd.xml +35 -0
- data/test/import/test_dimdi.rb +323 -0
- data/test/import/test_excel.rb +31 -0
- data/test/import/test_gkv.rb +260 -0
- data/test/import/test_pharma24.rb +112 -0
- data/test/import/test_pharmnet.rb +980 -0
- data/test/import/test_rtf.rb +37 -0
- data/test/import/test_whocc.rb +314 -0
- data/test/remote/drugs/test_active_agent.rb +36 -0
- data/test/selenium/selenium-server.jar +0 -0
- data/test/selenium/test_atc_browser.rb +121 -0
- data/test/selenium/test_atc_guidelines.rb +95 -0
- data/test/selenium/test_collect.rb +137 -0
- data/test/selenium/test_compare.rb +294 -0
- data/test/selenium/test_fachinfo.rb +128 -0
- data/test/selenium/test_feedback.rb +192 -0
- data/test/selenium/test_init.rb +64 -0
- data/test/selenium/test_limit.rb +304 -0
- data/test/selenium/test_login.rb +67 -0
- data/test/selenium/test_package.rb +516 -0
- data/test/selenium/test_patinfo.rb +128 -0
- data/test/selenium/test_product.rb +80 -0
- data/test/selenium/test_products.rb +141 -0
- data/test/selenium/test_search.rb +933 -0
- data/test/selenium/test_sequence.rb +513 -0
- data/test/selenium/unit.rb +190 -0
- data/test/stub/http_server.rb +144 -0
- data/test/stub/model.rb +173 -0
- data/test/suite.rb +15 -0
- data/test/test_model.rb +83 -0
- data/test/util/test_code.rb +74 -0
- data/test/util/test_ipn.rb +117 -0
- data/test/util/test_mail.rb +85 -0
- data/test/util/test_multilingual.rb +97 -0
- data/test/util/test_server.rb +94 -0
- data/test/util/test_updater.rb +130 -0
- data/test/util/test_ydim.rb +115 -0
- data/test/util/test_yus.rb +79 -0
- metadata +568 -0
data/Guide.txt
ADDED
data/History.txt
ADDED
data/LICENCE.txt
ADDED
@@ -0,0 +1,339 @@
|
|
1
|
+
GNU GENERAL PUBLIC LICENSE
|
2
|
+
Version 2, June 1991
|
3
|
+
|
4
|
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
5
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6
|
+
Everyone is permitted to copy and distribute verbatim copies
|
7
|
+
of this license document, but changing it is not allowed.
|
8
|
+
|
9
|
+
Preamble
|
10
|
+
|
11
|
+
The licenses for most software are designed to take away your
|
12
|
+
freedom to share and change it. By contrast, the GNU General Public
|
13
|
+
License is intended to guarantee your freedom to share and change free
|
14
|
+
software--to make sure the software is free for all its users. This
|
15
|
+
General Public License applies to most of the Free Software
|
16
|
+
Foundation's software and to any other program whose authors commit to
|
17
|
+
using it. (Some other Free Software Foundation software is covered by
|
18
|
+
the GNU Lesser General Public License instead.) You can apply it to
|
19
|
+
your programs, too.
|
20
|
+
|
21
|
+
When we speak of free software, we are referring to freedom, not
|
22
|
+
price. Our General Public Licenses are designed to make sure that you
|
23
|
+
have the freedom to distribute copies of free software (and charge for
|
24
|
+
this service if you wish), that you receive source code or can get it
|
25
|
+
if you want it, that you can change the software or use pieces of it
|
26
|
+
in new free programs; and that you know you can do these things.
|
27
|
+
|
28
|
+
To protect your rights, we need to make restrictions that forbid
|
29
|
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30
|
+
These restrictions translate to certain responsibilities for you if you
|
31
|
+
distribute copies of the software, or if you modify it.
|
32
|
+
|
33
|
+
For example, if you distribute copies of such a program, whether
|
34
|
+
gratis or for a fee, you must give the recipients all the rights that
|
35
|
+
you have. You must make sure that they, too, receive or can get the
|
36
|
+
source code. And you must show them these terms so they know their
|
37
|
+
rights.
|
38
|
+
|
39
|
+
We protect your rights with two steps: (1) copyright the software, and
|
40
|
+
(2) offer you this license which gives you legal permission to copy,
|
41
|
+
distribute and/or modify the software.
|
42
|
+
|
43
|
+
Also, for each author's protection and ours, we want to make certain
|
44
|
+
that everyone understands that there is no warranty for this free
|
45
|
+
software. If the software is modified by someone else and passed on, we
|
46
|
+
want its recipients to know that what they have is not the original, so
|
47
|
+
that any problems introduced by others will not reflect on the original
|
48
|
+
authors' reputations.
|
49
|
+
|
50
|
+
Finally, any free program is threatened constantly by software
|
51
|
+
patents. We wish to avoid the danger that redistributors of a free
|
52
|
+
program will individually obtain patent licenses, in effect making the
|
53
|
+
program proprietary. To prevent this, we have made it clear that any
|
54
|
+
patent must be licensed for everyone's free use or not licensed at all.
|
55
|
+
|
56
|
+
The precise terms and conditions for copying, distribution and
|
57
|
+
modification follow.
|
58
|
+
|
59
|
+
GNU GENERAL PUBLIC LICENSE
|
60
|
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61
|
+
|
62
|
+
0. This License applies to any program or other work which contains
|
63
|
+
a notice placed by the copyright holder saying it may be distributed
|
64
|
+
under the terms of this General Public License. The "Program", below,
|
65
|
+
refers to any such program or work, and a "work based on the Program"
|
66
|
+
means either the Program or any derivative work under copyright law:
|
67
|
+
that is to say, a work containing the Program or a portion of it,
|
68
|
+
either verbatim or with modifications and/or translated into another
|
69
|
+
language. (Hereinafter, translation is included without limitation in
|
70
|
+
the term "modification".) Each licensee is addressed as "you".
|
71
|
+
|
72
|
+
Activities other than copying, distribution and modification are not
|
73
|
+
covered by this License; they are outside its scope. The act of
|
74
|
+
running the Program is not restricted, and the output from the Program
|
75
|
+
is covered only if its contents constitute a work based on the
|
76
|
+
Program (independent of having been made by running the Program).
|
77
|
+
Whether that is true depends on what the Program does.
|
78
|
+
|
79
|
+
1. You may copy and distribute verbatim copies of the Program's
|
80
|
+
source code as you receive it, in any medium, provided that you
|
81
|
+
conspicuously and appropriately publish on each copy an appropriate
|
82
|
+
copyright notice and disclaimer of warranty; keep intact all the
|
83
|
+
notices that refer to this License and to the absence of any warranty;
|
84
|
+
and give any other recipients of the Program a copy of this License
|
85
|
+
along with the Program.
|
86
|
+
|
87
|
+
You may charge a fee for the physical act of transferring a copy, and
|
88
|
+
you may at your option offer warranty protection in exchange for a fee.
|
89
|
+
|
90
|
+
2. You may modify your copy or copies of the Program or any portion
|
91
|
+
of it, thus forming a work based on the Program, and copy and
|
92
|
+
distribute such modifications or work under the terms of Section 1
|
93
|
+
above, provided that you also meet all of these conditions:
|
94
|
+
|
95
|
+
a) You must cause the modified files to carry prominent notices
|
96
|
+
stating that you changed the files and the date of any change.
|
97
|
+
|
98
|
+
b) You must cause any work that you distribute or publish, that in
|
99
|
+
whole or in part contains or is derived from the Program or any
|
100
|
+
part thereof, to be licensed as a whole at no charge to all third
|
101
|
+
parties under the terms of this License.
|
102
|
+
|
103
|
+
c) If the modified program normally reads commands interactively
|
104
|
+
when run, you must cause it, when started running for such
|
105
|
+
interactive use in the most ordinary way, to print or display an
|
106
|
+
announcement including an appropriate copyright notice and a
|
107
|
+
notice that there is no warranty (or else, saying that you provide
|
108
|
+
a warranty) and that users may redistribute the program under
|
109
|
+
these conditions, and telling the user how to view a copy of this
|
110
|
+
License. (Exception: if the Program itself is interactive but
|
111
|
+
does not normally print such an announcement, your work based on
|
112
|
+
the Program is not required to print an announcement.)
|
113
|
+
|
114
|
+
These requirements apply to the modified work as a whole. If
|
115
|
+
identifiable sections of that work are not derived from the Program,
|
116
|
+
and can be reasonably considered independent and separate works in
|
117
|
+
themselves, then this License, and its terms, do not apply to those
|
118
|
+
sections when you distribute them as separate works. But when you
|
119
|
+
distribute the same sections as part of a whole which is a work based
|
120
|
+
on the Program, the distribution of the whole must be on the terms of
|
121
|
+
this License, whose permissions for other licensees extend to the
|
122
|
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123
|
+
|
124
|
+
Thus, it is not the intent of this section to claim rights or contest
|
125
|
+
your rights to work written entirely by you; rather, the intent is to
|
126
|
+
exercise the right to control the distribution of derivative or
|
127
|
+
collective works based on the Program.
|
128
|
+
|
129
|
+
In addition, mere aggregation of another work not based on the Program
|
130
|
+
with the Program (or with a work based on the Program) on a volume of
|
131
|
+
a storage or distribution medium does not bring the other work under
|
132
|
+
the scope of this License.
|
133
|
+
|
134
|
+
3. You may copy and distribute the Program (or a work based on it,
|
135
|
+
under Section 2) in object code or executable form under the terms of
|
136
|
+
Sections 1 and 2 above provided that you also do one of the following:
|
137
|
+
|
138
|
+
a) Accompany it with the complete corresponding machine-readable
|
139
|
+
source code, which must be distributed under the terms of Sections
|
140
|
+
1 and 2 above on a medium customarily used for software interchange; or,
|
141
|
+
|
142
|
+
b) Accompany it with a written offer, valid for at least three
|
143
|
+
years, to give any third party, for a charge no more than your
|
144
|
+
cost of physically performing source distribution, a complete
|
145
|
+
machine-readable copy of the corresponding source code, to be
|
146
|
+
distributed under the terms of Sections 1 and 2 above on a medium
|
147
|
+
customarily used for software interchange; or,
|
148
|
+
|
149
|
+
c) Accompany it with the information you received as to the offer
|
150
|
+
to distribute corresponding source code. (This alternative is
|
151
|
+
allowed only for noncommercial distribution and only if you
|
152
|
+
received the program in object code or executable form with such
|
153
|
+
an offer, in accord with Subsection b above.)
|
154
|
+
|
155
|
+
The source code for a work means the preferred form of the work for
|
156
|
+
making modifications to it. For an executable work, complete source
|
157
|
+
code means all the source code for all modules it contains, plus any
|
158
|
+
associated interface definition files, plus the scripts used to
|
159
|
+
control compilation and installation of the executable. However, as a
|
160
|
+
special exception, the source code distributed need not include
|
161
|
+
anything that is normally distributed (in either source or binary
|
162
|
+
form) with the major components (compiler, kernel, and so on) of the
|
163
|
+
operating system on which the executable runs, unless that component
|
164
|
+
itself accompanies the executable.
|
165
|
+
|
166
|
+
If distribution of executable or object code is made by offering
|
167
|
+
access to copy from a designated place, then offering equivalent
|
168
|
+
access to copy the source code from the same place counts as
|
169
|
+
distribution of the source code, even though third parties are not
|
170
|
+
compelled to copy the source along with the object code.
|
171
|
+
|
172
|
+
4. You may not copy, modify, sublicense, or distribute the Program
|
173
|
+
except as expressly provided under this License. Any attempt
|
174
|
+
otherwise to copy, modify, sublicense or distribute the Program is
|
175
|
+
void, and will automatically terminate your rights under this License.
|
176
|
+
However, parties who have received copies, or rights, from you under
|
177
|
+
this License will not have their licenses terminated so long as such
|
178
|
+
parties remain in full compliance.
|
179
|
+
|
180
|
+
5. You are not required to accept this License, since you have not
|
181
|
+
signed it. However, nothing else grants you permission to modify or
|
182
|
+
distribute the Program or its derivative works. These actions are
|
183
|
+
prohibited by law if you do not accept this License. Therefore, by
|
184
|
+
modifying or distributing the Program (or any work based on the
|
185
|
+
Program), you indicate your acceptance of this License to do so, and
|
186
|
+
all its terms and conditions for copying, distributing or modifying
|
187
|
+
the Program or works based on it.
|
188
|
+
|
189
|
+
6. Each time you redistribute the Program (or any work based on the
|
190
|
+
Program), the recipient automatically receives a license from the
|
191
|
+
original licensor to copy, distribute or modify the Program subject to
|
192
|
+
these terms and conditions. You may not impose any further
|
193
|
+
restrictions on the recipients' exercise of the rights granted herein.
|
194
|
+
You are not responsible for enforcing compliance by third parties to
|
195
|
+
this License.
|
196
|
+
|
197
|
+
7. If, as a consequence of a court judgment or allegation of patent
|
198
|
+
infringement or for any other reason (not limited to patent issues),
|
199
|
+
conditions are imposed on you (whether by court order, agreement or
|
200
|
+
otherwise) that contradict the conditions of this License, they do not
|
201
|
+
excuse you from the conditions of this License. If you cannot
|
202
|
+
distribute so as to satisfy simultaneously your obligations under this
|
203
|
+
License and any other pertinent obligations, then as a consequence you
|
204
|
+
may not distribute the Program at all. For example, if a patent
|
205
|
+
license would not permit royalty-free redistribution of the Program by
|
206
|
+
all those who receive copies directly or indirectly through you, then
|
207
|
+
the only way you could satisfy both it and this License would be to
|
208
|
+
refrain entirely from distribution of the Program.
|
209
|
+
|
210
|
+
If any portion of this section is held invalid or unenforceable under
|
211
|
+
any particular circumstance, the balance of the section is intended to
|
212
|
+
apply and the section as a whole is intended to apply in other
|
213
|
+
circumstances.
|
214
|
+
|
215
|
+
It is not the purpose of this section to induce you to infringe any
|
216
|
+
patents or other property right claims or to contest validity of any
|
217
|
+
such claims; this section has the sole purpose of protecting the
|
218
|
+
integrity of the free software distribution system, which is
|
219
|
+
implemented by public license practices. Many people have made
|
220
|
+
generous contributions to the wide range of software distributed
|
221
|
+
through that system in reliance on consistent application of that
|
222
|
+
system; it is up to the author/donor to decide if he or she is willing
|
223
|
+
to distribute software through any other system and a licensee cannot
|
224
|
+
impose that choice.
|
225
|
+
|
226
|
+
This section is intended to make thoroughly clear what is believed to
|
227
|
+
be a consequence of the rest of this License.
|
228
|
+
|
229
|
+
8. If the distribution and/or use of the Program is restricted in
|
230
|
+
certain countries either by patents or by copyrighted interfaces, the
|
231
|
+
original copyright holder who places the Program under this License
|
232
|
+
may add an explicit geographical distribution limitation excluding
|
233
|
+
those countries, so that distribution is permitted only in or among
|
234
|
+
countries not thus excluded. In such case, this License incorporates
|
235
|
+
the limitation as if written in the body of this License.
|
236
|
+
|
237
|
+
9. The Free Software Foundation may publish revised and/or new versions
|
238
|
+
of the General Public License from time to time. Such new versions will
|
239
|
+
be similar in spirit to the present version, but may differ in detail to
|
240
|
+
address new problems or concerns.
|
241
|
+
|
242
|
+
Each version is given a distinguishing version number. If the Program
|
243
|
+
specifies a version number of this License which applies to it and "any
|
244
|
+
later version", you have the option of following the terms and conditions
|
245
|
+
either of that version or of any later version published by the Free
|
246
|
+
Software Foundation. If the Program does not specify a version number of
|
247
|
+
this License, you may choose any version ever published by the Free Software
|
248
|
+
Foundation.
|
249
|
+
|
250
|
+
10. If you wish to incorporate parts of the Program into other free
|
251
|
+
programs whose distribution conditions are different, write to the author
|
252
|
+
to ask for permission. For software which is copyrighted by the Free
|
253
|
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
254
|
+
make exceptions for this. Our decision will be guided by the two goals
|
255
|
+
of preserving the free status of all derivatives of our free software and
|
256
|
+
of promoting the sharing and reuse of software generally.
|
257
|
+
|
258
|
+
NO WARRANTY
|
259
|
+
|
260
|
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261
|
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
262
|
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
263
|
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
264
|
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
265
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
266
|
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
267
|
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
268
|
+
REPAIR OR CORRECTION.
|
269
|
+
|
270
|
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
271
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
272
|
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
273
|
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
274
|
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
275
|
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
276
|
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
277
|
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278
|
+
POSSIBILITY OF SUCH DAMAGES.
|
279
|
+
|
280
|
+
END OF TERMS AND CONDITIONS
|
281
|
+
|
282
|
+
How to Apply These Terms to Your New Programs
|
283
|
+
|
284
|
+
If you develop a new program, and you want it to be of the greatest
|
285
|
+
possible use to the public, the best way to achieve this is to make it
|
286
|
+
free software which everyone can redistribute and change under these terms.
|
287
|
+
|
288
|
+
To do so, attach the following notices to the program. It is safest
|
289
|
+
to attach them to the start of each source file to most effectively
|
290
|
+
convey the exclusion of warranty; and each file should have at least
|
291
|
+
the "copyright" line and a pointer to where the full notice is found.
|
292
|
+
|
293
|
+
<one line to give the program's name and a brief idea of what it does.>
|
294
|
+
Copyright (C) <year> <name of author>
|
295
|
+
|
296
|
+
This program is free software; you can redistribute it and/or modify
|
297
|
+
it under the terms of the GNU General Public License as published by
|
298
|
+
the Free Software Foundation; either version 2 of the License, or
|
299
|
+
(at your option) any later version.
|
300
|
+
|
301
|
+
This program is distributed in the hope that it will be useful,
|
302
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
303
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
304
|
+
GNU General Public License for more details.
|
305
|
+
|
306
|
+
You should have received a copy of the GNU General Public License along
|
307
|
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
308
|
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
309
|
+
|
310
|
+
Also add information on how to contact you by electronic and paper mail.
|
311
|
+
|
312
|
+
If the program is interactive, make it output a short notice like this
|
313
|
+
when it starts in an interactive mode:
|
314
|
+
|
315
|
+
Gnomovision version 69, Copyright (C) year name of author
|
316
|
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
317
|
+
This is free software, and you are welcome to redistribute it
|
318
|
+
under certain conditions; type `show c' for details.
|
319
|
+
|
320
|
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
321
|
+
parts of the General Public License. Of course, the commands you use may
|
322
|
+
be called something other than `show w' and `show c'; they could even be
|
323
|
+
mouse-clicks or menu items--whatever suits your program.
|
324
|
+
|
325
|
+
You should also get your employer (if you work as a programmer) or your
|
326
|
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
327
|
+
necessary. Here is a sample; alter the names:
|
328
|
+
|
329
|
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
330
|
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
331
|
+
|
332
|
+
<signature of Ty Coon>, 1 April 1989
|
333
|
+
Ty Coon, President of Vice
|
334
|
+
|
335
|
+
This General Public License does not permit incorporating your program into
|
336
|
+
proprietary programs. If your program is a subroutine library, you may
|
337
|
+
consider it more useful to permit linking proprietary applications with the
|
338
|
+
library. If this is what you want to do, use the GNU Lesser General
|
339
|
+
Public License instead of this License.
|
data/Manifest.txt
ADDED
@@ -0,0 +1,430 @@
|
|
1
|
+
Guide.txt
|
2
|
+
History.txt
|
3
|
+
LICENCE.txt
|
4
|
+
Manifest.txt
|
5
|
+
README
|
6
|
+
README.txt
|
7
|
+
Rakefile
|
8
|
+
bin/admin
|
9
|
+
bin/exportd
|
10
|
+
bin/oddbd
|
11
|
+
data/fulltext/data/dicts/french/fulltext.aff
|
12
|
+
data/fulltext/data/dicts/french/fulltext.dict
|
13
|
+
data/fulltext/data/dicts/french/fulltext.stop
|
14
|
+
data/fulltext/data/dicts/german/fulltext.aff
|
15
|
+
data/fulltext/data/dicts/german/fulltext.dict
|
16
|
+
data/fulltext/data/dicts/german/fulltext.stop
|
17
|
+
data/fulltext/data/german_compound/README
|
18
|
+
data/fulltext/data/german_compound/compound.pl
|
19
|
+
data/fulltext/data/german_compound/german.stop
|
20
|
+
data/fulltext/data/ispell-german-compound.tar.gz
|
21
|
+
data/fulltext/redist/dict_french/Makefile
|
22
|
+
data/fulltext/redist/dict_french/README.french
|
23
|
+
data/fulltext/redist/dict_french/dict_french.sql.in
|
24
|
+
data/fulltext/redist/dict_french/dict_snowball.c
|
25
|
+
data/fulltext/redist/dict_french/french_stem.c
|
26
|
+
data/fulltext/redist/dict_french/french_stem.h
|
27
|
+
data/fulltext/redist/dict_french/subinclude.h
|
28
|
+
data/fulltext/redist/dict_german/Makefile
|
29
|
+
data/fulltext/redist/dict_german/README.german
|
30
|
+
data/fulltext/redist/dict_german/dict_german.sql.in
|
31
|
+
data/fulltext/redist/dict_german/dict_snowball.c
|
32
|
+
data/fulltext/redist/dict_german/german_stem.c
|
33
|
+
data/fulltext/redist/dict_german/german_stem.h
|
34
|
+
data/fulltext/redist/dict_german/subinclude.h
|
35
|
+
data/fulltext/redist/french_stem.c
|
36
|
+
data/fulltext/redist/french_stem.h
|
37
|
+
data/fulltext/redist/german_stem.c
|
38
|
+
data/fulltext/redist/german_stem.h
|
39
|
+
jobs/export_chde_xls
|
40
|
+
jobs/export_csv
|
41
|
+
jobs/export_fachinfo_yaml
|
42
|
+
jobs/export_patinfo_yaml
|
43
|
+
jobs/export_yaml
|
44
|
+
jobs/import_dimdi
|
45
|
+
jobs/import_gkv
|
46
|
+
jobs/import_pharma24
|
47
|
+
jobs/import_pharmnet
|
48
|
+
jobs/import_whocc
|
49
|
+
lib/fixes/singular.rb
|
50
|
+
lib/fixes/yaml.rb
|
51
|
+
lib/oddb.rb
|
52
|
+
lib/oddb/business/company.rb
|
53
|
+
lib/oddb/business/grant_download.rb
|
54
|
+
lib/oddb/business/invoice.rb
|
55
|
+
lib/oddb/config.rb
|
56
|
+
lib/oddb/currency.rb
|
57
|
+
lib/oddb/drugs.rb
|
58
|
+
lib/oddb/drugs/active_agent.rb
|
59
|
+
lib/oddb/drugs/atc.rb
|
60
|
+
lib/oddb/drugs/composition.rb
|
61
|
+
lib/oddb/drugs/ddd.rb
|
62
|
+
lib/oddb/drugs/dose.rb
|
63
|
+
lib/oddb/drugs/galenic_form.rb
|
64
|
+
lib/oddb/drugs/galenic_group.rb
|
65
|
+
lib/oddb/drugs/package.rb
|
66
|
+
lib/oddb/drugs/part.rb
|
67
|
+
lib/oddb/drugs/product.rb
|
68
|
+
lib/oddb/drugs/sequence.rb
|
69
|
+
lib/oddb/drugs/substance.rb
|
70
|
+
lib/oddb/drugs/substance_group.rb
|
71
|
+
lib/oddb/drugs/unit.rb
|
72
|
+
lib/oddb/export.rb
|
73
|
+
lib/oddb/export/csv.rb
|
74
|
+
lib/oddb/export/l10n_sessions.rb
|
75
|
+
lib/oddb/export/rss.rb
|
76
|
+
lib/oddb/export/server.rb
|
77
|
+
lib/oddb/export/xls.rb
|
78
|
+
lib/oddb/export/yaml.rb
|
79
|
+
lib/oddb/html/state/download.rb
|
80
|
+
lib/oddb/html/state/drugs/admin/package.rb
|
81
|
+
lib/oddb/html/state/drugs/admin/product.rb
|
82
|
+
lib/oddb/html/state/drugs/admin/sequence.rb
|
83
|
+
lib/oddb/html/state/drugs/ajax/explain_ddd_price.rb
|
84
|
+
lib/oddb/html/state/drugs/ajax/explain_price.rb
|
85
|
+
lib/oddb/html/state/drugs/ajax/global.rb
|
86
|
+
lib/oddb/html/state/drugs/ajax/package_infos.rb
|
87
|
+
lib/oddb/html/state/drugs/ajax/remote_infos.rb
|
88
|
+
lib/oddb/html/state/drugs/atc_browser.rb
|
89
|
+
lib/oddb/html/state/drugs/atc_guidelines.rb
|
90
|
+
lib/oddb/html/state/drugs/compare.rb
|
91
|
+
lib/oddb/html/state/drugs/download_export.rb
|
92
|
+
lib/oddb/html/state/drugs/downloads.rb
|
93
|
+
lib/oddb/html/state/drugs/fachinfo.rb
|
94
|
+
lib/oddb/html/state/drugs/feedback.rb
|
95
|
+
lib/oddb/html/state/drugs/global.rb
|
96
|
+
lib/oddb/html/state/drugs/init.rb
|
97
|
+
lib/oddb/html/state/drugs/login.rb
|
98
|
+
lib/oddb/html/state/drugs/package.rb
|
99
|
+
lib/oddb/html/state/drugs/patinfo.rb
|
100
|
+
lib/oddb/html/state/drugs/products.rb
|
101
|
+
lib/oddb/html/state/drugs/result.rb
|
102
|
+
lib/oddb/html/state/global.rb
|
103
|
+
lib/oddb/html/state/global_predefine.rb
|
104
|
+
lib/oddb/html/state/limit.rb
|
105
|
+
lib/oddb/html/state/login.rb
|
106
|
+
lib/oddb/html/state/paypal/checkout.rb
|
107
|
+
lib/oddb/html/state/paypal/collect.rb
|
108
|
+
lib/oddb/html/state/paypal/download.rb
|
109
|
+
lib/oddb/html/state/paypal/redirect.rb
|
110
|
+
lib/oddb/html/state/register_download.rb
|
111
|
+
lib/oddb/html/state/register_export.rb
|
112
|
+
lib/oddb/html/state/register_poweruser.rb
|
113
|
+
lib/oddb/html/state/viral/admin.rb
|
114
|
+
lib/oddb/html/state/viral/poweruser.rb
|
115
|
+
lib/oddb/html/util/annotated_list.rb
|
116
|
+
lib/oddb/html/util/know_it_all.rb
|
117
|
+
lib/oddb/html/util/known_user.rb
|
118
|
+
lib/oddb/html/util/lookandfeel.rb
|
119
|
+
lib/oddb/html/util/need_all_input.rb
|
120
|
+
lib/oddb/html/util/session.rb
|
121
|
+
lib/oddb/html/util/sort.rb
|
122
|
+
lib/oddb/html/util/unsaved_helper.rb
|
123
|
+
lib/oddb/html/util/validator.rb
|
124
|
+
lib/oddb/html/view/ajax/json.rb
|
125
|
+
lib/oddb/html/view/alpha_header.rb
|
126
|
+
lib/oddb/html/view/document.rb
|
127
|
+
lib/oddb/html/view/download.rb
|
128
|
+
lib/oddb/html/view/drugs/admin/package.rb
|
129
|
+
lib/oddb/html/view/drugs/admin/product.rb
|
130
|
+
lib/oddb/html/view/drugs/admin/sequence.rb
|
131
|
+
lib/oddb/html/view/drugs/ajax/explain_ddd_price.rb
|
132
|
+
lib/oddb/html/view/drugs/ajax/explain_price.rb
|
133
|
+
lib/oddb/html/view/drugs/ajax/package_infos.rb
|
134
|
+
lib/oddb/html/view/drugs/ajax/remote_infos.rb
|
135
|
+
lib/oddb/html/view/drugs/atc_browser.rb
|
136
|
+
lib/oddb/html/view/drugs/atc_guidelines.rb
|
137
|
+
lib/oddb/html/view/drugs/compare.rb
|
138
|
+
lib/oddb/html/view/drugs/download_export.rb
|
139
|
+
lib/oddb/html/view/drugs/downloads.rb
|
140
|
+
lib/oddb/html/view/drugs/fachinfo.rb
|
141
|
+
lib/oddb/html/view/drugs/feedback.rb
|
142
|
+
lib/oddb/html/view/drugs/init.rb
|
143
|
+
lib/oddb/html/view/drugs/legend.rb
|
144
|
+
lib/oddb/html/view/drugs/package.rb
|
145
|
+
lib/oddb/html/view/drugs/patinfo.rb
|
146
|
+
lib/oddb/html/view/drugs/products.rb
|
147
|
+
lib/oddb/html/view/drugs/result.rb
|
148
|
+
lib/oddb/html/view/drugs/search.rb
|
149
|
+
lib/oddb/html/view/drugs/template.rb
|
150
|
+
lib/oddb/html/view/foot.rb
|
151
|
+
lib/oddb/html/view/google.rb
|
152
|
+
lib/oddb/html/view/google_ads.rb
|
153
|
+
lib/oddb/html/view/head.rb
|
154
|
+
lib/oddb/html/view/limit.rb
|
155
|
+
lib/oddb/html/view/list.rb
|
156
|
+
lib/oddb/html/view/login.rb
|
157
|
+
lib/oddb/html/view/navigation.rb
|
158
|
+
lib/oddb/html/view/offset_header.rb
|
159
|
+
lib/oddb/html/view/paypal/collect.rb
|
160
|
+
lib/oddb/html/view/paypal/redirect.rb
|
161
|
+
lib/oddb/html/view/paypal/register_form.rb
|
162
|
+
lib/oddb/html/view/register_download.rb
|
163
|
+
lib/oddb/html/view/register_export.rb
|
164
|
+
lib/oddb/html/view/register_poweruser.rb
|
165
|
+
lib/oddb/html/view/rss/feedback.rb
|
166
|
+
lib/oddb/html/view/rss_preview.rb
|
167
|
+
lib/oddb/html/view/search.rb
|
168
|
+
lib/oddb/html/view/snapback.rb
|
169
|
+
lib/oddb/html/view/template.rb
|
170
|
+
lib/oddb/import/dimdi.rb
|
171
|
+
lib/oddb/import/excel.rb
|
172
|
+
lib/oddb/import/gkv.rb
|
173
|
+
lib/oddb/import/importer.rb
|
174
|
+
lib/oddb/import/pharma24.rb
|
175
|
+
lib/oddb/import/pharmnet.rb
|
176
|
+
lib/oddb/import/rtf.rb
|
177
|
+
lib/oddb/import/whocc.rb
|
178
|
+
lib/oddb/import/xml.rb
|
179
|
+
lib/oddb/model.rb
|
180
|
+
lib/oddb/persistence.rb
|
181
|
+
lib/oddb/persistence/odba.rb
|
182
|
+
lib/oddb/persistence/odba/business/company.rb
|
183
|
+
lib/oddb/persistence/odba/business/grant_download.rb
|
184
|
+
lib/oddb/persistence/odba/business/invoice.rb
|
185
|
+
lib/oddb/persistence/odba/drugs/atc.rb
|
186
|
+
lib/oddb/persistence/odba/drugs/galenic_form.rb
|
187
|
+
lib/oddb/persistence/odba/drugs/galenic_group.rb
|
188
|
+
lib/oddb/persistence/odba/drugs/package.rb
|
189
|
+
lib/oddb/persistence/odba/drugs/product.rb
|
190
|
+
lib/oddb/persistence/odba/drugs/sequence.rb
|
191
|
+
lib/oddb/persistence/odba/drugs/substance.rb
|
192
|
+
lib/oddb/persistence/odba/drugs/substance_group.rb
|
193
|
+
lib/oddb/persistence/odba/drugs/unit.rb
|
194
|
+
lib/oddb/persistence/odba/export.rb
|
195
|
+
lib/oddb/persistence/odba/model.rb
|
196
|
+
lib/oddb/persistence/odba/text/document.rb
|
197
|
+
lib/oddb/persistence/odba/util/code.rb
|
198
|
+
lib/oddb/persistence/odba/util/m10l_document.rb
|
199
|
+
lib/oddb/persistence/og.rb
|
200
|
+
lib/oddb/persistence/og/drugs/composition.rb
|
201
|
+
lib/oddb/persistence/og/drugs/product.rb
|
202
|
+
lib/oddb/persistence/og/drugs/sequence.rb
|
203
|
+
lib/oddb/persistence/og/model.rb
|
204
|
+
lib/oddb/persistence/og/util/multilingual.rb
|
205
|
+
lib/oddb/redist/rtf_tools/reader.rb
|
206
|
+
lib/oddb/remote/business/company.rb
|
207
|
+
lib/oddb/remote/drugs/active_agent.rb
|
208
|
+
lib/oddb/remote/drugs/atc.rb
|
209
|
+
lib/oddb/remote/drugs/dose.rb
|
210
|
+
lib/oddb/remote/drugs/galenic_form.rb
|
211
|
+
lib/oddb/remote/drugs/package.rb
|
212
|
+
lib/oddb/remote/drugs/part.rb
|
213
|
+
lib/oddb/remote/drugs/substance.rb
|
214
|
+
lib/oddb/remote/drugs/unit.rb
|
215
|
+
lib/oddb/remote/object.rb
|
216
|
+
lib/oddb/text/chapter.rb
|
217
|
+
lib/oddb/text/document.rb
|
218
|
+
lib/oddb/text/format.rb
|
219
|
+
lib/oddb/text/paragraph.rb
|
220
|
+
lib/oddb/text/picture.rb
|
221
|
+
lib/oddb/text/table.rb
|
222
|
+
lib/oddb/util.rb
|
223
|
+
lib/oddb/util/annotated_list.rb
|
224
|
+
lib/oddb/util/code.rb
|
225
|
+
lib/oddb/util/comparison.rb
|
226
|
+
lib/oddb/util/download.rb
|
227
|
+
lib/oddb/util/exporter.rb
|
228
|
+
lib/oddb/util/feedback.rb
|
229
|
+
lib/oddb/util/ipn.rb
|
230
|
+
lib/oddb/util/job.rb
|
231
|
+
lib/oddb/util/logger.rb
|
232
|
+
lib/oddb/util/m10l_document.rb
|
233
|
+
lib/oddb/util/mail.rb
|
234
|
+
lib/oddb/util/money.rb
|
235
|
+
lib/oddb/util/multilingual.rb
|
236
|
+
lib/oddb/util/quanty.rb
|
237
|
+
lib/oddb/util/quanty/fact.rb
|
238
|
+
lib/oddb/util/quanty/main.rb
|
239
|
+
lib/oddb/util/quanty/parse.rb
|
240
|
+
lib/oddb/util/quanty/units.dump
|
241
|
+
lib/oddb/util/server.rb
|
242
|
+
lib/oddb/util/smtp_tls.rb
|
243
|
+
lib/oddb/util/updater.rb
|
244
|
+
lib/oddb/util/ydim.rb
|
245
|
+
lib/oddb/util/yus.rb
|
246
|
+
test/business/test_company.rb
|
247
|
+
test/business/test_grant_download.rb
|
248
|
+
test/drugs/test_active_agent.rb
|
249
|
+
test/drugs/test_atc.rb
|
250
|
+
test/drugs/test_composition.rb
|
251
|
+
test/drugs/test_ddd.rb
|
252
|
+
test/drugs/test_dose.rb
|
253
|
+
test/drugs/test_galenic_form.rb
|
254
|
+
test/drugs/test_package.rb
|
255
|
+
test/drugs/test_part.rb
|
256
|
+
test/drugs/test_product.rb
|
257
|
+
test/drugs/test_sequence.rb
|
258
|
+
test/drugs/test_substance.rb
|
259
|
+
test/drugs/test_substance_group.rb
|
260
|
+
test/export/test_rss.rb
|
261
|
+
test/export/test_server.rb
|
262
|
+
test/export/test_xls.rb
|
263
|
+
test/export/test_yaml.rb
|
264
|
+
test/import/data/csv/products.csv
|
265
|
+
test/import/data/html/dimdi_index.html
|
266
|
+
test/import/data/html/gkv/Befreiungsliste_Arzneimittel_Versicherte.gkvnet
|
267
|
+
test/import/data/html/pharma24/1337397.html
|
268
|
+
test/import/data/html/pharma24/842756.html
|
269
|
+
test/import/data/html/pharma24/ac-page-10.html
|
270
|
+
test/import/data/html/pharma24/ac-page-11.html
|
271
|
+
test/import/data/html/pharma24/ac-page-12.html
|
272
|
+
test/import/data/html/pharma24/ac-page-13.html
|
273
|
+
test/import/data/html/pharma24/ac-page-14.html
|
274
|
+
test/import/data/html/pharma24/ac-page-15.html
|
275
|
+
test/import/data/html/pharma24/ac-page-16.html
|
276
|
+
test/import/data/html/pharma24/ac-page-17.html
|
277
|
+
test/import/data/html/pharma24/ac-page-18.html
|
278
|
+
test/import/data/html/pharma24/ac-page-19.html
|
279
|
+
test/import/data/html/pharma24/ac-page-2.html
|
280
|
+
test/import/data/html/pharma24/ac-page-20.html
|
281
|
+
test/import/data/html/pharma24/ac-page-21.html
|
282
|
+
test/import/data/html/pharma24/ac-page-22.html
|
283
|
+
test/import/data/html/pharma24/ac-page-23.html
|
284
|
+
test/import/data/html/pharma24/ac-page-24.html
|
285
|
+
test/import/data/html/pharma24/ac-page-25.html
|
286
|
+
test/import/data/html/pharma24/ac-page-26.html
|
287
|
+
test/import/data/html/pharma24/ac-page-27.html
|
288
|
+
test/import/data/html/pharma24/ac-page-28.html
|
289
|
+
test/import/data/html/pharma24/ac-page-29.html
|
290
|
+
test/import/data/html/pharma24/ac-page-3.html
|
291
|
+
test/import/data/html/pharma24/ac-page-30.html
|
292
|
+
test/import/data/html/pharma24/ac-page-31.html
|
293
|
+
test/import/data/html/pharma24/ac-page-32.html
|
294
|
+
test/import/data/html/pharma24/ac-page-33.html
|
295
|
+
test/import/data/html/pharma24/ac-page-34.html
|
296
|
+
test/import/data/html/pharma24/ac-page-35.html
|
297
|
+
test/import/data/html/pharma24/ac-page-36.html
|
298
|
+
test/import/data/html/pharma24/ac-page-37.html
|
299
|
+
test/import/data/html/pharma24/ac-page-38.html
|
300
|
+
test/import/data/html/pharma24/ac-page-39.html
|
301
|
+
test/import/data/html/pharma24/ac-page-4.html
|
302
|
+
test/import/data/html/pharma24/ac-page-40.html
|
303
|
+
test/import/data/html/pharma24/ac-page-41.html
|
304
|
+
test/import/data/html/pharma24/ac-page-42.html
|
305
|
+
test/import/data/html/pharma24/ac-page-43.html
|
306
|
+
test/import/data/html/pharma24/ac-page-44.html
|
307
|
+
test/import/data/html/pharma24/ac-page-45.html
|
308
|
+
test/import/data/html/pharma24/ac-page-46.html
|
309
|
+
test/import/data/html/pharma24/ac-page-47.html
|
310
|
+
test/import/data/html/pharma24/ac-page-48.html
|
311
|
+
test/import/data/html/pharma24/ac-page-49.html
|
312
|
+
test/import/data/html/pharma24/ac-page-5.html
|
313
|
+
test/import/data/html/pharma24/ac-page-50.html
|
314
|
+
test/import/data/html/pharma24/ac-page-51.html
|
315
|
+
test/import/data/html/pharma24/ac-page-52.html
|
316
|
+
test/import/data/html/pharma24/ac-page-53.html
|
317
|
+
test/import/data/html/pharma24/ac-page-54.html
|
318
|
+
test/import/data/html/pharma24/ac-page-55.html
|
319
|
+
test/import/data/html/pharma24/ac-page-56.html
|
320
|
+
test/import/data/html/pharma24/ac-page-57.html
|
321
|
+
test/import/data/html/pharma24/ac-page-58.html
|
322
|
+
test/import/data/html/pharma24/ac-page-59.html
|
323
|
+
test/import/data/html/pharma24/ac-page-6.html
|
324
|
+
test/import/data/html/pharma24/ac-page-60.html
|
325
|
+
test/import/data/html/pharma24/ac-page-61.html
|
326
|
+
test/import/data/html/pharma24/ac-page-62.html
|
327
|
+
test/import/data/html/pharma24/ac-page-63.html
|
328
|
+
test/import/data/html/pharma24/ac-page-64.html
|
329
|
+
test/import/data/html/pharma24/ac-page-65.html
|
330
|
+
test/import/data/html/pharma24/ac-page-66.html
|
331
|
+
test/import/data/html/pharma24/ac-page-67.html
|
332
|
+
test/import/data/html/pharma24/ac-page-68.html
|
333
|
+
test/import/data/html/pharma24/ac-page-69.html
|
334
|
+
test/import/data/html/pharma24/ac-page-7.html
|
335
|
+
test/import/data/html/pharma24/ac-page-70.html
|
336
|
+
test/import/data/html/pharma24/ac-page-71.html
|
337
|
+
test/import/data/html/pharma24/ac-page-72.html
|
338
|
+
test/import/data/html/pharma24/ac-page-73.html
|
339
|
+
test/import/data/html/pharma24/ac-page-74.html
|
340
|
+
test/import/data/html/pharma24/ac-page-75.html
|
341
|
+
test/import/data/html/pharma24/ac-page-76.html
|
342
|
+
test/import/data/html/pharma24/ac-page-77.html
|
343
|
+
test/import/data/html/pharma24/ac-page-8.html
|
344
|
+
test/import/data/html/pharma24/ac-page-9.html
|
345
|
+
test/import/data/html/pharma24/ac.html
|
346
|
+
test/import/data/html/pharmnet/display.html
|
347
|
+
test/import/data/html/pharmnet/display1.html
|
348
|
+
test/import/data/html/pharmnet/display2.html
|
349
|
+
test/import/data/html/pharmnet/display3.html
|
350
|
+
test/import/data/html/pharmnet/display_tramal.html
|
351
|
+
test/import/data/html/pharmnet/empty_result.html
|
352
|
+
test/import/data/html/pharmnet/gate.html
|
353
|
+
test/import/data/html/pharmnet/index.html
|
354
|
+
test/import/data/html/pharmnet/paged_result_1.html
|
355
|
+
test/import/data/html/pharmnet/paged_result_2.html
|
356
|
+
test/import/data/html/pharmnet/result.html
|
357
|
+
test/import/data/html/pharmnet/search.html
|
358
|
+
test/import/data/html/pharmnet/search_filtered.html
|
359
|
+
test/import/data/html/whocc/A.html
|
360
|
+
test/import/data/html/whocc/A03.html
|
361
|
+
test/import/data/html/whocc/A03AB.html
|
362
|
+
test/import/data/html/whocc/A06AA.html
|
363
|
+
test/import/data/html/whocc/C03.html
|
364
|
+
test/import/data/html/whocc/login.html
|
365
|
+
test/import/data/mail/csv.mail
|
366
|
+
test/import/data/rtf/pharmnet/aarane.pi.rtf
|
367
|
+
test/import/data/rtf/pharmnet/ace_hemmer_ratio.pi.rtf
|
368
|
+
test/import/data/rtf/pharmnet/ace_hemmer_ratio.rtf
|
369
|
+
test/import/data/rtf/pharmnet/acemetacin.pi.rtf
|
370
|
+
test/import/data/rtf/pharmnet/acemit.pi.rtf
|
371
|
+
test/import/data/rtf/pharmnet/acerbon.pi.rtf
|
372
|
+
test/import/data/rtf/pharmnet/acetylcystein.pi.rtf
|
373
|
+
test/import/data/rtf/pharmnet/aciclo.pi.rtf
|
374
|
+
test/import/data/rtf/pharmnet/aciclovir.pi.rtf
|
375
|
+
test/import/data/rtf/pharmnet/actrapid.pi.rtf
|
376
|
+
test/import/data/rtf/pharmnet/amlodipin.pi.rtf
|
377
|
+
test/import/data/rtf/pharmnet/amlodipin.rtf
|
378
|
+
test/import/data/rtf/pharmnet/aspirin.pi.rtf
|
379
|
+
test/import/data/rtf/pharmnet/aspirin.rtf
|
380
|
+
test/import/data/rtf/pharmnet/baymycard.pi.rtf
|
381
|
+
test/import/data/rtf/pharmnet/omeprazol.pi.rtf
|
382
|
+
test/import/data/rtf/pharmnet/omeprazol.rtf
|
383
|
+
test/import/data/rtf/pharmnet/paroxetin.pi.rtf
|
384
|
+
test/import/data/rtf/pharmnet/selegilin.pi.rtf
|
385
|
+
test/import/data/rtf/pharmnet/selegilin.rtf
|
386
|
+
test/import/data/rtf/pharmnet/valium.pi.rtf
|
387
|
+
test/import/data/txt/gkv/gkv_p1.txt
|
388
|
+
test/import/data/xls/darform_010706.xls
|
389
|
+
test/import/data/xls/fb010706.xls
|
390
|
+
test/import/data/xls/liste_zuzahlungsbefreite_arzneimittel_suchfunktion.xls
|
391
|
+
test/import/data/xls/wirkkurz_010406.xls
|
392
|
+
test/import/data/xml/ATC_2006.xml
|
393
|
+
test/import/data/xml/ATC_2006_ddd.xml
|
394
|
+
test/import/test_dimdi.rb
|
395
|
+
test/import/test_excel.rb
|
396
|
+
test/import/test_gkv.rb
|
397
|
+
test/import/test_pharma24.rb
|
398
|
+
test/import/test_pharmnet.rb
|
399
|
+
test/import/test_rtf.rb
|
400
|
+
test/import/test_whocc.rb
|
401
|
+
test/remote/drugs/test_active_agent.rb
|
402
|
+
test/selenium/selenium-server.jar
|
403
|
+
test/selenium/test_atc_browser.rb
|
404
|
+
test/selenium/test_atc_guidelines.rb
|
405
|
+
test/selenium/test_collect.rb
|
406
|
+
test/selenium/test_compare.rb
|
407
|
+
test/selenium/test_fachinfo.rb
|
408
|
+
test/selenium/test_feedback.rb
|
409
|
+
test/selenium/test_init.rb
|
410
|
+
test/selenium/test_limit.rb
|
411
|
+
test/selenium/test_login.rb
|
412
|
+
test/selenium/test_package.rb
|
413
|
+
test/selenium/test_patinfo.rb
|
414
|
+
test/selenium/test_product.rb
|
415
|
+
test/selenium/test_products.rb
|
416
|
+
test/selenium/test_search.rb
|
417
|
+
test/selenium/test_sequence.rb
|
418
|
+
test/selenium/unit.rb
|
419
|
+
test/stub/http_server.rb
|
420
|
+
test/stub/model.rb
|
421
|
+
test/suite.rb
|
422
|
+
test/test_model.rb
|
423
|
+
test/util/test_code.rb
|
424
|
+
test/util/test_ipn.rb
|
425
|
+
test/util/test_mail.rb
|
426
|
+
test/util/test_multilingual.rb
|
427
|
+
test/util/test_server.rb
|
428
|
+
test/util/test_updater.rb
|
429
|
+
test/util/test_ydim.rb
|
430
|
+
test/util/test_yus.rb
|