rtml 1.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +396 -0
- data/PostInstall.txt +2 -0
- data/README.rdoc +42 -0
- data/Rakefile +33 -0
- data/app_generators/rtml/USAGE +5 -0
- data/app_generators/rtml/rtml_generator.rb +78 -0
- data/app_generators/rtml/templates/rails_template.rb +36 -0
- data/app_generators/rtml/templates/rtml/MIT-LICENSE +20 -0
- data/app_generators/rtml/templates/rtml/README +109 -0
- data/app_generators/rtml/templates/rtml/Rakefile +38 -0
- data/app_generators/rtml/templates/rtml/app/controllers/beryl_controller.rb +70 -0
- data/app_generators/rtml/templates/rtml/app/controllers/rtml/magcard_demo_controller.rb +9 -0
- data/app_generators/rtml/templates/rtml/app/controllers/rtml/oe/btmlpa_controller.rb +158 -0
- data/app_generators/rtml/templates/rtml/app/controllers/rtml/rtml_app_controller.rb +252 -0
- data/app_generators/rtml/templates/rtml/app/controllers/rtml/tml_app_controller.rb +418 -0
- data/app_generators/rtml/templates/rtml/app/helpers/beryl_helper.rb +72 -0
- data/app_generators/rtml/templates/rtml/app/helpers/beryl_tml_helpers/auth_result.rb +56 -0
- data/app_generators/rtml/templates/rtml/app/helpers/beryl_tml_helpers/common.rb +19 -0
- data/app_generators/rtml/templates/rtml/app/helpers/beryl_tml_helpers/index.rb +82 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/magcard_demo_helper.rb +2 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/magcard_demo_tml_helpers/authorized.rb +10 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/magcard_demo_tml_helpers/common.rb +20 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/magcard_demo_tml_helpers/index.rb +33 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_helper.rb +2 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/auth_result.rb +23 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/common.rb +23 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/dynamic.rb +11 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/icc.rb +384 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/index.rb +191 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/oe/btmlpa_tml_helpers/receipt.rb +152 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/rtml_app_helper.rb +74 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/rtml_app_tml_helpers/common.rb +9 -0
- data/app_generators/rtml/templates/rtml/app/helpers/rtml/tml_app_helper.rb +43 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/card.rb +83 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/card_avs.rb +14 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/card_cvv.rb +14 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/card_parser.rb +21 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/card_pin.rb +18 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/emv_card_data.rb +25 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/mag_card_data.rb +21 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/reference_code.rb +26 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/state.rb +12 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/terminal.rb +8 -0
- data/app_generators/rtml/templates/rtml/app/models/rtml/transaction.rb +68 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/auth_result/another_rcpt.rtml.erb +15 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/auth_result/receipt.rtml.erb +108 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/auth_result/receipt_single_column.rtml.erb +106 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/about.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/admin.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/construction.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/idle.rtml.erb +13 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/main_menu.rtml.erb +12 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/menu_credit.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/beryl/index/menu_debit.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/beryl_color.rtml.erb +24 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/beryl_mono.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/magcard_demo_color.rtml.erb +24 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/magcard_demo_mono.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/oe/btmlpa_i5100.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/oe/btmlpa_i8550.rtml.erb +17 -0
- data/app_generators/rtml/templates/rtml/app/views/layouts/rtml/uml.html.erb +11 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/authorized.html.erb +15 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/authorized/main.rtml.erb +5 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/index.html.erb +15 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/index/_error.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/index/enter_amount.rtml.erb +5 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/magcard_demo/index/main.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/dynamic/response.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/icc.rtml.erb +760 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_enter_amount.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_about.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_duplicate.rtml.erb +9 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_examples.rtml.erb +9 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_logo.rtml.erb +11 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_other.rtml.erb +20 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_refund.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_reversal.rtml.erb +9 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_sale.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/_menu_sale_cashback.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/about.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/assert.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/card_nmb.rtml.erb +19 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/compl_txn.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/confirm_rev.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/duplicate_na.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/error_scr.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/main_menu.rtml.bak +31 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/main_menu.rtml.erb +40 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/print_pf.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/rd_sale_disp.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/read_refund.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/read_scb.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/reject_trans.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/remove_card.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/rev_bad.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/scb_check_f.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/sign_check.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/subm_err.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/to_man_entry.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/trans_abrt.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/index/void_trans.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/receipt/_receipt.rtml.erb +29 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/oe/btmlpa/receipt/error_paper.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/rtml_app/_default_development.html.erb +167 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/rtml_app/_default_header.html.erb +12 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/rtml_app/_default_production.html.erb +8 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/rtml_app/charts.html.erb +14 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/tml_app/do_tml_redirect.rtml.erb +7 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/tml_app/get_terminal_info.rtml.erb +26 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/tml_app/rescue_action_in_public.rtml.erb +9 -0
- data/app_generators/rtml/templates/rtml/app/views/rtml/tml_app/rescue_action_locally.rtml.erb +42 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/common.rb +303 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/force.rb +46 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/return.rb +22 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/sale.rb +49 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/_confirmation.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/_receipt_agreement.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/_receipt_footer.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/_receipt_header.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/ask_cashback.rtml.erb +11 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/card_imprint.rtml.erb +7 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/check_cb.rtml.erb +11 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/conf_debit.rtml.erb +5 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/confirm_sale.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/confrm_force.rtml.erb +4 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/cvv_skipped.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/disp_avs.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/do_avs_zip.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/enter_amount.rtml.erb +12 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/enter_card.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/enter_cashbk.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/enter_cvv2.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/enter_expiry.rtml.erb +9 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/fraud_check1.rtml.erb +6 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/fraud_check2.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/frc_aprvl.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/frc_avs_zip.rtml.erb +8 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/frc_bad_aprv.rtml.erb +5 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/frd_chk_fail.rtml.erb +5 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/invalid_exp.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/no_entr_crd.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/remove_card.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/swipe_card.rtml.erb +7 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/trans_abort.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/trans_reject.rtml.erb +1 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/views/void_ref.rtml.erb +10 -0
- data/app_generators/rtml/templates/rtml/components/rtml/features/void.rb +30 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/card_parser_widget.rb +90 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/display_widget.rb +66 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/element_builder_widget.rb +123 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/emv_support_widget.rb +365 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/form_submit_widget.rb +65 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/get_transaction_variables_widget.rb +33 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/get_variable_widget.rb +39 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/receipt_widget.rb +66 -0
- data/app_generators/rtml/templates/rtml/components/rtml/widgets/screen_builder_widget.rb +49 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825132217_create_rtml_states.rb +15 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825132401_create_rtml_terminals.rb +16 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825132530_create_rtml_transactions.rb +24 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825134118_create_rtml_cards.rb +23 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825134622_create_rtml_emv_card_data.rb +20 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825134629_create_rtml_mag_card_data.rb +17 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090825135838_create_rtml_card_parsers.rb +19 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090826103509_create_reference_codes.rb +14 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090915030044_add_batch_to_rtml_transactions.rb +10 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090915031155_add_additional_data_to_rtml_transactions.rb +10 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20090915031156_add_hidden_data_to_rtml_transactions.rb +10 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20091016133313_create_rtml_card_avs.rb +16 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20091016135800_create_rtml_card_cvvs.rb +16 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20091016135810_create_rtml_card_pins.rb +16 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20091016135820_reverse_card_transaction_relationship.rb +11 -0
- data/app_generators/rtml/templates/rtml/db/migrate/20100127115105_convert_rtml_migrations_to_rails_migrations.rb +31 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/USAGE +25 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/rtml_controller_generator.rb +49 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/common_tml_helper.rb +20 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/controller.rb +3 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/css_color.css +37 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/css_mono.css +12 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/functional_test.rb +11 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/helper.rb +2 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/layout_color.rtml.erb +24 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/layout_mono.rtml.erb +3 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/tml_helper.rb +16 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/view.html.erb +15 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_controller/templates/view.rtml.erb +2 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/USAGE +8 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/rtml_document_generator.rb +45 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/templates/controller.rb +7 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/templates/functional_test.rb +10 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/templates/helper.rb +2 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_document/templates/view.rtml.erb +11 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_widget/USAGE +8 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_widget/rtml_widget_generator.rb +66 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_widget/templates/basic_widget.rb +57 -0
- data/app_generators/rtml/templates/rtml/generators/rtml_widget/templates/basic_widget_no_help.rb +27 -0
- data/app_generators/rtml/templates/rtml/init.rb +40 -0
- data/app_generators/rtml/templates/rtml/install.rb +18 -0
- data/app_generators/rtml/templates/rtml/lib/environment.rb +61 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/action_controller/request.rb +9 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/action_controller/routing/route_set.rb +34 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/action_view/base.rb +74 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/action_view/partial_template.rb +24 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/active_record.rb +13 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/active_support/dependencies.rb +25 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/array.rb +15 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/attr_boolean.rb +10 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/hash.rb +28 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/nil_class.rb +20 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/rake.rb +19 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/regexp.rb +16 -0
- data/app_generators/rtml/templates/rtml/lib/extensions/string.rb +37 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins.rb +23 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/MIT-LICENSE +20 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/README +36 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/Rakefile +44 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/init.rb +25 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/lib/action_controller/filters/before_render_filter.rb +30 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/lib/before_render.rb +43 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/lib/before_render_instance.rb +45 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/lib/filter_chain_has_many_types_of_filters.rb +87 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/lib/filter_has_before_render.rb +26 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/tasks/before_render_tasks.rake +25 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/test/before_render_test.rb +29 -0
- data/app_generators/rtml/templates/rtml/lib/other_plugins/before_render/test/test_helper.rb +24 -0
- data/app_generators/rtml/templates/rtml/lib/rtml.rb +77 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/beryl/constants.rb +12 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/beryl/version.rb +11 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/common/renderable.rb +13 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/include.rb +30 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/layout.rb +59 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/next.rb +188 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/screen.rb +91 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/screen/iterators.rb +63 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/screen/next_screen_methods.rb +70 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/screen/variable_methods.rb +73 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/support/importer.rb +55 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/tml_document.rb +318 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/tml_document/screen_methods.rb +79 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/tml_document/variable_methods.rb +83 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/core/variable.rb +123 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/debug/browser_emulator.rb +59 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/debug/rtml_controller_test_case.rb +7 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/debug/rtml_core_unit_test.rb +11 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/debug/unit_test.rb +3 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/delegation.rb +8 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/doc.rb +12 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/element.rb +75 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/errors/widget_accessor_failure.rb +9 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/events/event_handler.rb +79 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/events/event_processor.rb +106 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/events/processors.rb +10 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/events/processors/defaults_processor.rb +18 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/events/processors/key_processor.rb +21 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/feature.rb +32 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/feature_config.rb +195 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/features.rb +18 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/features/array_of_feature_instances.rb +17 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/features/controller_class_methods.rb +30 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/features/controller_instance_methods.rb +35 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers.rb +21 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/controller_helpers.rb +59 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/controller_helpers/menu_helpers.rb +193 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/action_view_wrapper.rb +23 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/event_helpers.rb +28 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/layout_helpers.rb +47 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/widget_support.rb +181 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/widget_support/class_methods.rb +28 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/core_helpers/yield_helpers.rb +33 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/proxy_helpers/feature_helpers.rb +17 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/render_helper.rb +71 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/terminal_helpers.rb +21 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/test_helpers.rb +6 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/test_helpers/tml_validation_assertions.rb +10 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/test_helpers/variable_assertions.rb +27 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/view_helpers/form_helpers.rb +70 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/helpers/view_helpers/rtml_form_builder.rb +174 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/oe/btmlpa_constants.rb +48 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/proxying/method_missing_methods.rb +14 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/proxying/rtml_interface.rb +33 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/proxying/sandbox.rb +18 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/text_utils.rb +51 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/tml_param_parser.rb +95 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/validation/dom_rule_parser.rb +61 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/validation/dom_tag.rb +52 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/validation/predefined_variable_rule_parser.rb +97 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/validation/tml_validator.rb +16 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/version.rb +11 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/widgets/property.rb +11 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/widgets/property_accessors.rb +59 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/widgets/widget.rb +251 -0
- data/app_generators/rtml/templates/rtml/lib/rtml/widgets/widget_class_methods.rb +213 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/dot.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_can.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_cand.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_en.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_end.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_i.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_icd.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_icl.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_icr.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_ics.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_icsw.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_icv.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_int.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_int2.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_men.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_mend.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_next.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_no.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_nod.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_ok.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_okd.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_pic1.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_pic2.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_pic3.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_pic4.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_top.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_txn.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_yes.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/btmlpa/nbg_yesd.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/btmlpa.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/can_dn.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/can_up.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/conf.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/iccemv.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/images.lib +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/magcard.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/no_dn.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/no_up.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/ok_dn.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/ok_up.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/top.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/yes_dn.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/images/rtml/oe/examples/yes_up.gif +0 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/beryl_color.css +37 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/beryl_mono.css +17 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/charts.css +0 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/oe/btmlpa/i5100.css +12 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/oe/btmlpa/i8550.css +37 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/oe/btmlpa/receipt.css +4 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/oe/examples/i5100.css +12 -0
- data/app_generators/rtml/templates/rtml/public/stylesheets/rtml/oe/examples/i8550.css +37 -0
- data/app_generators/rtml/templates/rtml/reporting/110409 +227 -0
- data/app_generators/rtml/templates/rtml/reporting/linecount.rb +42 -0
- data/app_generators/rtml/templates/rtml/rules/predefined_tml_variables.rb +63 -0
- data/app_generators/rtml/templates/rtml/rules/tml_document_structure.rb +84 -0
- data/app_generators/rtml/templates/rtml/rules/varns/audio.rb +30 -0
- data/app_generators/rtml/templates/rtml/rules/varns/card.rb +17 -0
- data/app_generators/rtml/templates/rtml/rules/varns/card/emv.rb +31 -0
- data/app_generators/rtml/templates/rtml/rules/varns/card/mag.rb +8 -0
- data/app_generators/rtml/templates/rtml/rules/varns/card/parser.rb +7 -0
- data/app_generators/rtml/templates/rtml/rules/varns/card/pin.rb +6 -0
- data/app_generators/rtml/templates/rtml/rules/varns/cfgm.rb +15 -0
- data/app_generators/rtml/templates/rtml/rules/varns/com.rb +9 -0
- data/app_generators/rtml/templates/rtml/rules/varns/err.rb +14 -0
- data/app_generators/rtml/templates/rtml/rules/varns/gma/event.rb +13 -0
- data/app_generators/rtml/templates/rtml/rules/varns/gprs.rb +8 -0
- data/app_generators/rtml/templates/rtml/rules/varns/imager.rb +8 -0
- data/app_generators/rtml/templates/rtml/rules/varns/ip.rb +15 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr.rb +42 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/3rdparty.rb +7 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/backlight.rb +4 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/cache.rb +1 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/connect.rb +5 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/connection.rb +5 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oebr/offline.rb +5 -0
- data/app_generators/rtml/templates/rtml/rules/varns/oegw.rb +12 -0
- data/app_generators/rtml/templates/rtml/rules/varns/payment.rb +21 -0
- data/app_generators/rtml/templates/rtml/rules/varns/ppp.rb +11 -0
- data/app_generators/rtml/templates/rtml/rules/varns/terminal.rb +29 -0
- data/app_generators/rtml/templates/rtml/tasks/rtml_tasks.rake +78 -0
- data/app_generators/rtml/templates/rtml/template.rb +64 -0
- data/app_generators/rtml/templates/rtml/test/core/element_test.rb +17 -0
- data/app_generators/rtml/templates/rtml/test/core/screen_test.rb +91 -0
- data/app_generators/rtml/templates/rtml/test/core/tml_document_test.rb +53 -0
- data/app_generators/rtml/templates/rtml/test/functional/beryl_controller_test.rb +13 -0
- data/app_generators/rtml/templates/rtml/test/functional/btmlpa_controller_test.rb +13 -0
- data/app_generators/rtml/templates/rtml/test/functional/magcard_demo_controller_test.rb +20 -0
- data/app_generators/rtml/templates/rtml/test/functional/rtml_app_controller_test.rb +9 -0
- data/app_generators/rtml/templates/rtml/test/functional/rtml_routing_test.rb +19 -0
- data/app_generators/rtml/templates/rtml/test/functional/tml_controller_params_test.rb +20 -0
- data/app_generators/rtml/templates/rtml/test/rtml_test_helper.rb +44 -0
- data/app_generators/rtml/templates/rtml/test/validation/predefined_variable_rule_parser_test.rb +11 -0
- data/app_generators/rtml/templates/rtml/uninstall.rb +1 -0
- data/app_generators/rtml/templates/rtml/update.rb +57 -0
- data/bin/rtml +36 -0
- data/lib/rtml.rb +4 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/tasks/reglob.rake +28 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +3 -0
- data/test/test_rtml.rb +11 -0
- data/test/test_rtml_generator.rb +43 -0
- metadata +516 -0
@@ -0,0 +1,213 @@
|
|
1
|
+
module Rtml::Widgets::WidgetClassMethods
|
2
|
+
@@accessor_aliases = { }
|
3
|
+
@@accessor_lists = { }
|
4
|
+
@@property_callbacks = { }
|
5
|
+
@@legal_accessors = [ Rtml::Core::Screen,
|
6
|
+
Rtml::Core::TMLDocument, Rtml::Widgets::Widget ]
|
7
|
+
|
8
|
+
# Creates a Property for this Widget. Each argument in the
|
9
|
+
# method call should be the name of the argument to be created.
|
10
|
+
# You can also pass a callback method name, in the form of a hash
|
11
|
+
# (:property_name => :callback_name), which will be called whenever
|
12
|
+
# a value is assigned to the property. The return value from that
|
13
|
+
# callback will be the value that is finally assigned to the property.
|
14
|
+
#
|
15
|
+
# You can also pass an array of callbacks. They will be called in order,
|
16
|
+
# and each subsequent callback will be called with the value returned
|
17
|
+
# from the one before it. When all callbacks have fired, the final value
|
18
|
+
# will be assigned to the property.
|
19
|
+
#
|
20
|
+
# See also #init_properties
|
21
|
+
#
|
22
|
+
# Examples:
|
23
|
+
# property :first_name, :last_name
|
24
|
+
# property :zip_code => :force_integer
|
25
|
+
# property :state => [ :force_uppercase, :check_valid_state ]
|
26
|
+
#
|
27
|
+
def property(*props)
|
28
|
+
props.each do |prop|
|
29
|
+
prop = { prop => nil } unless prop.kind_of? Hash # Give it a nil callback if it needs one
|
30
|
+
prop.each do |prop_name, callback|
|
31
|
+
callbacks = add_callback_for prop_name, callback
|
32
|
+
|
33
|
+
raise "Cannot create property #{prop_name}: method already exists!" if self.instance_methods.include? prop_name.to_s
|
34
|
+
|
35
|
+
b = class_eval("binding")
|
36
|
+
eval "def #{prop_name}(*a,&b); access_property(#{prop_name.inspect}, *a, &b); end", b, __FILE__, __LINE__
|
37
|
+
eval "def #{prop_name}=(a,&b); set_property_value(#{prop_name.inspect}, a, &b); end", b, __FILE__, __LINE__
|
38
|
+
end
|
39
|
+
end
|
40
|
+
nil
|
41
|
+
end
|
42
|
+
|
43
|
+
# Adds a callback for a given property
|
44
|
+
def add_callback_for(prop_name, callback)
|
45
|
+
callbacks_for(prop_name.to_s) << callback
|
46
|
+
callbacks_for(prop_name.to_s).flatten!
|
47
|
+
callbacks_for(prop_name.to_s).delete nil # no nils allowed
|
48
|
+
callbacks_for(prop_name.to_s)
|
49
|
+
end
|
50
|
+
|
51
|
+
# Returns all registered callbacks for the given property
|
52
|
+
def callbacks_for(prop_name)
|
53
|
+
@@property_callbacks[self.name] ||= {}
|
54
|
+
if prop_name then @@property_callbacks[self.name][prop_name.to_s] ||= []
|
55
|
+
else @@property_callbacks
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
|
60
|
+
# Creates an alias within the specified accessor (Screen, TMLDocument, or another Widget)
|
61
|
+
# which points to this Widget. For example, suppose we have a Widget called DefaultErrorMessageWidget.
|
62
|
+
# To call this Widget from a Screen, the user would have to use:
|
63
|
+
#
|
64
|
+
# screen.default_error_message_widget { . . . }
|
65
|
+
#
|
66
|
+
# Thus making for some tired fingers if there are a lot of error messages. But, if you add
|
67
|
+
# the following line to your Widget source:
|
68
|
+
#
|
69
|
+
# accessor_alias :def_err_msg
|
70
|
+
#
|
71
|
+
# Then the user only has to type:
|
72
|
+
#
|
73
|
+
# screen.def_err_msg { . . . }
|
74
|
+
#
|
75
|
+
# Which makes life that much easier for the user.
|
76
|
+
# All Widgets, when generated, contain an alias to remove the "_widget" part of their name
|
77
|
+
# from an Accessor.
|
78
|
+
#
|
79
|
+
# Multiple aliases can be specified on a single line:
|
80
|
+
#
|
81
|
+
# accessor_alias :def_err_msg, :default_error
|
82
|
+
#
|
83
|
+
# Or on separate lines:
|
84
|
+
#
|
85
|
+
# accessor_alias :def_err_msg
|
86
|
+
# accessor_alias :default_error
|
87
|
+
#
|
88
|
+
def accessor_alias(*args)
|
89
|
+
self.accessor_aliases.concat args
|
90
|
+
define_aliases
|
91
|
+
end
|
92
|
+
|
93
|
+
# Returns the hash of all accessors for this Widget, or for the specified Widget
|
94
|
+
# if its name is given.
|
95
|
+
def accessor_aliases(name = self.name)
|
96
|
+
@@accessor_aliases ||= {}
|
97
|
+
@@accessor_aliases[name] ||= [ ] unless name.nil?
|
98
|
+
if name then @@accessor_aliases[name]
|
99
|
+
else @@accessor_aliases
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
# Specifies the name of an Accessor, which is a TML object that can reference this
|
104
|
+
# Widget. An exception will be raised when the Widget is loaded, if this is not specified
|
105
|
+
# at least once within your Widget class. An Accessor includes any of the built-in
|
106
|
+
# parent objects (TMLDocument, Screen, Display) as well as any other Widgets in existence.
|
107
|
+
# This should be a Class object, NOT a Symbol or String!
|
108
|
+
#
|
109
|
+
# It is also important to note that,
|
110
|
+
# while any Widget can be specified as an Accessor, it is up to that Widget to actually
|
111
|
+
# make room for your Widget. If the user adds your Widget to a CallFuncWidget, and you
|
112
|
+
# have specified CallFuncWidget as a valid accessor,
|
113
|
+
# it will compile, but it will have no effect because the Confirmation widget does not
|
114
|
+
# call the render_widget_tml method (exposed by the Rtml::Helpers::WidgetSupport module).
|
115
|
+
#
|
116
|
+
# Examples:
|
117
|
+
# accessor TMLDocument
|
118
|
+
# accessor Screen, Display
|
119
|
+
# accessor ConfirmationWidget
|
120
|
+
#
|
121
|
+
# You can make your Widget accessible from ANY other Widget by specifying the Widget
|
122
|
+
# base class itself as an accessor:
|
123
|
+
# accessor Widget
|
124
|
+
#
|
125
|
+
# You can also add all of the base TML objects by adding their parent class as an accessor:
|
126
|
+
# accessor Element
|
127
|
+
#
|
128
|
+
# Note that the Element class is slightly misleading, because ONLY the built-in types
|
129
|
+
# count as Elements! A Widget is not an Element, even though it does produce TML.
|
130
|
+
def accessor(*args)
|
131
|
+
check_accessibility(args)
|
132
|
+
add_accessor self, args
|
133
|
+
@@legal_accessors << self
|
134
|
+
self.accessor_list.concat [ args ].flatten
|
135
|
+
define_aliases
|
136
|
+
end
|
137
|
+
|
138
|
+
# Requests the list of Accessors for this Widget, built using the #accessor method.
|
139
|
+
# The return value is an Array containing the Class objects for each Accessor.
|
140
|
+
#
|
141
|
+
# If a Widget name is specified, the accessor list for that Widget will be retrieved.
|
142
|
+
def accessor_list(name = self.name)
|
143
|
+
@@accessor_lists ||= {}
|
144
|
+
@@accessor_lists[name] ||= [] unless name.nil?
|
145
|
+
if name then @@accessor_lists[name]
|
146
|
+
else @@accessor_lists
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
# Returns true if the specified name is an accessor for this Widget, or for the target
|
151
|
+
# Widget if a name is given.
|
152
|
+
def is_accessor?(name, target = self.name)
|
153
|
+
accessor_aliases(target).each do |als|
|
154
|
+
return true if als == name
|
155
|
+
end
|
156
|
+
false
|
157
|
+
end
|
158
|
+
|
159
|
+
# Override this method if you need to disable assigning properties from
|
160
|
+
# the hash supplied to the Widget constructor. This does not apply to
|
161
|
+
# assignments made in block form, but can be useful if your Widget requires
|
162
|
+
# the user to pass keys into the hash that may not correlate to properties
|
163
|
+
# within the Widget itself.
|
164
|
+
def assign_properties?
|
165
|
+
true
|
166
|
+
end
|
167
|
+
|
168
|
+
def add_accessor(target, accessors)
|
169
|
+
accessors.flatten.each do |kls|
|
170
|
+
#kls.class_eval "def #{access_name}(*args, &blk); add_widget(#{target}, *args, &blk); end"
|
171
|
+
eval "def #{access_name}(*args, &blk); add_widget(#{target}, *args, &blk); end", kls.class_eval("binding"), __FILE__, __LINE__
|
172
|
+
end
|
173
|
+
end
|
174
|
+
|
175
|
+
def define_aliases
|
176
|
+
return if self.accessor_list.nil?
|
177
|
+
return if self.accessor_aliases.nil?
|
178
|
+
accessor_list.each do |kls|
|
179
|
+
accessor_aliases.each do |als|
|
180
|
+
code = ""
|
181
|
+
unless silence_accessor_failures?
|
182
|
+
code = <<-end_code
|
183
|
+
Rails.logger.warn Rtml::Errors::WidgetAccessorFailure.new(#{als.inspect}, #{self.name.inspect}, self) unless access_point_valid? #{als.inspect}
|
184
|
+
end_code
|
185
|
+
end
|
186
|
+
code += <<-end_code
|
187
|
+
#{code}
|
188
|
+
def #{als}(*args, &blk)
|
189
|
+
#{access_name}(*args, &blk)
|
190
|
+
end
|
191
|
+
end_code
|
192
|
+
#"
|
193
|
+
begin
|
194
|
+
eval code, kls.class_eval("binding"), __FILE__, __LINE__
|
195
|
+
rescue Rtml::Errors::WidgetAccessorFailure
|
196
|
+
raise $! unless kls.silence_accessor_failures?
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
def access_name
|
203
|
+
self.name.underscore.downcase.gsub(/.*\//, '')
|
204
|
+
end
|
205
|
+
|
206
|
+
def check_accessibility(accessibility)
|
207
|
+
raise "Must supply one or more accessors (one of #{@@legal_accessors.join(", ")})" if accessibility.length == 0
|
208
|
+
accessibility.flatten.each do |kls|
|
209
|
+
raise "Accessor object #{kls} must be a Class" unless kls.class == Class
|
210
|
+
raise "Accessor #{kls} is not a legal accessor (one of #{@@legal_accessors.join(',')})" unless @@legal_accessors.include? kls
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
Binary file
|
@@ -0,0 +1,37 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 2px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: large; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: large; text-align: center;}
|
7
|
+
span{font-size: large;}
|
8
|
+
screen{font-size: large;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
th{text-align: center; vertical-align: middle;}
|
13
|
+
table.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
14
|
+
table.menu2{vertical-align: middle; font-size: large;}
|
15
|
+
div.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
16
|
+
|
17
|
+
|
18
|
+
.c_bold { font-weight: bold;}
|
19
|
+
.c_small { font-size: small;}
|
20
|
+
.c_large { font-size: large; text-align: left;}
|
21
|
+
.c_bold_large { font-weight: bold; font-size: large; text-align: left;}
|
22
|
+
.c_bold_large_center { font-weight: bold; font-size: large; text-align: center;}
|
23
|
+
.c_bold_red_large { font-weight: bold; font-size: large; text-align: left; color: #FF0000;}
|
24
|
+
.c_right { text-align: right;}
|
25
|
+
.c_left { text-align: left; }
|
26
|
+
.c_center { text-align: center;}
|
27
|
+
.c_warn { color: #FF0000; text-align: center; font-weight: bold;}
|
28
|
+
.c_href_menu { font-family: helvetica; font-size: large; text-indent: 2%; vertical-align: middle;}
|
29
|
+
|
30
|
+
.c_prn { font-size: medium; text-align: left; }
|
31
|
+
|
32
|
+
.c_image_middle {vertical-align: middle;}
|
33
|
+
|
34
|
+
pre { white-space: pre; }
|
35
|
+
|
36
|
+
h1 { font-weight: bold; font-size: large; text-align: left;}
|
37
|
+
h2 { font-weight: bold; font-size: medium; text-align: left;}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 1px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: x-small; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: x-small; text-align: center;}
|
7
|
+
span{font-size: x-small;}
|
8
|
+
screen{font-size: x-small;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
div.menu{ width: 100%; text-align: left; font-size: medium; text-indent: 15%;}
|
13
|
+
|
14
|
+
.bold { font-weight: bold; }
|
15
|
+
.large { font-size: large; }
|
16
|
+
.small { font-size: small; }
|
17
|
+
|
File without changes
|
@@ -0,0 +1,12 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 2px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: medium; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: medium; text-align: center;}
|
7
|
+
span{font-size: medium;}
|
8
|
+
screen{font-size: medium;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
div.menu{ width: 100%; text-align: left; font-size: medium; text-indent: 15%;}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 2px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: large; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: large; text-align: center;}
|
7
|
+
span{font-size: large;}
|
8
|
+
screen{font-size: large;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
th{text-align: center; vertical-align: middle;}
|
13
|
+
table.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
14
|
+
table.menu2{vertical-align: middle; font-size: large;}
|
15
|
+
div.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
16
|
+
|
17
|
+
|
18
|
+
.c_bold { font-weight: bold;}
|
19
|
+
.c_small { font-size: small;}
|
20
|
+
.c_large { font-size: large; text-align: left;}
|
21
|
+
.c_bold_large { font-weight: bold; font-size: large; text-align: left;}
|
22
|
+
.c_bold_large_center { font-weight: bold; font-size: large; text-align: center;}
|
23
|
+
.c_bold_red_large { font-weight: bold; font-size: large; text-align: left; color: #FF0000;}
|
24
|
+
.c_right { text-align: right;}
|
25
|
+
.c_left { text-align: left; }
|
26
|
+
.c_center { text-align: center;}
|
27
|
+
.c_warn { color: #FF0000; text-align: center; font-weight: bold;}
|
28
|
+
.c_href_menu { font-family: helvetica; font-size: large; text-indent: 2%; vertical-align: middle;}
|
29
|
+
|
30
|
+
.c_prn { font-size: medium; text-align: left; }
|
31
|
+
|
32
|
+
.c_image_middle {vertical-align: middle;}
|
33
|
+
|
34
|
+
pre { white-space: pre; }
|
35
|
+
|
36
|
+
h1 { font-weight: bold; font-size: large; text-align: left;}
|
37
|
+
h2 { font-weight: bold; font-size: medium; text-align: left;}
|
@@ -0,0 +1,4 @@
|
|
1
|
+
table.receipt { text-align: left; width: 100%; margin-left: 10px; margin-right: 10px; margin-top: 40px; margin-bottom: 60px;}
|
2
|
+
p.amount{font-size: large; font-weight: bold}
|
3
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
4
|
+
span.bold{font-weight: bold;}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 2px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: medium; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: medium; text-align: center;}
|
7
|
+
span{font-size: medium;}
|
8
|
+
screen{font-size: medium;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
div.menu{ width: 100%; text-align: left; font-size: medium; text-indent: 15%;}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
.menu{text-indent: 15%;}
|
2
|
+
div.title{background-color: #000000; color: #FFFFFF; width: 100%; margin: 2px;}
|
3
|
+
span.title{background-color: #000000; color: #FFFFFF; font-size: large; font-weight: bold; text-align: center; vertical-align: middle;}
|
4
|
+
span.center{vertical-align: middle; text-align: center;}
|
5
|
+
div.message{height: 100%; }
|
6
|
+
span.message{ font-size: large; text-align: center;}
|
7
|
+
span{font-size: large;}
|
8
|
+
screen{font-size: large;}
|
9
|
+
h1{text-align: center;}
|
10
|
+
table.message{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
11
|
+
table.warning{text-align: center; vertical-align: middle; height: 100%; width: 100%;}
|
12
|
+
th{text-align: center; vertical-align: middle;}
|
13
|
+
table.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
14
|
+
table.menu2{vertical-align: middle; font-size: large;}
|
15
|
+
div.menu{height: 100%; width: 100%; vertical-align: middle; text-align: center; font-size: large;}
|
16
|
+
|
17
|
+
|
18
|
+
.c_bold { font-weight: bold;}
|
19
|
+
.c_small { font-size: small;}
|
20
|
+
.c_large { font-size: large; text-align: left;}
|
21
|
+
.c_bold_large { font-weight: bold; font-size: large; text-align: left;}
|
22
|
+
.c_bold_large_center { font-weight: bold; font-size: large; text-align: center;}
|
23
|
+
.c_bold_red_large { font-weight: bold; font-size: large; text-align: left; color: #FF0000;}
|
24
|
+
.c_right { text-align: right;}
|
25
|
+
.c_left { text-align: left; }
|
26
|
+
.c_center { text-align: center;}
|
27
|
+
.c_warn { color: #FF0000; text-align: center; font-weight: bold;}
|
28
|
+
.c_href_menu { font-family: helvetica; font-size: large; text-indent: 2%; vertical-align: middle;}
|
29
|
+
|
30
|
+
.c_prn { font-size: medium; text-align: left; }
|
31
|
+
|
32
|
+
.c_image_middle {vertical-align: middle;}
|
33
|
+
|
34
|
+
pre { white-space: pre; }
|
35
|
+
|
36
|
+
h1 { font-weight: bold; font-size: large; text-align: left;}
|
37
|
+
h2 { font-weight: bold; font-size: medium; text-align: left;}
|