. ├── app.rb ├── config.ru ├── controller │   ├── drugs.rb │   ├── feedbacks.rb │   ├── init.rb │   ├── main.rb │   └── products.rb ├── data │   ├── dictionaries.bak.yml │   ├── dictionaries.yml │   └── lookandfeels.yml ├── etc │   └── oddb.yml ├── helper │   ├── atc.rb │   ├── blue_form_additions.rb │   ├── document.rb │   ├── dojo.rb │   ├── drug_result.rb │   ├── drug_search.rb │   ├── list.rb │   ├── lookandfeel.rb │   ├── model.rb │   ├── multilingual.rb │   ├── package.rb │   └── validator.rb ├── layout │   ├── default.haml │   └── default.xhtml ├── log │   ├── 2009.tar.bz2 │   ├── 2010.tar.bz2 │   ├── 2011 │   │   └── 01 │   │   ├── 04 │   │   │   ├── access_log │   │   │   └── error_log │   │   ├── 06 │   │   │   ├── access_log │   │   │   └── error_log │   │   ├── 16 │   │   │   └── access_log │   │   ├── 17 │   │   │   └── access_log │   │   ├── 18 │   │   │   └── access_log │   │   ├── 19 │   │   │   └── access_log │   │   └── 20 │   │   └── access_log │   ├── access_log │   └── error_log ├── model │   └── init.rb ├── public │   ├── css │   │   └── screen.css │   ├── dispatch.fcgi │   ├── favicon.ico │   ├── js │   │   └── jquery.js │   ├── ramaze.png │   └── resources │   ├── errors │   │   └── appdown.html │   ├── images │   │   ├── delicious.gif │   │   ├── digg.gif │   │   ├── simpy.gif │   │   └── stumble.gif │   ├── javascript │   │   ├── admin.js │   │   ├── autofill.js │   │   └── opener.js │   ├── livemarks16.png │   └── oddb │   ├── logo.png │   └── oddb.css ├── ramaze.tree.20110120.txt ├── spec │   └── main.rb ├── start.rb └── view ├── drugs │   ├── atc_browser.haml │   ├── compare.haml │   ├── comparison.haml │   ├── ddd_guidelines.haml │   ├── ddd.haml │   ├── empty_result.haml │   ├── fachinfo.haml │   ├── google_ads_468x60.haml │   ├── logo_head.haml │   ├── package.haml │   ├── patinfo.haml │   ├── products.haml │   ├── search_form.haml │   ├── search.haml │   ├── search_result.haml │   ├── search_script.haml │   ├── show_row.haml │   ├── show_table.haml │   └── sort_header.haml ├── feedback.haml ├── google_ads_250x250.haml ├── google_ads_468x60.haml ├── index.haml ├── partial │   ├── feedback.haml │   ├── google_ads_250x250.haml │   ├── google_ads_468x60.haml │   ├── logo_head.haml │   ├── search_form.haml │   ├── search_script.haml │   ├── show_row.haml │   ├── show_table.haml │   └── sort_header.haml ├── search_form.haml └── search_script.haml 28 directories, 92 files