ramaze.ch.oddb.org 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +6 -0
- data/LICENSE +339 -0
- data/Manifest.txt +285 -0
- data/README.txt +45 -0
- data/Rakefile +28 -0
- data/bin/admin +69 -0
- data/bin/exportd +63 -0
- data/bin/migrate +461 -0
- data/bin/oddbd +62 -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/lib/fixes/ruby19.rb +21 -0
- data/lib/fixes/selenium.rb +20 -0
- data/lib/fixes/singular.rb +8 -0
- data/lib/fixes/yaml.rb +13 -0
- data/lib/oddb.rb +11 -0
- data/lib/oddb/business/company.rb +18 -0
- data/lib/oddb/business/invoice.rb +75 -0
- data/lib/oddb/business/price.rb +60 -0
- data/lib/oddb/config.rb +73 -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 +87 -0
- data/lib/oddb/drugs/part.rb +56 -0
- data/lib/oddb/drugs/product.rb +25 -0
- data/lib/oddb/drugs/sequence.rb +61 -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 +89 -0
- data/lib/oddb/export/l10n_sessions.rb +30 -0
- data/lib/oddb/export/rss.rb +44 -0
- data/lib/oddb/export/server.rb +58 -0
- data/lib/oddb/export/xls.rb +119 -0
- data/lib/oddb/export/yaml.rb +123 -0
- data/lib/oddb/html/state/drugs/admin/package.rb +189 -0
- data/lib/oddb/html/state/drugs/admin/product.rb +56 -0
- data/lib/oddb/html/state/drugs/admin/sequence.rb +259 -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/fachinfo.rb +21 -0
- data/lib/oddb/html/state/drugs/feedback.rb +94 -0
- data/lib/oddb/html/state/drugs/global.rb +266 -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 +165 -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 +130 -0
- data/lib/oddb/html/state/paypal/collect.rb +46 -0
- data/lib/oddb/html/state/paypal/redirect.rb +18 -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 +76 -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 +554 -0
- data/lib/oddb/html/util/need_all_input.rb +29 -0
- data/lib/oddb/html/util/session.rb +88 -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 +54 -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 +126 -0
- data/lib/oddb/html/view/drugs/admin/package.rb +237 -0
- data/lib/oddb/html/view/drugs/admin/product.rb +104 -0
- data/lib/oddb/html/view/drugs/admin/sequence.rb +312 -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/fachinfo.rb +46 -0
- data/lib/oddb/html/view/drugs/feedback.rb +231 -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 +398 -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 +84 -0
- data/lib/oddb/html/view/paypal/redirect.rb +51 -0
- data/lib/oddb/html/view/paypal/register_form.rb +106 -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 +54 -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/excel.rb +45 -0
- data/lib/oddb/import/import.rb +39 -0
- data/lib/oddb/import/rtf.rb +410 -0
- data/lib/oddb/import/whocc.rb +173 -0
- data/lib/oddb/import/xml.rb +15 -0
- data/lib/oddb/model.rb +179 -0
- data/lib/oddb/persistence/odba.rb +33 -0
- data/lib/oddb/persistence/odba/business/company.rb +13 -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/regulatory/authority.rb +13 -0
- data/lib/oddb/persistence/odba/regulatory/registration.rb +13 -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/regulatory/authority.rb +14 -0
- data/lib/oddb/regulatory/registration.rb +15 -0
- data/lib/oddb/remote/business/company.rb +23 -0
- data/lib/oddb/remote/drugs/active_agent.rb +27 -0
- data/lib/oddb/remote/drugs/atc.rb +32 -0
- data/lib/oddb/remote/drugs/dose.rb +8 -0
- data/lib/oddb/remote/drugs/galenic_form.rb +25 -0
- data/lib/oddb/remote/drugs/package.rb +126 -0
- data/lib/oddb/remote/drugs/part.rb +30 -0
- data/lib/oddb/remote/drugs/product.rb +19 -0
- data/lib/oddb/remote/drugs/sequence.rb +46 -0
- data/lib/oddb/remote/drugs/substance.rb +20 -0
- data/lib/oddb/remote/drugs/unit.rb +19 -0
- data/lib/oddb/remote/object.rb +36 -0
- data/lib/oddb/remote/text/document.rb +20 -0
- data/lib/oddb/remote/util/m10l_document.rb +22 -0
- data/lib/oddb/text/chapter.rb +27 -0
- data/lib/oddb/text/document.rb +43 -0
- data/lib/oddb/text/format.rb +37 -0
- data/lib/oddb/text/paragraph.rb +58 -0
- data/lib/oddb/text/picture.rb +93 -0
- data/lib/oddb/text/table.rb +68 -0
- data/lib/oddb/util.rb +8 -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/exporter.rb +8 -0
- data/lib/oddb/util/feedback.rb +23 -0
- data/lib/oddb/util/ipn.rb +48 -0
- data/lib/oddb/util/m10l_document.rb +38 -0
- data/lib/oddb/util/mail.rb +73 -0
- data/lib/oddb/util/money.rb +60 -0
- data/lib/oddb/util/multilingual.rb +70 -0
- data/lib/oddb/util/quanty.rb +4 -0
- data/lib/oddb/util/quanty/fact.rb +229 -0
- data/lib/oddb/util/quanty/main.rb +160 -0
- data/lib/oddb/util/quanty/parse.rb +853 -0
- data/lib/oddb/util/quanty/units.dump +0 -0
- data/lib/oddb/util/server.rb +117 -0
- data/lib/oddb/util/updater.rb +41 -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_price.rb +46 -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 +190 -0
- data/test/drugs/test_galenic_form.rb +41 -0
- data/test/drugs/test_package.rb +173 -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 +94 -0
- data/test/export/test_server.rb +117 -0
- data/test/export/test_xls.rb +152 -0
- data/test/export/test_yaml.rb +120 -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/xml/ATC_2006.xml +47 -0
- data/test/import/data/xml/ATC_2006_ddd.xml +35 -0
- data/test/import/test_excel.rb +34 -0
- data/test/import/test_rtf.rb +40 -0
- data/test/import/test_whocc.rb +315 -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 +122 -0
- data/test/selenium/test_atc_guidelines.rb +96 -0
- data/test/selenium/test_collect.rb +138 -0
- data/test/selenium/test_compare.rb +206 -0
- data/test/selenium/test_fachinfo.rb +130 -0
- data/test/selenium/test_feedback.rb +196 -0
- data/test/selenium/test_init.rb +52 -0
- data/test/selenium/test_limit.rb +305 -0
- data/test/selenium/test_login.rb +67 -0
- data/test/selenium/test_package.rb +512 -0
- data/test/selenium/test_patinfo.rb +131 -0
- data/test/selenium/test_product.rb +80 -0
- data/test/selenium/test_products.rb +142 -0
- data/test/selenium/test_search.rb +715 -0
- data/test/selenium/test_sequence.rb +543 -0
- data/test/selenium/unit.rb +185 -0
- data/test/stub/http_server.rb +169 -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 +86 -0
- data/test/util/test_multilingual.rb +97 -0
- data/test/util/test_server.rb +48 -0
- data/test/util/test_updater.rb +353 -0
- data/test/util/test_ydim.rb +115 -0
- data/test/util/test_yus.rb +79 -0
- metadata +418 -0
@@ -0,0 +1,79 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Util::TestYus -- de.oddb.org -- 01.02.2008 -- hwyss@ywesee.com
|
3
|
+
|
4
|
+
|
5
|
+
$: << File.expand_path('../../lib', File.dirname(__FILE__))
|
6
|
+
|
7
|
+
require 'flexmock'
|
8
|
+
require 'test/unit'
|
9
|
+
require 'oddb/config'
|
10
|
+
require 'oddb/util/yus'
|
11
|
+
|
12
|
+
module ODDB
|
13
|
+
module Util
|
14
|
+
class TestYus < Test::Unit::TestCase
|
15
|
+
include FlexMock::TestCase
|
16
|
+
def setup
|
17
|
+
@yus = flexmock('yus')
|
18
|
+
@remote = DRb.start_service('druby://localhost:0', @yus)
|
19
|
+
ODDB.config.auth_server = @remote.uri
|
20
|
+
ODDB.server = flexmock('server')
|
21
|
+
@session = setup_autosession
|
22
|
+
super
|
23
|
+
end
|
24
|
+
def teardown
|
25
|
+
@remote.stop_service
|
26
|
+
super
|
27
|
+
end
|
28
|
+
def setup_autosession
|
29
|
+
session = flexmock('session')
|
30
|
+
@yus.should_receive(:autosession).and_return { |domain, block|
|
31
|
+
assert_equal 'org.oddb.de', domain
|
32
|
+
block.call session
|
33
|
+
}
|
34
|
+
session
|
35
|
+
end
|
36
|
+
def test_create_user
|
37
|
+
@session.should_receive(:create_entity).with('test@email.com', 'password')
|
38
|
+
ODDB.server.should_receive(:login).with('test@email.com', 'password')
|
39
|
+
Yus.create_user('test@email.com', 'password')
|
40
|
+
end
|
41
|
+
def test_get_preference
|
42
|
+
@session.should_receive(:get_entity_preference)\
|
43
|
+
.with('test@email.com', :name_last).and_return 'Test'
|
44
|
+
assert_equal 'Test', Yus.get_preference('test@email.com', :name_last)
|
45
|
+
end
|
46
|
+
def test_get_preference__fails
|
47
|
+
@session.should_receive(:get_entity_preference).and_return {
|
48
|
+
raise ::Yus::YusError
|
49
|
+
}
|
50
|
+
assert_nil Yus.get_preference('test@email.com', :name_last)
|
51
|
+
end
|
52
|
+
def test_get_preferences
|
53
|
+
expected = {
|
54
|
+
:name_first => 'Fritz',
|
55
|
+
:name_last => 'Test',
|
56
|
+
}
|
57
|
+
@session.should_receive(:get_entity_preferences)\
|
58
|
+
.with('test@email.com', [:name_last, :name_first]).and_return expected
|
59
|
+
assert_equal expected,
|
60
|
+
Yus.get_preferences('test@email.com', :name_last, :name_first)
|
61
|
+
end
|
62
|
+
def test_get_preferences__fails
|
63
|
+
@session.should_receive(:get_entity_preferences).and_return {
|
64
|
+
raise ::Yus::YusError
|
65
|
+
}
|
66
|
+
assert_equal({}, Yus.get_preferences('test@email.com', :name_last))
|
67
|
+
end
|
68
|
+
def test_grant
|
69
|
+
@session.should_receive(:grant).with('test@email.com', 'view', 'de.oddb.org', nil)
|
70
|
+
Yus.grant('test@email.com', 'view', 'de.oddb.org')
|
71
|
+
end
|
72
|
+
def test_set_preference
|
73
|
+
@session.should_receive(:set_entity_preference)\
|
74
|
+
.with('test@email.com', :name_last, 'Test', 'org.oddb.de')
|
75
|
+
Yus.set_preference('test@email.com', :name_last, 'Test', 'org.oddb.de')
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
metadata
ADDED
@@ -0,0 +1,418 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ramaze.ch.oddb.org
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
version: 1.0.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-01-25 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: hoe
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 47
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 8
|
33
|
+
- 0
|
34
|
+
version: 2.8.0
|
35
|
+
type: :development
|
36
|
+
version_requirements: *id001
|
37
|
+
description: "* ch.oddb.org running on Ramaze"
|
38
|
+
email:
|
39
|
+
- mhatakeyama@ywesee.com, zdavatz@ywesee.com
|
40
|
+
executables:
|
41
|
+
- admin
|
42
|
+
- exportd
|
43
|
+
- migrate
|
44
|
+
- oddbd
|
45
|
+
extensions: []
|
46
|
+
|
47
|
+
extra_rdoc_files:
|
48
|
+
- History.txt
|
49
|
+
- Manifest.txt
|
50
|
+
- README.txt
|
51
|
+
files:
|
52
|
+
- History.txt
|
53
|
+
- LICENSE
|
54
|
+
- Manifest.txt
|
55
|
+
- README.txt
|
56
|
+
- Rakefile
|
57
|
+
- bin/admin
|
58
|
+
- bin/exportd
|
59
|
+
- bin/migrate
|
60
|
+
- bin/oddbd
|
61
|
+
- data/fulltext/data/dicts/french/fulltext.aff
|
62
|
+
- data/fulltext/data/dicts/french/fulltext.dict
|
63
|
+
- data/fulltext/data/dicts/french/fulltext.stop
|
64
|
+
- data/fulltext/data/dicts/german/fulltext.aff
|
65
|
+
- data/fulltext/data/dicts/german/fulltext.dict
|
66
|
+
- data/fulltext/data/dicts/german/fulltext.stop
|
67
|
+
- data/fulltext/data/german_compound/README
|
68
|
+
- data/fulltext/data/german_compound/compound.pl
|
69
|
+
- data/fulltext/data/german_compound/german.stop
|
70
|
+
- data/fulltext/data/ispell-german-compound.tar.gz
|
71
|
+
- data/fulltext/redist/dict_french/Makefile
|
72
|
+
- data/fulltext/redist/dict_french/README.french
|
73
|
+
- data/fulltext/redist/dict_french/dict_french.sql.in
|
74
|
+
- data/fulltext/redist/dict_french/dict_snowball.c
|
75
|
+
- data/fulltext/redist/dict_french/french_stem.c
|
76
|
+
- data/fulltext/redist/dict_french/french_stem.h
|
77
|
+
- data/fulltext/redist/dict_french/subinclude.h
|
78
|
+
- data/fulltext/redist/dict_german/Makefile
|
79
|
+
- data/fulltext/redist/dict_german/README.german
|
80
|
+
- data/fulltext/redist/dict_german/dict_german.sql.in
|
81
|
+
- data/fulltext/redist/dict_german/dict_snowball.c
|
82
|
+
- data/fulltext/redist/dict_german/german_stem.c
|
83
|
+
- data/fulltext/redist/dict_german/german_stem.h
|
84
|
+
- data/fulltext/redist/dict_german/subinclude.h
|
85
|
+
- data/fulltext/redist/french_stem.c
|
86
|
+
- data/fulltext/redist/french_stem.h
|
87
|
+
- data/fulltext/redist/german_stem.c
|
88
|
+
- data/fulltext/redist/german_stem.h
|
89
|
+
- lib/fixes/ruby19.rb
|
90
|
+
- lib/fixes/selenium.rb
|
91
|
+
- lib/fixes/singular.rb
|
92
|
+
- lib/fixes/yaml.rb
|
93
|
+
- lib/oddb.rb
|
94
|
+
- lib/oddb/business/company.rb
|
95
|
+
- lib/oddb/business/invoice.rb
|
96
|
+
- lib/oddb/business/price.rb
|
97
|
+
- lib/oddb/config.rb
|
98
|
+
- lib/oddb/drugs.rb
|
99
|
+
- lib/oddb/drugs/active_agent.rb
|
100
|
+
- lib/oddb/drugs/atc.rb
|
101
|
+
- lib/oddb/drugs/composition.rb
|
102
|
+
- lib/oddb/drugs/ddd.rb
|
103
|
+
- lib/oddb/drugs/dose.rb
|
104
|
+
- lib/oddb/drugs/galenic_form.rb
|
105
|
+
- lib/oddb/drugs/galenic_group.rb
|
106
|
+
- lib/oddb/drugs/package.rb
|
107
|
+
- lib/oddb/drugs/part.rb
|
108
|
+
- lib/oddb/drugs/product.rb
|
109
|
+
- lib/oddb/drugs/sequence.rb
|
110
|
+
- lib/oddb/drugs/substance.rb
|
111
|
+
- lib/oddb/drugs/substance_group.rb
|
112
|
+
- lib/oddb/drugs/unit.rb
|
113
|
+
- lib/oddb/export.rb
|
114
|
+
- lib/oddb/export/csv.rb
|
115
|
+
- lib/oddb/export/l10n_sessions.rb
|
116
|
+
- lib/oddb/export/rss.rb
|
117
|
+
- lib/oddb/export/server.rb
|
118
|
+
- lib/oddb/export/xls.rb
|
119
|
+
- lib/oddb/export/yaml.rb
|
120
|
+
- lib/oddb/html/state/drugs/admin/package.rb
|
121
|
+
- lib/oddb/html/state/drugs/admin/product.rb
|
122
|
+
- lib/oddb/html/state/drugs/admin/sequence.rb
|
123
|
+
- lib/oddb/html/state/drugs/ajax/explain_ddd_price.rb
|
124
|
+
- lib/oddb/html/state/drugs/ajax/explain_price.rb
|
125
|
+
- lib/oddb/html/state/drugs/ajax/global.rb
|
126
|
+
- lib/oddb/html/state/drugs/ajax/package_infos.rb
|
127
|
+
- lib/oddb/html/state/drugs/ajax/remote_infos.rb
|
128
|
+
- lib/oddb/html/state/drugs/atc_browser.rb
|
129
|
+
- lib/oddb/html/state/drugs/atc_guidelines.rb
|
130
|
+
- lib/oddb/html/state/drugs/compare.rb
|
131
|
+
- lib/oddb/html/state/drugs/download_export.rb
|
132
|
+
- lib/oddb/html/state/drugs/fachinfo.rb
|
133
|
+
- lib/oddb/html/state/drugs/feedback.rb
|
134
|
+
- lib/oddb/html/state/drugs/global.rb
|
135
|
+
- lib/oddb/html/state/drugs/init.rb
|
136
|
+
- lib/oddb/html/state/drugs/login.rb
|
137
|
+
- lib/oddb/html/state/drugs/package.rb
|
138
|
+
- lib/oddb/html/state/drugs/patinfo.rb
|
139
|
+
- lib/oddb/html/state/drugs/products.rb
|
140
|
+
- lib/oddb/html/state/drugs/result.rb
|
141
|
+
- lib/oddb/html/state/global.rb
|
142
|
+
- lib/oddb/html/state/global_predefine.rb
|
143
|
+
- lib/oddb/html/state/limit.rb
|
144
|
+
- lib/oddb/html/state/login.rb
|
145
|
+
- lib/oddb/html/state/paypal/checkout.rb
|
146
|
+
- lib/oddb/html/state/paypal/collect.rb
|
147
|
+
- lib/oddb/html/state/paypal/redirect.rb
|
148
|
+
- lib/oddb/html/state/register_export.rb
|
149
|
+
- lib/oddb/html/state/register_poweruser.rb
|
150
|
+
- lib/oddb/html/state/viral/admin.rb
|
151
|
+
- lib/oddb/html/state/viral/poweruser.rb
|
152
|
+
- lib/oddb/html/util/annotated_list.rb
|
153
|
+
- lib/oddb/html/util/know_it_all.rb
|
154
|
+
- lib/oddb/html/util/known_user.rb
|
155
|
+
- lib/oddb/html/util/lookandfeel.rb
|
156
|
+
- lib/oddb/html/util/need_all_input.rb
|
157
|
+
- lib/oddb/html/util/session.rb
|
158
|
+
- lib/oddb/html/util/sort.rb
|
159
|
+
- lib/oddb/html/util/unsaved_helper.rb
|
160
|
+
- lib/oddb/html/util/validator.rb
|
161
|
+
- lib/oddb/html/view/ajax/json.rb
|
162
|
+
- lib/oddb/html/view/alpha_header.rb
|
163
|
+
- lib/oddb/html/view/document.rb
|
164
|
+
- lib/oddb/html/view/drugs/admin/package.rb
|
165
|
+
- lib/oddb/html/view/drugs/admin/product.rb
|
166
|
+
- lib/oddb/html/view/drugs/admin/sequence.rb
|
167
|
+
- lib/oddb/html/view/drugs/ajax/explain_ddd_price.rb
|
168
|
+
- lib/oddb/html/view/drugs/ajax/explain_price.rb
|
169
|
+
- lib/oddb/html/view/drugs/ajax/package_infos.rb
|
170
|
+
- lib/oddb/html/view/drugs/ajax/remote_infos.rb
|
171
|
+
- lib/oddb/html/view/drugs/atc_browser.rb
|
172
|
+
- lib/oddb/html/view/drugs/atc_guidelines.rb
|
173
|
+
- lib/oddb/html/view/drugs/compare.rb
|
174
|
+
- lib/oddb/html/view/drugs/download_export.rb
|
175
|
+
- lib/oddb/html/view/drugs/fachinfo.rb
|
176
|
+
- lib/oddb/html/view/drugs/feedback.rb
|
177
|
+
- lib/oddb/html/view/drugs/init.rb
|
178
|
+
- lib/oddb/html/view/drugs/legend.rb
|
179
|
+
- lib/oddb/html/view/drugs/package.rb
|
180
|
+
- lib/oddb/html/view/drugs/patinfo.rb
|
181
|
+
- lib/oddb/html/view/drugs/products.rb
|
182
|
+
- lib/oddb/html/view/drugs/result.rb
|
183
|
+
- lib/oddb/html/view/drugs/search.rb
|
184
|
+
- lib/oddb/html/view/drugs/template.rb
|
185
|
+
- lib/oddb/html/view/foot.rb
|
186
|
+
- lib/oddb/html/view/google.rb
|
187
|
+
- lib/oddb/html/view/google_ads.rb
|
188
|
+
- lib/oddb/html/view/head.rb
|
189
|
+
- lib/oddb/html/view/limit.rb
|
190
|
+
- lib/oddb/html/view/list.rb
|
191
|
+
- lib/oddb/html/view/login.rb
|
192
|
+
- lib/oddb/html/view/navigation.rb
|
193
|
+
- lib/oddb/html/view/offset_header.rb
|
194
|
+
- lib/oddb/html/view/paypal/collect.rb
|
195
|
+
- lib/oddb/html/view/paypal/redirect.rb
|
196
|
+
- lib/oddb/html/view/paypal/register_form.rb
|
197
|
+
- lib/oddb/html/view/register_export.rb
|
198
|
+
- lib/oddb/html/view/register_poweruser.rb
|
199
|
+
- lib/oddb/html/view/rss/feedback.rb
|
200
|
+
- lib/oddb/html/view/rss_preview.rb
|
201
|
+
- lib/oddb/html/view/search.rb
|
202
|
+
- lib/oddb/html/view/snapback.rb
|
203
|
+
- lib/oddb/html/view/template.rb
|
204
|
+
- lib/oddb/import/excel.rb
|
205
|
+
- lib/oddb/import/import.rb
|
206
|
+
- lib/oddb/import/rtf.rb
|
207
|
+
- lib/oddb/import/whocc.rb
|
208
|
+
- lib/oddb/import/xml.rb
|
209
|
+
- lib/oddb/model.rb
|
210
|
+
- lib/oddb/persistence/odba.rb
|
211
|
+
- lib/oddb/persistence/odba/business/company.rb
|
212
|
+
- lib/oddb/persistence/odba/business/invoice.rb
|
213
|
+
- lib/oddb/persistence/odba/drugs/atc.rb
|
214
|
+
- lib/oddb/persistence/odba/drugs/galenic_form.rb
|
215
|
+
- lib/oddb/persistence/odba/drugs/galenic_group.rb
|
216
|
+
- lib/oddb/persistence/odba/drugs/package.rb
|
217
|
+
- lib/oddb/persistence/odba/drugs/product.rb
|
218
|
+
- lib/oddb/persistence/odba/drugs/sequence.rb
|
219
|
+
- lib/oddb/persistence/odba/drugs/substance.rb
|
220
|
+
- lib/oddb/persistence/odba/drugs/substance_group.rb
|
221
|
+
- lib/oddb/persistence/odba/drugs/unit.rb
|
222
|
+
- lib/oddb/persistence/odba/export.rb
|
223
|
+
- lib/oddb/persistence/odba/model.rb
|
224
|
+
- lib/oddb/persistence/odba/regulatory/authority.rb
|
225
|
+
- lib/oddb/persistence/odba/regulatory/registration.rb
|
226
|
+
- lib/oddb/persistence/odba/text/document.rb
|
227
|
+
- lib/oddb/persistence/odba/util/code.rb
|
228
|
+
- lib/oddb/persistence/odba/util/m10l_document.rb
|
229
|
+
- lib/oddb/persistence/og.rb
|
230
|
+
- lib/oddb/persistence/og/drugs/composition.rb
|
231
|
+
- lib/oddb/persistence/og/drugs/product.rb
|
232
|
+
- lib/oddb/persistence/og/drugs/sequence.rb
|
233
|
+
- lib/oddb/persistence/og/model.rb
|
234
|
+
- lib/oddb/persistence/og/util/multilingual.rb
|
235
|
+
- lib/oddb/redist/rtf_tools/reader.rb
|
236
|
+
- lib/oddb/regulatory/authority.rb
|
237
|
+
- lib/oddb/regulatory/registration.rb
|
238
|
+
- lib/oddb/remote/business/company.rb
|
239
|
+
- lib/oddb/remote/drugs/active_agent.rb
|
240
|
+
- lib/oddb/remote/drugs/atc.rb
|
241
|
+
- lib/oddb/remote/drugs/dose.rb
|
242
|
+
- lib/oddb/remote/drugs/galenic_form.rb
|
243
|
+
- lib/oddb/remote/drugs/package.rb
|
244
|
+
- lib/oddb/remote/drugs/part.rb
|
245
|
+
- lib/oddb/remote/drugs/product.rb
|
246
|
+
- lib/oddb/remote/drugs/sequence.rb
|
247
|
+
- lib/oddb/remote/drugs/substance.rb
|
248
|
+
- lib/oddb/remote/drugs/unit.rb
|
249
|
+
- lib/oddb/remote/object.rb
|
250
|
+
- lib/oddb/remote/text/document.rb
|
251
|
+
- lib/oddb/remote/util/m10l_document.rb
|
252
|
+
- lib/oddb/text/chapter.rb
|
253
|
+
- lib/oddb/text/document.rb
|
254
|
+
- lib/oddb/text/format.rb
|
255
|
+
- lib/oddb/text/paragraph.rb
|
256
|
+
- lib/oddb/text/picture.rb
|
257
|
+
- lib/oddb/text/table.rb
|
258
|
+
- lib/oddb/util.rb
|
259
|
+
- lib/oddb/util/annotated_list.rb
|
260
|
+
- lib/oddb/util/code.rb
|
261
|
+
- lib/oddb/util/comparison.rb
|
262
|
+
- lib/oddb/util/exporter.rb
|
263
|
+
- lib/oddb/util/feedback.rb
|
264
|
+
- lib/oddb/util/ipn.rb
|
265
|
+
- lib/oddb/util/m10l_document.rb
|
266
|
+
- lib/oddb/util/mail.rb
|
267
|
+
- lib/oddb/util/money.rb
|
268
|
+
- lib/oddb/util/multilingual.rb
|
269
|
+
- lib/oddb/util/quanty.rb
|
270
|
+
- lib/oddb/util/quanty/fact.rb
|
271
|
+
- lib/oddb/util/quanty/main.rb
|
272
|
+
- lib/oddb/util/quanty/parse.rb
|
273
|
+
- lib/oddb/util/quanty/units.dump
|
274
|
+
- lib/oddb/util/server.rb
|
275
|
+
- lib/oddb/util/updater.rb
|
276
|
+
- lib/oddb/util/ydim.rb
|
277
|
+
- lib/oddb/util/yus.rb
|
278
|
+
- test/business/test_company.rb
|
279
|
+
- test/business/test_price.rb
|
280
|
+
- test/drugs/test_active_agent.rb
|
281
|
+
- test/drugs/test_atc.rb
|
282
|
+
- test/drugs/test_composition.rb
|
283
|
+
- test/drugs/test_ddd.rb
|
284
|
+
- test/drugs/test_dose.rb
|
285
|
+
- test/drugs/test_galenic_form.rb
|
286
|
+
- test/drugs/test_package.rb
|
287
|
+
- test/drugs/test_part.rb
|
288
|
+
- test/drugs/test_product.rb
|
289
|
+
- test/drugs/test_sequence.rb
|
290
|
+
- test/drugs/test_substance.rb
|
291
|
+
- test/drugs/test_substance_group.rb
|
292
|
+
- test/export/test_rss.rb
|
293
|
+
- test/export/test_server.rb
|
294
|
+
- test/export/test_xls.rb
|
295
|
+
- test/export/test_yaml.rb
|
296
|
+
- test/import/data/html/whocc/A.html
|
297
|
+
- test/import/data/html/whocc/A03.html
|
298
|
+
- test/import/data/html/whocc/A03AB.html
|
299
|
+
- test/import/data/html/whocc/A06AA.html
|
300
|
+
- test/import/data/html/whocc/C03.html
|
301
|
+
- test/import/data/html/whocc/login.html
|
302
|
+
- test/import/data/xml/ATC_2006.xml
|
303
|
+
- test/import/data/xml/ATC_2006_ddd.xml
|
304
|
+
- test/import/test_excel.rb
|
305
|
+
- test/import/test_rtf.rb
|
306
|
+
- test/import/test_whocc.rb
|
307
|
+
- test/remote/drugs/test_active_agent.rb
|
308
|
+
- test/selenium/selenium-server.jar
|
309
|
+
- test/selenium/test_atc_browser.rb
|
310
|
+
- test/selenium/test_atc_guidelines.rb
|
311
|
+
- test/selenium/test_collect.rb
|
312
|
+
- test/selenium/test_compare.rb
|
313
|
+
- test/selenium/test_fachinfo.rb
|
314
|
+
- test/selenium/test_feedback.rb
|
315
|
+
- test/selenium/test_init.rb
|
316
|
+
- test/selenium/test_limit.rb
|
317
|
+
- test/selenium/test_login.rb
|
318
|
+
- test/selenium/test_package.rb
|
319
|
+
- test/selenium/test_patinfo.rb
|
320
|
+
- test/selenium/test_product.rb
|
321
|
+
- test/selenium/test_products.rb
|
322
|
+
- test/selenium/test_search.rb
|
323
|
+
- test/selenium/test_sequence.rb
|
324
|
+
- test/selenium/unit.rb
|
325
|
+
- test/stub/http_server.rb
|
326
|
+
- test/stub/model.rb
|
327
|
+
- test/suite.rb
|
328
|
+
- test/test_model.rb
|
329
|
+
- test/util/test_code.rb
|
330
|
+
- test/util/test_ipn.rb
|
331
|
+
- test/util/test_mail.rb
|
332
|
+
- test/util/test_multilingual.rb
|
333
|
+
- test/util/test_server.rb
|
334
|
+
- test/util/test_updater.rb
|
335
|
+
- test/util/test_ydim.rb
|
336
|
+
- test/util/test_yus.rb
|
337
|
+
has_rdoc: true
|
338
|
+
homepage: http://scm.ywesee.com/?p=ch.oddb.org/.git;a=summary
|
339
|
+
licenses: []
|
340
|
+
|
341
|
+
post_install_message:
|
342
|
+
rdoc_options:
|
343
|
+
- --main
|
344
|
+
- README.txt
|
345
|
+
require_paths:
|
346
|
+
- lib
|
347
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
348
|
+
none: false
|
349
|
+
requirements:
|
350
|
+
- - ">="
|
351
|
+
- !ruby/object:Gem::Version
|
352
|
+
hash: 3
|
353
|
+
segments:
|
354
|
+
- 0
|
355
|
+
version: "0"
|
356
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
357
|
+
none: false
|
358
|
+
requirements:
|
359
|
+
- - ">="
|
360
|
+
- !ruby/object:Gem::Version
|
361
|
+
hash: 3
|
362
|
+
segments:
|
363
|
+
- 0
|
364
|
+
version: "0"
|
365
|
+
requirements: []
|
366
|
+
|
367
|
+
rubyforge_project: ramaze.ch.oddb.org
|
368
|
+
rubygems_version: 1.4.2
|
369
|
+
signing_key:
|
370
|
+
specification_version: 3
|
371
|
+
summary: "* ch.oddb.org running on Ramaze"
|
372
|
+
test_files:
|
373
|
+
- test/business/test_company.rb
|
374
|
+
- test/business/test_price.rb
|
375
|
+
- test/drugs/test_active_agent.rb
|
376
|
+
- test/drugs/test_atc.rb
|
377
|
+
- test/drugs/test_composition.rb
|
378
|
+
- test/drugs/test_ddd.rb
|
379
|
+
- test/drugs/test_dose.rb
|
380
|
+
- test/drugs/test_galenic_form.rb
|
381
|
+
- test/drugs/test_package.rb
|
382
|
+
- test/drugs/test_part.rb
|
383
|
+
- test/drugs/test_product.rb
|
384
|
+
- test/drugs/test_sequence.rb
|
385
|
+
- test/drugs/test_substance.rb
|
386
|
+
- test/drugs/test_substance_group.rb
|
387
|
+
- test/export/test_rss.rb
|
388
|
+
- test/export/test_server.rb
|
389
|
+
- test/export/test_xls.rb
|
390
|
+
- test/export/test_yaml.rb
|
391
|
+
- test/import/test_excel.rb
|
392
|
+
- test/import/test_rtf.rb
|
393
|
+
- test/import/test_whocc.rb
|
394
|
+
- test/remote/drugs/test_active_agent.rb
|
395
|
+
- test/selenium/test_atc_browser.rb
|
396
|
+
- test/selenium/test_atc_guidelines.rb
|
397
|
+
- test/selenium/test_collect.rb
|
398
|
+
- test/selenium/test_compare.rb
|
399
|
+
- test/selenium/test_fachinfo.rb
|
400
|
+
- test/selenium/test_feedback.rb
|
401
|
+
- test/selenium/test_init.rb
|
402
|
+
- test/selenium/test_limit.rb
|
403
|
+
- test/selenium/test_login.rb
|
404
|
+
- test/selenium/test_package.rb
|
405
|
+
- test/selenium/test_patinfo.rb
|
406
|
+
- test/selenium/test_product.rb
|
407
|
+
- test/selenium/test_products.rb
|
408
|
+
- test/selenium/test_search.rb
|
409
|
+
- test/selenium/test_sequence.rb
|
410
|
+
- test/test_model.rb
|
411
|
+
- test/util/test_code.rb
|
412
|
+
- test/util/test_ipn.rb
|
413
|
+
- test/util/test_mail.rb
|
414
|
+
- test/util/test_multilingual.rb
|
415
|
+
- test/util/test_server.rb
|
416
|
+
- test/util/test_updater.rb
|
417
|
+
- test/util/test_ydim.rb
|
418
|
+
- test/util/test_yus.rb
|