de.oddb 2.0.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/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
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
<HTML dir="ltr" lang="de" xmlns="http://www.w3.org/1999/xhtml"><HEAD><META content="de" http-equiv="content-language"><META content="text/html; charset=ISO-8859-1" http-equiv="Content-Type"><TITLE>DIMDI SmartSearch</TITLE><META content="..." name="description"><META content="..." name="keywords"><META content="no-cache" http-equiv="Pragma"><META content="1" http-equiv="expires"><META content="no-cache, must-revalidate" http-equiv="cache-control"><LINK href="/websearch/websearch.css" media="screen, projection" rel="stylesheet" type="text/css"><LINK href="/websearch/pharmnet_smartsearch.css" media="screen, projection" rel="stylesheet" type="text/css"><SCRIPT class="dom_relocation" language="javascript" src="/websearch/lib/globals.js" type="text/javascript"></SCRIPT><SCRIPT class="dom_relocation" language="javascript" src="/websearch/lib/senddata.js" type="text/javascript"></SCRIPT><SCRIPT class="dom_relocation" language="javascript" src="/websearch/lib/subnav.js" type="text/javascript"></SCRIPT><SCRIPT class="dom_relocation" language="javascript" src="/websearch/lib/utilities.js" type="text/javascript"></SCRIPT><LINK class="dom_value::getDesignData().getStyleSheet()::href" href="http://gripsdb.dimdi.de:80/websearch/pharmnet_smartsearch.css" rel="stylesheet" type="text/css"><SCRIPT lang="JavaScript" type="text/javaScript">
|
|
2
|
+
function startTimeout() {
|
|
3
|
+
try {
|
|
4
|
+
window.clearTimeout(t1);
|
|
5
|
+
window.clearTimeout(t2);
|
|
6
|
+
} catch(e) {;}
|
|
7
|
+
t1 = window.setTimeout("alert('In 1 Minute wird die Sitzung wegen Inaktivit�t beendet!\\n\\nBitte f�hren Sie eine Suche oder eine Dokumentausgabe durch,\\n\\num die Sitzung fortzusetzen.')", 540000);
|
|
8
|
+
t2 = window.setTimeout("window.location.href='http://www.pharmnet.bund.de'", 600000);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
startTimeout();
|
|
12
|
+
|
|
13
|
+
</SCRIPT></HEAD><BODY onbeforeunload="" onload="initImgSrc();EnlistSubNavMover();; setTimeout('document.forms[4].elements[11].select()', 100);"><DIV><A href="http://www.pharmnet.bund.de//" target="_blank"><IMG alt="PharmNet HeaderLogo" src="/websearch/img/PharmNetHead_de.gif" style="border:none"></A></DIV><DIV id="ngg"><SCRIPT language="JavaScript" type="text/javascript"> var docWin;
|
|
14
|
+
</SCRIPT><FORM method="POST" name="globalForm" style="margin:0em"><INPUT name="_changebranch" type="hidden" value="false"> <INPUT name="uid" type="hidden" value=""> <INPUT class="dom_value::getApplicationInfo().getContactEmailAddress()" name="applicationInfo_contactEmailAddress" type="hidden" value="pharma@dimdi.de"> <INPUT class="dom_value::getDesignData().getWaitPicURL()" name="designData_waitPicURL" type="hidden" value="http://gripsdb.dimdi.de:80/websearch/img/animbar_blue_green.gif"> <INPUT class="dom_value::getSearchResults().getWaitText()" name="searchResults_waitText" type="hidden" value="Wir suchen für Sie in 1 Datenbank(en) und 117843 Dokumenten"><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM><A name="top"></A> <TABLE border="0" cellpadding="0" cellspacing="0" summary="" width="817"><TR class="wbnavbackground" id="rolsubnor"><TD align="left" class="wbnavbackground dom_position" id="sub_nav" style="padding-bottom:10em; overflow: hidden" valign="top" width="217"><DIV id="movingSubNav"><FORM method="POST" name="dummyForm"><INPUT name="_changebranch" type="hidden" value="false"> <INPUT name="uid" type="hidden" value=""> <INPUT name="mode" type="hidden" value=""><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM><FORM method="POST" name="serverDataForm"><INPUT name="_changebranch" type="hidden" value="false"> <INPUT id="uid" name="uid" type="hidden" value=""> <INPUT class="dom_value::getBridge().getSession().getId()" name="bridge_session_id" type="hidden" value="0711091218613761074"> <INPUT name="internApplication" type="hidden" value=""> <INPUT name="dataTyp" type="hidden" value="SEARCH"> <INPUT class="dom_translate::stillProcessing" name="accountWaitText" type="hidden" value="Die Abrechnungsdaten werden aufbereitet ..."><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM><DIV style="width:194px; overflow: hidden;"><DIV class="dom_position" id="navitemAm"><A class="subnavbuttonHL blockHL dom_action::SwitchToAm dom_translate::amis.navbar.arzneimittel.title::title dom_translate::amis.navbar.arzneimittel dom_highlight::AmisInfo_AmisSubNavController_IsAMSelected" href="/websearch/servlet/FlowController/SwitchToAm?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Durchsuchen Sie die Arzneimittel-Datenbank.">Arzneimittel »</A></DIV><DIV class="dom_position" id="navitemStf"><A class="subnavbutton block dom_action::SwitchToStf dom_translate::amis.navbar.stoffe.title::title dom_translate::amis.navbar.stoffe dom_highlight::AmisInfo_AmisSubNavController_IsSTFSelected" href="/websearch/servlet/FlowController/SwitchToStf?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Durchsuchen Sie die Stoffe-Datenbank.">Stoffe »</A></DIV><DIV class="dom_position" id="navitemBez"><A class="subnavbutton block dom_action::SwitchToBez dom_translate::amis.navbar.bezeichnungsverordnung.title::title dom_translate::amis.navbar.bezeichnungsverordnung dom_highlight::AmisInfo_AmisSubNavController_IsBEZSelected" href="/websearch/servlet/FlowController/SwitchToBez?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Durchsuchen Sie die Bezeichnungsverordnung-Datenbank.">Bez.verordnung »</A></DIV><DIV class="dom_position" id="navitemStp"></DIV><DIV class="dom_position" id="navitemPna"></DIV><DIV class="dom_position" id="navitemVh"></DIV><DIV class="dom_position" id="navitemChp"></DIV><DIV class="wbnavfunc"> </DIV><DIV class="dom_if::getIsPPV() dom_position" id="navitemReg"><A class="subnavbutton block dom_translate::title_register::title dom_action::RegAct-start dom_translate::registrationRaquo" href="/websearch/servlet/FlowController/RegAct-start?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Registrieren Sie sich, um Funktionen verwenden zu können, die Ihre persönlichen Daten erfordern.">Registrierung »</A></DIV><DIV class="dom_position" id="navitemSa"><!-- dom_action::switchAmisDB?newDB=am --> <A class="subnavbutton block dom_translate::title_profiles::title dom_action::Profiles-display dom_translate::amis.navbar.sa" href="/websearch/servlet/FlowController/Profiles-display?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Speichern Sie Ihre Suche und starten Sie zuvor gespeicherte Suchen.">Sucharchiv »</A></DIV><DIV class="dom_position" id="navitemAt"><A class="subnavbutton block dom_translate::title_services::title dom_translate::amis.navbar.at dom_action::Standingorder-display" href="/websearch/servlet/FlowController/Standingorder-display?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Verwalten Sie Ihre Bestellungen und (Dauer-) Aufträge.">Dauerauftrag »</A></DIV><DIV class="dom_position" id="navitemVt"><A class="subnavbutton block dom_translate::title_services::title dom_translate::amis.navbar.vt dom_action::Fulltextorder-display" href="/websearch/servlet/FlowController/Fulltextorder-display?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Verwalten Sie Ihre Bestellungen und (Dauer-) Aufträge.">Volltextbestellung »</A></DIV><DIV class="dom_position" id="navitemVs"><!-- dom_action::switchAmisDB?newDB=am --> <A class="subnavbutton block dom_translate::title_prefs::title dom_translate::amis.navbar.vs dom_action::Prefers-display" href="/websearch/servlet/FlowController/Prefers-display?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Ändern Sie die Voreinstellungen für Sitzungstimeout, Anzahl angezeigter Dokumente etc.">Voreinstellungen »</A></DIV><DIV class="wbnavfunc"> </DIV><DIV class="wbnavfunc"> </DIV><DIV class="dom_position" id="navitemContact"><A class="subnavbutton block dom_translate::title_contact::title dom_translate::amis.navbar.contact dom_action::Contact-display" href="/websearch/servlet/FlowController/Contact-display?uid=000002" onclick="return fireForm(document.serverDataForm, this.href);" title="Schreiben Sie uns eine E-Mail.">Kontakt »</A></DIV><DIV class="dom_position" id="navitemHelp"><A class="subnavbutton block dom_translate::amis.navbar.help dom_translate::title_help::title dom_value::getAmisInfo().getHelpPath()::href" href="/websearch/amis_off/germ/help/help.jsp" target="_blank" title="Öffnen Sie die Hilfe.">Hilfe »</A></DIV><DIV class="wbnavfunc"> </DIV><DIV class="dom_position" id="navitemLogout"></DIV><DIV class="dom_position" id="waitpic"><DIV style="margin-top: 1em; text-align: center; overflow: hidden; width: 100%"><CENTER><IMG alt="Bitte warten" class="dom_relocation" name="waitpic" src="/websearch/img/clear.gif" style="overflow: hidden"> <DIV id="waittext" style="font-weight: bold; color: #000000"> </DIV></CENTER></DIV></DIV></DIV></DIV></TD><TD align="left" class="wbcontenttab dom_position" id="content" style="overflow: hidden" valign="top"><DIV id="amisContentFrame"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="100%"><TR><TD class="wbcontenttab dom_position" id="clause" valign="top"></TD></TR><TR class="dom_if::getIsPPV()"><TD class="dom_position" id="shop" style="padding-left:0;padding-right:0" valign="top"><A name="browseindex"></A> <FORM action="" method="POST" name="payPerViewForm"><INPUT name="uid" type="hidden" value=""> <INPUT class="dom_value::getShoppingCartDetails().getShoppingCartGlobals()" type="hidden" value="0"> <DIV><A class="wbwarenkorb dom_action dom_translate::showShoppingCart::title" href="/websearch/servlet/FlowController/ShowShoppingCart?uid=000002" onclick="return fireForm(document.forms[0], this.href);" title="Warenkorb anzeigen"><SPAN style="float:left; display:block; width:20%;"><IMG alt="Bestellliste" border="0" class="dom_relocation dom_translate::shoppingList::alt" height="22" src="/websearch/img/warenkorb_gross.gif" width="32"></SPAN> <SPAN style="float:left; display:block; width:40%;"><SPAN class="wbboldtxt dom_value::getShoppingCartDetails().getItemsNumShopDbdoc()">0</SPAN> <SPAN class="wbtxt dom_translate::dbDocs">Datenbankdokumente</SPAN><BR> <SPAN class="wbboldtxt dom_value::getShoppingCartDetails().getItemsNumShopFulltext()">0</SPAN> <SPAN class="wbtxt dom_translate::fulltexts">Volltexte</SPAN></SPAN> <SPAN style="float:left; display:block; padding-top:0.5em; width:40%;"><SPAN class="wbboldtxt dom_translate::cartsum">Warenwert:</SPAN> <SPAN class="wbboldtxt dom_value::getShoppingCartDetails().getCartSum().getTotal()">0,00 EUR</SPAN></SPAN></A></DIV><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM></TD></TR><TR><TD class="wbcontenttab dom_position" id="top" valign="top"><A name="__DEFANCHOR__"></A> <DIV class="wbsectiontitlebar dom_translate::searchform" style="margin:4px;">Suche</DIV><FORM action="/websearch/servlet/FlowController/Search" class="dom_action::Search" method="POST" name="search_form" onsubmit="return fn_abda_validate_input(document.search_form,document.search_form.action);" style="margin:0em"><INPUT name="uid" type="hidden" value="000002"><INPUT class="dom_value::getBridge().getSession().getAppName()::id" id="amis_off_am" name="test" type="hidden"> <INPUT name="_changebranch" type="hidden" value="false"> <INPUT name="setExpressions" type="hidden" value=""> <INPUT name="rowIx" type="hidden" value=""> <INPUT id="baseName" name="baseName" type="hidden" value="amis_off_am"> <INPUT class="dom_value::getBridge().getSession().getAppName()" name="bridge_session_appName" type="hidden" value="amis_off_am"> <INPUT class="dom_value::getSearchModeIsAdvanced()" name="searchModeIsAdvanced" type="hidden" value="true"> <INPUT class="wbtxt dom_translate::inputValidationError" name="inputValidationError" type="hidden" value="Bitte nutzen Sie die "A-Z" Buttons für Ihre Auswahl"> <INPUT class="wbtxt dom_translate::selection" name="selection" type="hidden" value="Auswahl"> <INPUT name="pI" type="hidden" value="searchFormInfo_basicSearchString"> <DIV class="dom_custom" name="advancedSearchInputs" style="margin-top:0.6em; margin-bottom:0.6em;"><!-- div class="dom_if::getSearchFormInfo().getExistFieldsNotInAllBases()" style="margin-left:4px;">
|
|
15
|
+
<span class="dom_translate::searchFieldsNotInAllBases">Folgende Felder sind nicht in allen Datenbanken vorhanden: </span>
|
|
16
|
+
|
|
17
|
+
<div class="dom_list::getSearchFormInfo().getNotInAllBases() dom_clone::getSearchFormInfo().getNotInAllBases()">
|
|
18
|
+
<span class="dom_item::.getNotInAllBases()[].getShortName()
|
|
19
|
+
dom_item::.getNotInAllBases()[=].getLongName()::title">
|
|
20
|
+
</span>;
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
</div --><TABLE border="0" cellpadding="0" cellspacing="4" class="dom_list::getSearchFormInfo().getSearchEntries()" style="margin-top:0.6em; margin-bottom:0.6em;" summary="" width="589"><TR name="firstExpression"><TD class="dom_translate::searchFor">Suche nach:</TD><TD><INPUT alt="0815" id="0" maxlength="1024" name="term" onchange="fnChkTextInput(document.search_form, this.id);" onkeyup="writeHiddenField(document.search_form,this.id);fnChkTextInput(document.search_form,this.id);return fnChkSearchEnter(event);" size="28" type="text" value=""> </TD><TD><INPUT maxlength="1024" name="termHiddenField" size="4" type="hidden" value=""> </TD><TD>in</TD><TD><SELECT alt="0816" class="dom_list::getApplicationInfo().getSearchFormFields() dom_clone::getApplicationInfo().getSearchFormFields()" id="0" name="applicationInfo_searchFormFields" onchange="cbxChanged(document.search_form,this.id);" value="0"><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anwendungsart" value="AA">Anwendungsart</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anwendungsgebiete" value="ANWG">Anwendungsgebiete</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anzahl Wirkstoffe" value="ANZW">Anzahl Wirkstoffe</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Arzneimittelname" selected value="AM">Arzneimittelname</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Darreichungsform" value="DF">Darreichungsform</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Eingangsnummer" value="ENR">Eingangsnummer</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="EU-Zulassungs-Code" value="EGZC">EU-Zulassungs-Code</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Indikation (ATC-Code)" value="INDNR">Indikation (ATC-Code)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Indikation (ATC-Text)" value="IND">Indikation (ATC-Text)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Kennziffer" value="KENNZ">Kennziffer</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Parallelimport-Code" value="PARC">Parallelimport-Code</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Pharma. Unternehmer-Name" value="PNA">Pharma. Unternehmer-Name</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Pharma. Unternehmer-Nr." value="PNR">Pharma. Unternehmer-Nr.</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Phytopharmakon" value="PHYC">Phytopharmakon</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Register-Nr. (AMG61)" value="REGNR">Register-Nr. (AMG61)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Stoffname" value="STF">Stoffname</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Textfelder" value="FT">Textfelder</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Tierart" value="TI">Tierart</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Verkaufsabgrenzung" value="VK">Verkaufsabgrenzung</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zielgruppe (Code)" value="ZGC">Zielgruppe (Code)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zul.-Nr./Reg.-Nr. (AMG76)" value="ZNR">Zul.-Nr./Reg.-Nr. (AMG76)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zustaendigkeit" value="ZU">Zustaendigkeit</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045133371531194607295263--></SELECT> </TD><TD style="text-align:right; padding-right:1.4em; vertical-align:middle;"><A class="wbstdbutton dom_action dom_translate::atozRaquo dom_item::.getSearchEntries()[].getRowIx() dom_translate::title_BrowseIndex::title" href="/websearch/servlet/FlowController/StartBrowseIndex?uid=000002&rowIx=0" onclick="return fireForm(document.search_form, this.href);" title="Suchbegriffsliste anzeigen">» A-Z »</A> </TD></TR><TR name="expression" valign="baseline"><TD><SELECT name="operator"><OPTION class="wbtxt dom_translate::andOp" selected value="AND">UND</OPTION><OPTION class="wbtxt dom_translate::orOp" value="OR">ODER</OPTION><OPTION class="wbtxt dom_translate::notOp" value="NOT">NICHT</OPTION></SELECT> </TD><TD><INPUT alt="0815" id="1" maxlength="1024" name="term" onchange="fnChkTextInput(document.search_form,this.id);" onkeyup="writeHiddenField(document.search_form,this.id);fnChkTextInput(document.search_form, this.id);return fnChkSearchEnter(event);" size="28" type="text" value=""> </TD><TD><INPUT maxlength="1024" name="termHiddenField" size="4" type="hidden" value=""> </TD><TD>in</TD><TD><SELECT alt="0816" class="dom_list::getApplicationInfo().getSearchFormFields() dom_clone::getApplicationInfo().getSearchFormFields()" id="1" name="applicationInfo_searchFormFields" onchange="cbxChanged(document.search_form,this.id);" value="0"><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anwendungsart" value="AA">Anwendungsart</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anwendungsgebiete" value="ANWG">Anwendungsgebiete</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Anzahl Wirkstoffe" value="ANZW">Anzahl Wirkstoffe</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Arzneimittelname" value="AM">Arzneimittelname</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Darreichungsform" value="DF">Darreichungsform</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Eingangsnummer" value="ENR">Eingangsnummer</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="EU-Zulassungs-Code" value="EGZC">EU-Zulassungs-Code</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Indikation (ATC-Code)" value="INDNR">Indikation (ATC-Code)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Indikation (ATC-Text)" value="IND">Indikation (ATC-Text)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Kennziffer" value="KENNZ">Kennziffer</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Parallelimport-Code" value="PARC">Parallelimport-Code</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Pharma. Unternehmer-Name" value="PNA">Pharma. Unternehmer-Name</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Pharma. Unternehmer-Nr." value="PNR">Pharma. Unternehmer-Nr.</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Phytopharmakon" value="PHYC">Phytopharmakon</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Register-Nr. (AMG61)" value="REGNR">Register-Nr. (AMG61)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Stoffname" selected value="STF">Stoffname</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Textfelder" value="FT">Textfelder</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Tierart" value="TI">Tierart</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Verkaufsabgrenzung" value="VK">Verkaufsabgrenzung</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zielgruppe (Code)" value="ZGC">Zielgruppe (Code)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zul.-Nr./Reg.-Nr. (AMG76)" value="ZNR">Zul.-Nr./Reg.-Nr. (AMG76)</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--><OPTION class="dom_checkeditem::getApplicationInfo().getSearchFormFields()[]" label="Zustaendigkeit" value="ZU">Zustaendigkeit</OPTION><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04584571291194607295263--></SELECT> </TD><TD style="text-align:right; padding-right:1.4em; vertical-align:middle;"><A class="wbstdbutton dom_action dom_translate::atozRaquo dom_translate::title_BrowseIndex::title dom_item::.getSearchEntries()[].getRowIx()" href="/websearch/servlet/FlowController/StartBrowseIndex?uid=000002&rowIx=1" onclick="return fireForm(document.search_form, this.href);" title="Suchbegriffsliste anzeigen">» A-Z »</A> </TD></TR></TABLE><DIV class="dom_if::getSearchFormInfo().getAddingMoreLinesPossible()" style="margin-top:0.6em; margin-bottom:0.6em; margin-left:4px"><SPAN class="wbtxtlink">» <A class="wbtxtlink dom_action::DisplaySearchForm dom_translate::morelines" href="/websearch/servlet/FlowController/DisplaySearchForm?uid=000002" name="morelines" onclick="document.search_form.setExpressions.value="add"; return fireForm(document.search_form, href);">Eingabezeile hinzufügen</A></SPAN></DIV></DIV><TABLE border="0" cellpadding="0" cellspacing="4" id="addSearchLimits" summary="" width="589"></TABLE><DIV class="dom_position" id="bottom"><DIV class="wbsectionsubtitlebar dom_translate::einschraenkungen_am" style="margin:4px; font-weight:bold;">Filter Arzneimittel</DIV><DIV class="dom_position" id="bsbdLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::zulassungszeitraum" width="251">Zulassungszeitraum</TD><TD><TABLE border="0" cellpadding="0" cellspacing="2" summary=""><TR><TD nowrap width="174"><SPAN class="wbtxt dom_translate::zwischen">von</SPAN> <INPUT class="wbtxt" maxlength="8" name="BSBD_FROM" size="10" type="text" value=""> </TD><TD width="164"><SPAN class="wbtxt dom_translate::und">bis</SPAN> <INPUT class="wbtxt" maxlength="8" name="BSBD_TO" size="10" type="text" value=""> </TD></TR><TR><TD align="left" class="wbtxt dom_translate::dateExample" colspan="2" nowrap>Datum bitte in der Form JJJJMMTT, z.B. 19980101, eingeben.</TD></TR></TABLE></TD></TR></TBODY></TABLE></DIV></DIV><DIV class="dom_position" id="verkLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::VERK" nowrap width="251">Verkehrsfähige:</TD><TD><TABLE border="0" cellpadding="0" cellspacing="2" summary=""><TR><TD nowrap width="174"><INPUT checked name="VERK" type="radio" value="NO_RESTRICTION"> <SPAN class="wbtxt dom_translate::keineeinschraenkungen">keine Einschränkungen</SPAN> </TD><TD width="164"><INPUT name="VERK" type="radio" value="YES"> <SPAN class="wbtxt dom_translate::YES">ja</SPAN> <INPUT name="VERK" type="radio" value="NO"> <SPAN class="wbtxt dom_translate::NO">nein</SPAN> </TD></TR></TABLE></TD></TR></TBODY></TABLE></DIV></DIV><DIV class="dom_position" id="wftypLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::WFTYP" nowrap width="251">Mit Fach-/Gebrauchsinformationen:</TD><TD><TABLE border="0" cellpadding="0" cellspacing="2" summary=""><TR><TD nowrap width="174"><INPUT checked name="WFTYP" type="radio" value="NO_RESTRICTION"> <SPAN class="wbtxt dom_translate::keineeinschraenkungen" nowrap>keine Einschränkungen</SPAN> </TD><TD width="164"><INPUT name="WFTYP" type="radio" value="YES"> <SPAN class="wbtxt dom_translate::YES">ja</SPAN> </TD></TR></TABLE></TD></TR><TR><TD class="wbtxt dom_translate::WFTYPPAR" nowrap width="251">Öffentliche Beurteilungsberichte:</TD><TD><TABLE border="0" cellpadding="0" cellspacing="2" summary=""><TR><TD nowrap width="174"><INPUT checked name="WFTYPPAR" type="radio" value="NO_RESTRICTION"> <SPAN class="wbtxt dom_translate::keineeinschraenkungen" nowrap>keine Einschränkungen</SPAN> </TD><TD width="164"><INPUT name="WFTYPPAR" type="radio" value="YES"> <SPAN class="wbtxt dom_translate::YES">ja</SPAN> </TD></TR></TABLE></TD></TR></TBODY></TABLE></DIV></DIV><DIV class="dom_position" id="homcLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::HOMC" nowrap width="251">Homöopathika:</TD><TD><TABLE border="0" cellpadding="0" cellspacing="2" summary=""><TR><TD nowrap width="174"><INPUT checked name="HOMC" type="radio" value="NO_RESTRICTION"> <SPAN class="wbtxt dom_translate::keineeinschraenkungen" nowrap>keine Einschränkungen</SPAN> </TD><TD width="164"><INPUT name="HOMC" type="radio" value="YES"> <SPAN class="wbtxt dom_translate::YES">ja</SPAN> <INPUT name="HOMC" type="radio" value="NO"> <SPAN class="wbtxt dom_translate::NO">nein</SPAN> </TD></TR></TABLE></TD></TR></TBODY></TABLE></DIV></DIV><DIV class="dom_position" id="unternehmertypLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::unternehmertyp" nowrap rowspan="3" valign="top" width="251">Unternehmertyp:</TD><TD width="174"><INPUT name="PTYP" type="checkbox" value="ANT"> <SPAN class="wbtxt dom_translate::ANT ">Anmelder</SPAN> </TD><TD width="164"><INPUT name="PTYP" type="checkbox" value="VER"> <SPAN class="wbtxt dom_translate::VER">Vertreiber</SPAN> </TD></TR><TR><TD nowrap width="174"><INPUT name="PTYP" type="checkbox" value="HER"> <SPAN class="wbtxt dom_translate::HER">Hersteller/Endfreigabe</SPAN> </TD><TD width="164"><INPUT name="PTYP" type="checkbox" value="HWS"> <SPAN class="wbtxt dom_translate::HWS">Hersteller/Wirkstoff</SPAN> </TD></TR><TR><TD width="174"><INPUT name="PTYP" type="checkbox" value="HSO"> <SPAN class="wbtxt dom_translate::HSO">Hersteller/Sonstige</SPAN> </TD><TD width="164"> </TD></TR><TR><TD align="left" colspan="3" nowrap valign="top"><DIV class="wbtxt dom_if::getAmisInfo().getIsMdsOrOffAmApp() dom_translate::sucheninMDSOrOff">(Nur bei Suchen in Pharma. Unternehmer oder Nr.)</DIV></TD></TR></TBODY></TABLE></DIV></DIV><DIV class="dom_position" id="stofftypLimits"><DIV id="searchLimits"><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TBODY><TR><TD class="wbtxt dom_translate::stofftyp" nowrap rowspan="4" valign="top" width="251">Stofftyp:</TD><TD nowrap width="174"><INPUT name="STFC" type="checkbox" value="1"> <SPAN class="wbtxt dom_translate::STFC1">Arzneilich wirksame Bestandteile</SPAN> </TD><TD nowrap width="164"><INPUT name="STFC" type="checkbox" value="2"> <SPAN class="wbtxt dom_translate::STFC2">Hilfsstoffe</SPAN> </TD></TR><TR><TD nowrap width="174"><INPUT name="STFC" type="checkbox" value="3"> <SPAN class="wbtxt dom_translate::STFC3">Wirksame Bestandteile</SPAN> </TD><TD nowrap width="164"><INPUT name="STFC" type="checkbox" value="4"> <SPAN class="wbtxt dom_translate::STFC4">Schutzgase</SPAN> </TD></TR><TR><TD nowrap width="174"><INPUT name="STFC" type="checkbox" value="5"> <SPAN class="wbtxt dom_translate::STFC5">Analysedaten</SPAN> </TD><TD nowrap width="164"><INPUT name="STFC" type="checkbox" value="0"> <SPAN class="wbtxt dom_translate::STFC0">Verpackungsmaterial</SPAN> </TD></TR><TR><TD colspan="2" nowrap width="174"><INPUT name="STFC" type="checkbox" value="6"> <SPAN class="wbtxt dom_translate::STFC6">Dilutions-/Titrations-/Auszugsmittel</SPAN> </TD></TR><TR><TD align="left" class="wbtxt dom_translate::stofftypsuche" colspan="3" valign="top">(Nur bei Suchen in "Stoffname" oder "Stoffnummer")</TD></TR></TBODY></TABLE></DIV></DIV></DIV><TABLE border="0" cellpadding="0" cellspacing="4" id="deleteSearchLimits" summary="" width="589"><TR><TD style="text-align:left; width:50%;"><SPAN class="wbtxtlink">» <A class="wbtxtlink dom_action dom_translate::sLimitsDelete" href="/websearch/servlet/FlowController/DisplaySearchForm?uid=000002" name="sLimitsDelete" onclick="document.search_form.setExpressions.value="deleteLimits";return fireForm(document.search_form, href);">Filter ausblenden</A></SPAN> </TD><TD style="text-align:right; width:50%;"><A class="wbstdbutton dom_value::getAmisInfo().getHelpPathSearch()::href dom_translate::helpRaquo2" href="/websearch/amis_off/germ/help/help.jsp#search" target="_blank">» Hilfe »</A> </TD></TR><TR><TD> </TD><TD style="text-align:right;"><A class="wbstdbutton dom_action dom_translate::resetRaquo" href="/websearch/servlet/FlowController/DisplaySearchForm?uid=000002" onclick="document.search_form.setExpressions.value="reset"; return fireForm(document.search_form, href);">» zurücksetzen »</A> <A class="wbstdbuttoninactive dom_relocation::/interrupt.jsp dom_translate::abortRaquo" href="/websearch/interrupt.jsp" id="abortME" onclick="if(self.clicked) { self.open(this.href, 'interrupt', 'height=200,width=400,top=200,left=200,menubar=no,location=no,toolbars=no,status=no,resizable=no'); } else {displayWait(false);} return false;" style="display:inline; margin-right:4px;">» abbrechen »</A> <A class="wbbluebutton dom_action::Search dom_translate::goRaquo" href="/websearch/servlet/FlowController/Search?uid=000002" id="goME" onclick="return fn_abda_validate_input(document.search_form, this.href);">» los »</A> </TD></TR></TABLE><DIV class="dom_position" id="activeBases"></DIV><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM><SCRIPT language="javascript" style="margin:0em" type="text/javascript"> function fnChkSearchEnter(evt){
|
|
24
|
+
var keycode = document.all?evt.keyCode:evt.which;
|
|
25
|
+
var bRueckgabe = false;
|
|
26
|
+
var formname = document.search_form;
|
|
27
|
+
var hrefGo = "";
|
|
28
|
+
|
|
29
|
+
try {
|
|
30
|
+
// falls Einschr�kungen ausgeblendet sind: goOE verwenden
|
|
31
|
+
hrefGo = document.getElementById('goOE').getAttribute('href');
|
|
32
|
+
} catch(e) {
|
|
33
|
+
// falls Einschr�kungen eingeblendet sind: goME verwenden
|
|
34
|
+
hrefGo = document.getElementById('goME').getAttribute('href');
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (keycode == 13){
|
|
38
|
+
if (document.search_form){
|
|
39
|
+
bRueckgabe = fn_abda_validate_input(formname, hrefGo);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
return bRueckgabe;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function fnChkTextInput(myForm,row) {
|
|
46
|
+
if ( myForm.termHiddenField[row].value == "1" &&
|
|
47
|
+
fnChkSearchFormFields(myForm.applicationInfo_searchFormFields[row].value, myForm.term[row].value) == "false"
|
|
48
|
+
) {
|
|
49
|
+
//alert("term:[" + row + "]:[" + myForm.term[row].value + "]-- old:[" + oldValues[row] + "]");
|
|
50
|
+
//myForm.term[row].value = oldValues[row];
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function writeHiddenField(myForm,browseIndex) {
|
|
55
|
+
// alert("old:" + oldValues[browseIndex] + " - " + myForm.term[browseIndex].value);
|
|
56
|
+
if(oldValues[browseIndex] != myForm.term[browseIndex].value)
|
|
57
|
+
myForm.termHiddenField[browseIndex].value="1";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
function cbxChanged(myForm,browseIndex) {
|
|
61
|
+
// alert("cbxChanged(b):[" + browseIndex + "]");
|
|
62
|
+
myForm.termHiddenField[browseIndex].value="1";
|
|
63
|
+
// alert("cbxChanged(e):[" + myForm.termHiddenField[browseIndex].value + "]");
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
function fnChkSearchFormFields(searchFormFields, searchTerm)
|
|
67
|
+
{
|
|
68
|
+
if ( (searchFormFields == "ATCGCX" || searchFormFields == "INDC" ||
|
|
69
|
+
searchFormFields == "atcgcx" || searchFormFields == "indc"
|
|
70
|
+
) && searchTerm != ""
|
|
71
|
+
) {
|
|
72
|
+
//alert("sff:(f)[" + searchFormFields + "]");
|
|
73
|
+
return "false";
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
//alert("sff:(t)[" + searchFormFields + "]");
|
|
77
|
+
return "true";
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function fn_abda_validate_input(myForm,href) {
|
|
82
|
+
// alert("Fact: termHiddenField >" + myForm.termHiddenField.length + "<");
|
|
83
|
+
// alert("Fact: bridge_session_appName >" + myForm.bridge_session_appName.value + "<");
|
|
84
|
+
// alert("Fact: searchModeIsAdvanced >" + myForm.searchModeIsAdvanced.value + "<");
|
|
85
|
+
// alert("Fact: href >" + href + "<");
|
|
86
|
+
var test;
|
|
87
|
+
try {
|
|
88
|
+
if (ie == 1) {
|
|
89
|
+
test = document.getElementById("abortOE").getAttribute("className");
|
|
90
|
+
document.getElementById("abortOE").setAttribute("className","wbstdbutton");
|
|
91
|
+
} else {
|
|
92
|
+
test = document.getElementById("abortOE").getAttribute("class");
|
|
93
|
+
document.getElementById("abortOE").setAttribute("class","wbstdbutton");
|
|
94
|
+
}
|
|
95
|
+
} catch(e) {
|
|
96
|
+
if (ie == 1) {
|
|
97
|
+
document.getElementById("abortME").setAttribute("className","wbstdbutton");
|
|
98
|
+
} else {
|
|
99
|
+
document.getElementById("abortME").setAttribute("class","wbstdbutton");
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (
|
|
103
|
+
myForm.bridge_session_appName.value == "abdamed" &&
|
|
104
|
+
myForm.searchModeIsAdvanced.value == "true"
|
|
105
|
+
)
|
|
106
|
+
{
|
|
107
|
+
if (myForm.termHiddenField.length > 0) {
|
|
108
|
+
// alert("!! now I'll check all terms...");
|
|
109
|
+
for (i=0; i < myForm.termHiddenField.length; i++) {
|
|
110
|
+
if ( myForm.termHiddenField[i].value == "1" &&
|
|
111
|
+
fnChkSearchFormFields(myForm.applicationInfo_searchFormFields[i].value, myForm.term[i].value) == "false"
|
|
112
|
+
) {
|
|
113
|
+
// errMsg = " (" + myForm.selection.value + " #" + (i+1) + ": ";
|
|
114
|
+
errMsg = " (#" + (i+1) + ": ";
|
|
115
|
+
errMsg = errMsg + myForm.term[i].value + " - ";
|
|
116
|
+
errMsg = errMsg + myForm.applicationInfo_searchFormFields[i].value + ").";
|
|
117
|
+
errMsg = myForm.inputValidationError.value + errMsg ;
|
|
118
|
+
alert(errMsg);
|
|
119
|
+
return false;
|
|
120
|
+
}
|
|
121
|
+
else
|
|
122
|
+
{
|
|
123
|
+
//alert("chk was true:[" + myForm.applicationInfo_searchFormFields[i].value + "]");
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
// alert("all checks done... calling fireForm(myForm, href)");
|
|
127
|
+
searchActive = true;
|
|
128
|
+
return fireForm(myForm, href);
|
|
129
|
+
}
|
|
130
|
+
else {
|
|
131
|
+
// nothing to check (no 'termHiddenField'-fields available)
|
|
132
|
+
searchActive = true;
|
|
133
|
+
return fireForm(myForm, href);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
else
|
|
137
|
+
{
|
|
138
|
+
searchActive = true;
|
|
139
|
+
return fireForm(myForm, href);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// (abdamed adv. search) Status der Suchterms merken
|
|
144
|
+
oldValues=["","","","","","","","","","","","","","","","","",""];
|
|
145
|
+
if (document.search_form.term) {
|
|
146
|
+
for (i=0; i < document.search_form.term.length; i++) {
|
|
147
|
+
oldValues[i]=document.search_form.term[i].value;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// (abdamed adv. search) Status der hidden fields merken
|
|
152
|
+
oldValuesTermHiddenField=["","","","","","","","","","","","","","","","","",""];
|
|
153
|
+
if (document.search_form.termHiddenField) {
|
|
154
|
+
for (i=0; i < document.search_form.termHiddenField.length; i++) {
|
|
155
|
+
oldValuesTermHiddenField[i]=document.search_form.termHiddenField[i].value;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
</SCRIPT></TD></TR><TR><TD class="wbcontenttab dom_position" id="middle" valign="top"><A name="results"></A> <SCRIPT type="text/javascript"> function setButtonActive() {
|
|
160
|
+
try {
|
|
161
|
+
if (ie == 1) {
|
|
162
|
+
test = document.getElementById("abortRes").getAttribute("className");
|
|
163
|
+
//alert("ie:abortRes");
|
|
164
|
+
document.getElementById("abortRes").setAttribute("className","wbstdbutton");
|
|
165
|
+
} else {
|
|
166
|
+
test = document.getElementById("abortRes").getAttribute("class");
|
|
167
|
+
//alert("moz:abortRes");
|
|
168
|
+
document.getElementById("abortRes").setAttribute("class","wbstdbutton");
|
|
169
|
+
}
|
|
170
|
+
} catch(e) {
|
|
171
|
+
if (ie == 1) {
|
|
172
|
+
//alert("ie:abortRes1");
|
|
173
|
+
document.getElementById("abortRes1").setAttribute("className","wbstdbutton");
|
|
174
|
+
} else {
|
|
175
|
+
//alert("moz:abortRes1");
|
|
176
|
+
document.getElementById("abortRes1").setAttribute("class","wbstdbutton");
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
return;
|
|
180
|
+
}
|
|
181
|
+
</SCRIPT><DIV class="dom_if::!getSearchModeIsBasic()"><!--div class="wbsectiontitlebar dom_translate::result" style="margin:4px;">Ergebnisse
|
|
182
|
+
</div--><DIV style="margin:4px;"><TABLE class="wbsectiontitlebarwithprint" summary=""><TR><TD class="wbsectiontitlebartxt dom_translate::result" nowrap>Ergebnisse</TD><TD style="text-align: right; width: 100%;"><A class="wbsectionprintbutton dom_action dom_translate::printRaquo" href="/websearch/servlet/FlowController/_PRINT_.results?uid=000002" onclick="return fireForm(window.document.forms[0], this.href, this.target);" target="_print">» drucken »</A> </TD></TR></TABLE></DIV><TABLE border="0" cellpadding="0" cellspacing="4" summary="" width="589"><TR><TD class="wbsectionsubtitlebar dom_translate::searchStep" width="85%">Suchschritt</TD><TD width="3%"> </TD><TD class="wbsectionsubtitlebar dom_translate::hits" style="text-align: right; padding-right:10px">Treffer</TD></TR></TABLE><DIV class="dom_translate::sortedResultsMarked" style="margin:4px;">Sortierte Suchschritte sind mit einem * markiert</DIV><FORM action="" method="POST" name="resultsForm" target=""><INPUT name="_changebranch" type="hidden" value="false"> <INPUT name="uid" type="hidden" value=""> <INPUT name="id" type="hidden" value=""> <INPUT name="numOfResults" type="hidden" value=""> <INPUT class="dom_translate::select2Results" name="select2Results" type="hidden" value="Bitte markieren Sie 2 Suchschritte."> <INPUT class="dom_translate::suppressConfirmBox" name="suppressConfirmBox" type="hidden" value="Die Ausgabe dieser Bestätigung können Sie über "Voreinstellungen" unterdrücken."> <INPUT class="dom_translate::chDupHitsWarning" name="chDupHitsWarning" type="hidden" value="Das Entfernen von Duplikaten zu einem Suchergebnis mit mehr als 500 Treffern dauert relativ lange. Wollen Sie wirklich fortfahren?"> <INPUT name="op" type="hidden" value=""> <TABLE border="0" cellpadding="0" cellspacing="4" class="dom_list::getSearchResults().getSelections() dom_clone::getSearchResults().getSelections()" style="overflow:hidden;" summary="" width="579"><TBODY class="dom_list::.getSelections()[].getResults() dom_clone::.getSelections()[].getResults()" valign="top"></TBODY><TFOOT><TR><TD style="width:5%; vertical-align:top; height:20px; padding-top:4px;"> </TD><TD style="width:5%; vertical-align:top; overflow:hidden; padding-top:4px;"><SPAN class="dom_item::.getSelections()[=].getId()"><A class="wbtxtlink" href="#">1</A></SPAN> </TD><TD style="width:2%; vertical-align:top;"> </TD><TD class="dom_list::.getSelections()[=].getBaseInfos() dom_clone::.getSelections()[=].getBaseInfos()" style="width:71%; vertical-align:top; overflow:hidden; padding-top:4px;"><SPAN class="dom_item::.getBaseInfos()[].getId()"><A class="wbtxtlink dom_item::.getBaseInfos()[=].getShortInfoURL()::href dom_item::.getBaseInfos()[=].getAppListLinkToolTip()::title" href="http://www.dimdi.de/de/db/dbinfo/aj29.htm" nowrap target="_blank" title="Informationen zu AJ29 (AMIS-Öffentlicher Teil) zeigen">AJ29</A></SPAN> <DIV>Stand: <SPAN class="dom_item::.getBaseInfos()[=].getLastUpdate()">09.11.2007 07:28:00</SPAN></DIV><!--DOM_CLONE_MAGIC_zr73nchjsdu9e04544874681194607295226--></TD><TD style="width:2%"> </TD><TD style="width:15%; vertical-align:top; text-align:right; padding-top:4px;"><SPAN class="dom_item::.getSelections()[=].getNumberOfDocuments()">117843</SPAN> </TD></TR></TFOOT><!--DOM_CLONE_MAGIC_zr73nchjsdu9e045595967771194607295226--></TABLE><DIV class="dom_position" id="bottom"></DIV><INPUT name="magicrequestid" type="hidden" value=""><INPUT name="stationid" type="hidden" value="amisGlobalFrameStati_163144891194607295151"><INPUT name="_stationbranch" type="hidden" value="_DEFAULT"></FORM><DIV style="text-align:right; margin:10px 4px 4px 4px;"><A class="wbstdbuttoninactive dom_relocation::/interrupt.jsp dom_translate::abortRaquo dom_if::getClient().getAbortButtonInactive()" href="/websearch/interrupt.jsp" id="abortRes" onclick="if(self.clicked) { self.open(this.href, 'interrupt', 'height=200,width=400,top=200,left=200,menubar=no,location=no,toolbars=no,status=no,resizable=no'); } else {displayWait(false);} return false;" style="display:inline; margin-right:4px;">» abbrechen »</A> <A class="wbstdbutton dom_value::getAmisInfo().getHelpPathResults()::href dom_translate::helpRaquo2" href="/websearch/amis_off/germ/help/help.jsp#results" target="_blank">» Hilfe »</A> <A class="wbstdbutton dom_translate::topRaquo" href="#" name="topLink">» top »</A></DIV></DIV></TD></TR><TR><TD class="wbcontenttab dom_position" id="bottom" valign="top"></TD></TR></TABLE></DIV></TD></TR></TABLE><SCRIPT type="text/javascript">window.name = "mainwin";</SCRIPT></DIV><DIV><IMG alt="PharmNet FooterLogo" src="/websearch/img/PharmNetFoot_de.gif" style="border:none"></DIV></BODY></HTML>
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>ATC/DDD</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<p align="right"><a href="index.php">New search</a> <a href="index.php?query=A">Hide text from Guidelines</a> <a href="index.php?logout=true">Log out</a> </p>A <b><a href="index.php?query=A">ALIMENTARY TRACT AND METABOLISM</a></b><br>
|
|
38
|
+
<p>A01 <b><a href="index.php?query=A01&showdescription=yes">STOMATOLOGICAL PREPARATIONS</a></b><br>
|
|
39
|
+
A02 <b><a href="index.php?query=A02&showdescription=yes">DRUGS FOR ACID RELATED DISORDERS</a></b><br>
|
|
40
|
+
A03 <b><a href="index.php?query=A03&showdescription=yes">DRUGS FOR FUNCTIONAL GASTROINTESTINAL DISORDERS</a></b><br>
|
|
41
|
+
<p>A major part of the preparations in this group are combined preparations. Preparations containing e.g. analgesics and antispasmodics could be classified either in this group or in N02 - Analgesics. Combinations of psycholeptics and antispasmodics could be classified in A03 or in N05 - Psycholeptics etc. The main indication for the use of the combination will, together with the relative effect of the active components, decide the classification. In the treatment of pain caused by spasms, the spasmolytic component must be judged as more important than the analgesic component. Accordingly, analgesic/antispasmodic combinations should be classified in A03 if the main effect of the preparation is the antispasmodic action. <br>Combined preparations are classified in:<br><br><br>A03C - Antispasmodics in combination with psycholeptics <br>A03D - Antispasmodics in combination with analgesics <br>A03E - Antispasmodics and anticholinergics in combination with other drugs <br><br>Antispasmodics, which are used specifically in the urogenital tractus, are classified in G04BD - Urinary antispasmodics. <br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>The DDD is equal for different routes of administration (oral, parenteral or rectal) of the same compound and is based on the oral dose. </td></tr></table><p>A04 <b><a href="index.php?query=A04&showdescription=yes">ANTIEMETICS AND ANTINAUSEANTS</a></b><br>
|
|
42
|
+
A05 <b><a href="index.php?query=A05&showdescription=yes">BILE AND LIVER THERAPY</a></b><br>
|
|
43
|
+
A06 <b><a href="index.php?query=A06&showdescription=yes">LAXATIVES</a></b><br>
|
|
44
|
+
A07 <b><a href="index.php?query=A07&showdescription=yes">ANTIDIARRHEALS, INTESTINAL ANTIINFLAMMATORY/ANTIINFECTIVE AGENTS</a></b><br>
|
|
45
|
+
A08 <b><a href="index.php?query=A08&showdescription=yes">ANTIOBESITY PREPARATIONS, EXCL. DIET PRODUCTS</a></b><br>
|
|
46
|
+
A09 <b><a href="index.php?query=A09&showdescription=yes">DIGESTIVES, INCL. ENZYMES</a></b><br>
|
|
47
|
+
A10 <b><a href="index.php?query=A10&showdescription=yes">DRUGS USED IN DIABETES</a></b><br>
|
|
48
|
+
A11 <b><a href="index.php?query=A11&showdescription=yes">VITAMINS</a></b><br>
|
|
49
|
+
<p>Vitamins constitute a comprehensive group of therapeutic and prophylactic preparations. Before classifying any product it is important to be familiar with the main subdivision of the group. <br><br>It may be necessary to consider whether a product is a vitamin preparation with iron or an iron preparation with vitamins, a mineral preparation with vitamins or a vitamin preparation with minerals, or if the product should be regarded as a tonic etc. As an aid to such considerations, guidelines are given at each sublevel. <br><br>Vitamin B12 is classified in B03 - Antianemic preparations. <br>Vitamin K is classified in B02 - Antihemorrhagics.<br><br>Vitamins administered as i.v. solution additives, see B05XC. <br><br>Some definitions:<br><br>Multivitamins: Products containing minimum vitamins A, B, C and D. One B-vitamin is sufficient. <br><br>B-complex: Products containing minimum thiamine, riboflavine, pyridoxine, nicotinamide. The products may contain other B-vitamins.<p>A12 <b><a href="index.php?query=A12&showdescription=yes">MINERAL SUPPLEMENTS</a></b><br>
|
|
50
|
+
<p>This group contains mineral supplements used for treatment of mineral deficiency. Magnesium carbonate used for treatment of mineral deficiency is classified in A02AA01.<p>A13 <b><a href="index.php?query=A13&showdescription=yes">TONICS</a></b><br>
|
|
51
|
+
A14 <b><a href="index.php?query=A14&showdescription=yes">ANABOLIC AGENTS FOR SYSTEMIC USE</a></b><br>
|
|
52
|
+
A15 <b><a href="index.php?query=A15&showdescription=yes">APPETITE STIMULANTS</a></b><br>
|
|
53
|
+
<p>This group comprises preparations only used as appetite stimulants. <br>A number of drugs with other main actions may have appetite stimulating properties. <br><br>Cyproheptadine, also used as an appetite stimulant in children, is classified in R06AX. Pizotifen is classified in N02CX.<br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>No DDDs are established in this group.</td></tr></table><p>A16 <b><a href="index.php?query=A16&showdescription=yes">OTHER ALIMENTARY TRACT AND METABOLISM PRODUCTS</a></b><br>
|
|
54
|
+
|
|
55
|
+
</body>
|
|
56
|
+
</html>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>ATC/DDD</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<p align="right"><a href="index.php">New search</a> <a href="index.php?query=A03">Hide text from Guidelines</a> <a href="index.php?logout=true">Log out</a> </p>A <b><a href="index.php?query=A">ALIMENTARY TRACT AND METABOLISM</a></b><br>
|
|
38
|
+
A03 <b><a href="index.php?query=A03">DRUGS FOR FUNCTIONAL GASTROINTESTINAL DISORDERS</a></b><br>
|
|
39
|
+
<p>A major part of the preparations in this group are combined preparations. Preparations containing e.g. analgesics and antispasmodics could be classified either in this group or in N02 - Analgesics. Combinations of psycholeptics and antispasmodics could be classified in A03 or in N05 - Psycholeptics etc. The main indication for the use of the combination will, together with the relative effect of the active components, decide the classification. In the treatment of pain caused by spasms, the spasmolytic component must be judged as more important than the analgesic component. Accordingly, analgesic/antispasmodic combinations should be classified in A03 if the main effect of the preparation is the antispasmodic action. <br>Combined preparations are classified in:<br><br><br>A03C - Antispasmodics in combination with psycholeptics <br>A03D - Antispasmodics in combination with analgesics <br>A03E - Antispasmodics and anticholinergics in combination with other drugs <br><br>Antispasmodics, which are used specifically in the urogenital tractus, are classified in G04BD - Urinary antispasmodics. <br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>The DDD is equal for different routes of administration (oral, parenteral or rectal) of the same compound and is based on the oral dose. </td></tr></table></p><br>
|
|
40
|
+
<p>A03A <b><a href="index.php?query=A03A&showdescription=yes">DRUGS FOR FUNCTIONAL BOWEL DISORDERS</a></b><br>
|
|
41
|
+
<p>Semisynthetic derivatives such as butylscopolamine, are classified in A03B - Belladonna and derivatives, plain.<p>A03B <b><a href="index.php?query=A03B&showdescription=yes">BELLADONNA AND DERIVATIVES, PLAIN</a></b><br>
|
|
42
|
+
A03C <b><a href="index.php?query=A03C&showdescription=yes">ANTISPASMODICS IN COMBINATION WITH PSYCHOLEPTICS</a></b><br>
|
|
43
|
+
<p>Antispasmodics in combination with psycholeptics and other drugs (excl. analgesics) are classified in this group.<br><br>Antispasmodics in combination with both psycholeptics and analgesics are classified in A03EA.<br><br> The classification at the 5th levels is based on the antispasmodic component. At each 5th level several psycholeptics may occur. When classifying such combined products, it is necessary to look at the main indication and the composition, to see if the preparation should be classified in A03 or in N05 - Psycholeptics (see comments under A03).<p>A03D <b><a href="index.php?query=A03D&showdescription=yes">ANTISPASMODICS IN COMBINATION WITH ANALGESICS</a></b><br>
|
|
44
|
+
<p>This group is completely parallel to A03C.<br><br>The classification at the 5th levels is based on the antispasmodic component. At each 5th level several analgesics may occur. Antispasmodics in combination with analgesics and other drugs (excl. psycholeptics) are classified in this group.<br><br>When classifying these combination products, it is necessary to look at the indications and the composition to see if the preparation should be classified in A03 or in N02 - Analgesics. <br><br>Opioid analgesics in combination with antispasmodics, see N02AG - Opioids in combination with antispasmodics. Ethylmorphine is not regarded as a narcotic in this context. <br> Antispasmodics in combination with psycholeptics and analgesics are classified in A03EA.<p>A03E <b><a href="index.php?query=A03E&showdescription=yes">ANTISPASMODICS AND ANTICHOLINERGICS IN COMBINATION WITH OTHER DRUGS</a></b><br>
|
|
45
|
+
<p>General comments, see A03.<br><br>This group comprises all combined preparations with antispasmodics and anticholinergics, which are not covered by A03C or A03D.<p>A03F <b><a href="index.php?query=A03F&showdescription=yes">PROPULSIVES</a></b><br>
|
|
46
|
+
|
|
47
|
+
</body>
|
|
48
|
+
</html>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>ATC/DDD</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<p align="right"><a href="index.php">New search</a> <a href="index.php?query=A03AB">Hide text from Guidelines</a> <a href="index.php?logout=true">Log out</a> </p>A <b><a href="index.php?query=A">ALIMENTARY TRACT AND METABOLISM</a></b><br>
|
|
38
|
+
A03 <b><a href="index.php?query=A03">DRUGS FOR FUNCTIONAL GASTROINTESTINAL DISORDERS</a></b><br>
|
|
39
|
+
<p>A major part of the preparations in this group are combined preparations. Preparations containing e.g. analgesics and antispasmodics could be classified either in this group or in N02 - Analgesics. Combinations of psycholeptics and antispasmodics could be classified in A03 or in N05 - Psycholeptics etc. The main indication for the use of the combination will, together with the relative effect of the active components, decide the classification. In the treatment of pain caused by spasms, the spasmolytic component must be judged as more important than the analgesic component. Accordingly, analgesic/antispasmodic combinations should be classified in A03 if the main effect of the preparation is the antispasmodic action. <br>Combined preparations are classified in:<br><br><br>A03C - Antispasmodics in combination with psycholeptics <br>A03D - Antispasmodics in combination with analgesics <br>A03E - Antispasmodics and anticholinergics in combination with other drugs <br><br>Antispasmodics, which are used specifically in the urogenital tractus, are classified in G04BD - Urinary antispasmodics. <br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>The DDD is equal for different routes of administration (oral, parenteral or rectal) of the same compound and is based on the oral dose. </td></tr></table></p><br>
|
|
40
|
+
A03A <b><a href="index.php?query=A03A">DRUGS FOR FUNCTIONAL BOWEL DISORDERS</a></b><br>
|
|
41
|
+
<p>Semisynthetic derivatives such as butylscopolamine, are classified in A03B - Belladonna and derivatives, plain.</p><br>
|
|
42
|
+
A03AB <b><a href="index.php?query=A03AB">Synthetic anticholinergics, quaternary ammonium compounds</a></b><br>
|
|
43
|
+
<p>Plain preparations containing glycopyrronium are classified in this group. Preparations containing glycopyrronium in combination with neostigmine are classified in N07AA51. Trospium see G04BD and A03DA.</p><br>
|
|
44
|
+
<p><ul><table cellpadding="0" cellspacing="0" border="0">
|
|
45
|
+
<tr><td>ATC code </td><td>Name </td><td>DDD </td><td align="center"> U</td><td> Adm.R</td><td> Note</td></tr>
|
|
46
|
+
<tr><td>A03AB01 </td><td><a href="index.php?query=A03AB01&showdescription=yes">Benzilone</a> </td><td align="right">70 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB02 </td><td><a href="index.php?query=A03AB02&showdescription=yes">Glycopyrronium</a> </td><td align="right">3 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td></td><td></td><td align="right">3 </td><td align="right">mg </td><td align="right">P </td><td align="right"></td></tr><tr><td></td><td></td><td align="right">3 </td><td align="right">mg </td><td align="right">R </td><td align="right"></td></tr><tr><td>A03AB03 </td><td><a href="index.php?query=A03AB03&showdescription=yes">Oxyphenonium</a> </td><td align="right">25 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB04 </td><td><a href="index.php?query=A03AB04&showdescription=yes">Penthienate</a> </td><td align="right">15 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB05 </td><td><a href="index.php?query=A03AB05&showdescription=yes">Propantheline</a> </td><td align="right">60 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td></td><td></td><td align="right">60 </td><td align="right">mg </td><td align="right">P </td><td align="right"></td></tr><tr><td>A03AB06 </td><td><a href="index.php?query=A03AB06&showdescription=yes">Otilonium bromide</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB07 </td><td><a href="index.php?query=A03AB07&showdescription=yes">Methantheline</a> </td><td align="right">0.15 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB08 </td><td><a href="index.php?query=A03AB08&showdescription=yes">Tridihexethyl</a> </td><td align="right">0.125 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB09 </td><td><a href="index.php?query=A03AB09&showdescription=yes">Isopropamide</a> </td><td align="right">10 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB10 </td><td><a href="index.php?query=A03AB10&showdescription=yes">Hexocyclium</a> </td><td align="right">0.15 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB11 </td><td><a href="index.php?query=A03AB11&showdescription=yes">Poldine</a> </td><td align="right">12 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB12 </td><td><a href="index.php?query=A03AB12&showdescription=yes">Mepenzolate</a> </td><td align="right">0.1 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB13 </td><td><a href="index.php?query=A03AB13&showdescription=yes">Bevonium</a> </td><td align="right">0.2 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB14 </td><td><a href="index.php?query=A03AB14&showdescription=yes">Pipenzolate</a> </td><td align="right">20 </td><td align="right">mg </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB15 </td><td><a href="index.php?query=A03AB15&showdescription=yes">Diphemanil</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB16 </td><td><a href="index.php?query=A03AB16&showdescription=yes">(2-benzhydryloxyethyl)diethyl-methylammonium iodide</a> </td><td align="right">0.3 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A03AB17 </td><td><a href="index.php?query=A03AB17&showdescription=yes">Tiemonium iodide</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB18 </td><td><a href="index.php?query=A03AB18&showdescription=yes">Prifinium bromide</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB19 </td><td><a href="index.php?query=A03AB19&showdescription=yes">Timepidium bromide</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB21 </td><td><a href="index.php?query=A03AB21&showdescription=yes">Fenpiverinium</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr><tr><td>A03AB53 </td><td><a href="index.php?query=A03AB53&showdescription=yes">Oxyphenonium, combinations</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr></table></ul>
|
|
47
|
+
</body>
|
|
48
|
+
</html>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>ATC/DDD</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<p align="right"><a href="index.php">New search</a> <a href="index.php?query=A06AA">Hide text from Guidelines</a> <a href="index.php?logout=true">Log out</a> </p>A <b><a href="index.php?query=A">ALIMENTARY TRACT AND METABOLISM</a></b><br>
|
|
38
|
+
A06 <b><a href="index.php?query=A06">LAXATIVES</a></b><br>
|
|
39
|
+
A06A <b><a href="index.php?query=A06A">LAXATIVES</a></b><br>
|
|
40
|
+
<p>Laxatives are mainly grouped according to their mode of action. All enemas are classified in A06AG, regardless of mode of action. <br><br>Some combination products are classified at separate levels. These are mentioned in the respective ATC group.<br><br>Otherwise combination products are classified at separate 5th levels using the corresponding 50-series. <br><br>Laxatives in combination with centrally acting antiobesity agents are classified in A08A - Antiobesity preparations, excl. diet products.</p><br>
|
|
41
|
+
A06AA <b><a href="index.php?query=A06AA">Softeners, emollients</a></b><br>
|
|
42
|
+
<p>This group comprises preparations containing liquid paraffin, docusate sodium etc. Docusate potassium is classified at the same 5th level as docusate sodium.<br><br>Combinations with contact laxatives are classified in A06AB, except all liquid paraffin combinations, which are classified in A06AA. <br><br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>DDDs for e.g. liquid paraffin and castor oil are given using the following unit: g (gram), (1 g = 1 ml for all practical purposes). Preparations classified in A06AA51 - Liquid paraffin, combinations, are all given the same DDD = 3 UD (15 ml), independent of liquid paraffin concentration.<br>The DDD for docusate is based on dose recommendations for docusate sodium.</td></tr></table></p><br>
|
|
43
|
+
<p><ul><table cellpadding="0" cellspacing="0" border="0">
|
|
44
|
+
<tr><td>ATC code </td><td>Name </td><td>DDD </td><td align="center"> U</td><td> Adm.R</td><td> Note</td></tr>
|
|
45
|
+
<tr><td>A06AA01 </td><td><a href="index.php?query=A06AA01&showdescription=yes">Liquid paraffin</a> </td><td align="right">15 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A06AA02 </td><td><a href="index.php?query=A06AA02&showdescription=yes">Docusate sodium</a> </td><td align="right">0.15 </td><td align="right">g </td><td align="right">O </td><td align="right"></td></tr><tr><td>A06AA51 </td><td><a href="index.php?query=A06AA51&showdescription=yes">Liquid paraffin, combinations</a> </td><td align="right"> </td><td align="right"> </td><td align="right"> </td><td align="right"></td></tr></table></ul>
|
|
46
|
+
</body>
|
|
47
|
+
</html>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>ATC/DDD</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<p align="right"><a href="index.php">New search</a> <a href="index.php?query=C03">Hide text from Guidelines</a> <a href="index.php?logout=true">Log out</a> </p>C <b><a href="index.php?query=C">CARDIOVASCULAR SYSTEM</a></b><br>
|
|
38
|
+
C03 <b><a href="index.php?query=C03">DIURETICS</a></b><br>
|
|
39
|
+
<p>This group comprises diuretics, plain and in combination with potassium or other agents. Potassium-sparing agents are classified in C03D and C03E.<br><br>Combinations with digitalis glycosides, see C01AA.<br><br>Combinations with antihypertensives, see C02L - Antihypertensives and diuretics in combination.<br><br>Combinations with beta blocking agents, see C07B - C07D.<br><br>Combinations with calcium channel blockers, see C08.<br><br>Combinations with agents acting on the renin angiotensin system, see C09B and C09D.<br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>The DDDs for diuretics are based on monotherapy. Most diuretics are used both for the treatment of edema and hypertension in similar doses and the DDDs are therefore based on both indications.<br><br>The DDDs for combinations correspond to the DDD for the diuretic component, except for ATC group C03E, see comments under this level.</td></tr></table></p><br>
|
|
40
|
+
<p>C03A <b><a href="index.php?query=C03A&showdescription=yes">LOW-CEILING DIURETICS, THIAZIDES</a></b><br>
|
|
41
|
+
<p>Combinations with potassium-sparing agents, see C03EA.<br><br><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>The different lipid solubility of the thiazides should be considered when assigning DDDs.</td></tr></table><p>C03B <b><a href="index.php?query=C03B&showdescription=yes">LOW-CEILING DIURETICS, EXCL. THIAZIDES</a></b><br>
|
|
42
|
+
<p>This group comprises all low-ceiling diuretics not classified in C03A.<br><br>Combinations with potassium-sparing agents, see C03EA.<p>C03C <b><a href="index.php?query=C03C&showdescription=yes">HIGH-CEILING DIURETICS</a></b><br>
|
|
43
|
+
<p>This group comprises high-ceiling diuretics (loop-diuretics) e.g. furosemide.<br><br>Combinations with potassium-sparing agents, see C03EB.<p>C03D <b><a href="index.php?query=C03D&showdescription=yes">POTASSIUM-SPARING AGENTS</a></b><br>
|
|
44
|
+
C03E <b><a href="index.php?query=C03E&showdescription=yes">DIURETICS AND POTASSIUM-SPARING AGENTS IN COMBINATION</a></b><br>
|
|
45
|
+
<p><table bgcolor="#cccccc" cellpadding="4" cellspacing="0" border="0"><tr><td>Fixed DDDs are assigned for combinations in this group. <br>E.g. 1 tablet regardless of strengths is the DDD assigned for hydrochlorothiazide and amiloride in combinations. See comments to C02L also.</td></tr></table><p>
|
|
46
|
+
</body>
|
|
47
|
+
</html>
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
3
|
+
|
|
4
|
+
<html>
|
|
5
|
+
<head>
|
|
6
|
+
<title>WHO Collaborating Centre for Drug Statistics Methodology</title>
|
|
7
|
+
|
|
8
|
+
<style type="text/css">
|
|
9
|
+
<!--
|
|
10
|
+
|
|
11
|
+
body,p,td,h1,h2,h3,ol,ul,li,dl,input,a,center,div {font-family: Tahoma, Helvetica, Arial}
|
|
12
|
+
body,p,td,ol,ul,li,dl,input,div.c {font-size: x-small}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
scrollbar-face-color : #554488;
|
|
16
|
+
scrollbar-shadow-color : #333366;
|
|
17
|
+
scrollbar-highlight-color : #8877aa;
|
|
18
|
+
scrollbar-3dlight-color : #9999cc;
|
|
19
|
+
scrollbar-darkshadow-color : #000000;
|
|
20
|
+
scrollbar-track-color : #666699;
|
|
21
|
+
scrollbar-arrow-color : #ccccee
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {color: #000000; font-size: large}
|
|
25
|
+
h3 {color: #554488; font-size: medium}
|
|
26
|
+
h4 {color: #6644aa; font-size: small}
|
|
27
|
+
|
|
28
|
+
a:hover {color:#000099; background:#ccccff; text-decoration: underline}
|
|
29
|
+
|
|
30
|
+
//-->
|
|
31
|
+
</style>
|
|
32
|
+
|
|
33
|
+
</head>
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
<body bgcolor="#ffffff" text="#000000" link="#6633ff" vlink="#993399">
|
|
37
|
+
<h2>Please log in.</h2>
|
|
38
|
+
<form action="index.php" method="post"><table cellpadding="0" cellspacing="0" border="0">
|
|
39
|
+
<tr><td>E-mail:</td><td> <input type="text" name="username" value="" size="20" maxlength="150"></td></tr>
|
|
40
|
+
<tr><td>Password:</td><td> <input type="password" name="password" size="20" maxlength="14"></td></tr>
|
|
41
|
+
<tr><td><input type="submit" value="log in"></td><td></td></tr>
|
|
42
|
+
</table></form>
|
|
43
|
+
|
|
44
|
+
<h3>Welcome to the integrated version of the ATC Index with DDDs and the Guidelines for ATC classification and DDD assignment, January 2007.</h3>
|
|
45
|
+
|
|
46
|
+
<p>This database is available on subscription, only.</p>
|
|
47
|
+
|
|
48
|
+
<p>The database is a useful tool for users of the ATC/DDD system. The search options enable you to find ATC codes and DDDs for specific substances and levels linked to relevant comments in the Guidelines. This is a fast and convenient way to answer your questions.</p>
|
|
49
|
+
|
|
50
|
+
<p>Search options:</p>
|
|
51
|
+
|
|
52
|
+
<ul>
|
|
53
|
+
<li>ATC codes at all levels</li>
|
|
54
|
+
<li>Substance name</li>
|
|
55
|
+
<li>ATC level name</li>
|
|
56
|
+
</ul>
|
|
57
|
+
|
|
58
|
+
<p>The ATC codes are linked to the DDDs and to relevant comments in the Guidelines for each ATC group.</p>
|
|
59
|
+
|
|
60
|
+
<p>A print option (text file) of the two publications is also available on this site.</p>
|
|
61
|
+
|
|
62
|
+
<p>
|
|
63
|
+
The Index and Guidelines are updated annually in January, and are available on a yearly
|
|
64
|
+
subscription basis. The subscription period is from 1 January to 31 December. Price: �200 per
|
|
65
|
+
year. Half price after 1 July.
|
|
66
|
+
</p>
|
|
67
|
+
|
|
68
|
+
<p><a href="../order_form.html">Click here to order!</a></p>
|
|
69
|
+
|
|
70
|
+
<p>Access to the ATC index with DDDs 2007 free of charge (<a href="../indexdatabase/">click here</a>).
|
|
71
|
+
</p>
|
|
72
|
+
|
|
73
|
+
<p> </p>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
</body>
|
|
77
|
+
</html>
|