├── .gitignore ├── .pylintrc ├── README.rst ├── bitbucket-pipelines.yml ├── doc ├── chart.png ├── chart_cumulative.png └── chart_cumulative_year.png ├── environment_gpu.yml ├── environment_linux.yml ├── environment_no_gpu.yml ├── export_venv.bat ├── horse_racing ├── __init__.py ├── app.py ├── backtesting │ ├── avg_ltp_over_time.py │ ├── backbets.py │ ├── backtesting.py │ ├── historic_data_processor.py │ ├── odds_histogram_analysis.py │ └── return_analysis.py ├── betfair_manager │ ├── __init__.py │ ├── bet_logic.py │ ├── betfair_manager.py │ ├── bookmakers.py │ ├── engine.py │ ├── query_market.py │ └── utils.py ├── config.ini ├── data │ ├── __init__.py │ └── raw_parser.py ├── framework │ └── arbitrage.py ├── legacy │ ├── __init__.py │ ├── backtesting │ │ ├── __init__.py │ │ ├── betf_parser.py │ │ └── betf_race.py │ ├── dataprocessing │ │ ├── __init__.py │ │ ├── data_analysis.py │ │ ├── headtohead.py │ │ └── racebyrace.py │ ├── matlab │ │ └── simple_nn.m │ ├── models │ │ ├── __init__.py │ │ ├── classifiers.py │ │ ├── model_config.py │ │ └── utils.py │ ├── sample_data.csv │ ├── sample_data2.csv │ └── sample_data3.csv ├── log │ └── __init__.py ├── matchbook_manager │ ├── __init__.py │ └── engine.py ├── neural_networks │ ├── __init__.py │ ├── custom_optimization.py │ ├── lay_all.py │ ├── matlab │ │ ├── golden_hornet.m │ │ ├── golden_hornet_backtesting_data.csv │ │ ├── golden_hornet_training_data.csv │ │ └── trainClassifier.m │ ├── neural_network_base.py │ ├── neural_network_launcher.py │ ├── neural_networks_nicolas.py │ ├── plots │ │ ├── __init__.py │ │ ├── backtesting-20180323-222855.png │ │ ├── training-20180318-164301.png │ │ ├── training-20180318-165241.png │ │ ├── training-20180318-184839.png │ │ ├── training-20180321-003043.png │ │ ├── training-20180426-150117.png │ │ ├── training-20180508-224228.png │ │ └── training-20180508-224741.png │ ├── saved_models │ │ ├── backing_us │ │ │ ├── backtesting-20180317-161305.png │ │ │ ├── hyperparams.json │ │ │ ├── model.h5 │ │ │ ├── model.json │ │ │ └── training-20180317-160415.png │ │ ├── flying_spider │ │ │ ├── backtesting-20180301-205544.png │ │ │ ├── hyperparams.json │ │ │ ├── model.h5 │ │ │ ├── model.json │ │ │ └── training-20180301-205400.png │ │ ├── flying_spider_bookies │ │ │ ├── hyperparams.json │ │ │ ├── model.h5 │ │ │ └── model.json │ │ ├── flyingfly1 │ │ │ ├── backtesting-20180206-005331.png │ │ │ ├── hyperparams.json │ │ │ ├── model.h5 │ │ │ ├── model.json │ │ │ ├── tensorboard.png │ │ │ └── training-20180206-005253.png │ │ └── lay_all │ │ │ ├── hyperparams.json │ │ │ ├── model.h5 │ │ │ └── model.json │ └── tf │ │ ├── mnist_softmax.py │ │ ├── mnist_softmax_xla.py │ │ ├── mnist_with_summaries.py │ │ ├── profit_max_tensorflow.py │ │ └── profit_maximiser.py ├── notes.txt ├── pnl │ ├── __init__.py │ └── pnl.py ├── reinforced_learning │ ├── __init__.py │ ├── app.py │ ├── betting.py │ └── qlearning4k │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── examples │ │ ├── __init__.py │ │ ├── example.py │ │ ├── test_catch.py │ │ └── test_snake.py │ │ ├── games │ │ ├── __init__.py │ │ ├── catch.py │ │ ├── game.py │ │ └── snake.py │ │ └── memory.py ├── scraping │ ├── __init__.py │ └── price.py ├── static │ ├── style.css │ └── webix │ │ ├── Webix Trial Developer License Agreement.pdf │ │ ├── Webix Trial Developer License Agreement.rtf │ │ ├── Webix Trial Developer License Agreement.txt │ │ ├── filemanager │ │ ├── codebase │ │ │ ├── filemanager.css │ │ │ ├── filemanager.js │ │ │ └── fonts │ │ │ │ ├── filemanager.eot │ │ │ │ ├── filemanager.svg │ │ │ │ ├── filemanager.ttf │ │ │ │ └── filemanager.woff │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_basic │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_real_fs.html │ │ │ │ ├── 03_uploading.html │ │ │ │ ├── 04_operations.html │ │ │ │ ├── 05_readonly.html │ │ │ │ └── index.html │ │ │ ├── 02_events │ │ │ │ ├── 01_selection.html │ │ │ │ ├── 02_download.html │ │ │ │ ├── 03_drag.html │ │ │ │ ├── 04_rename.html │ │ │ │ ├── 05_copy.html │ │ │ │ ├── 06_error.html │ │ │ │ └── index.html │ │ │ ├── 03_customization │ │ │ │ ├── 01_views_configuration.html │ │ │ │ ├── 02_new_column.html │ │ │ │ ├── 03_adding_mode.html │ │ │ │ ├── 04_hiding_buttons.html │ │ │ │ ├── 05_preview.html │ │ │ │ ├── 06_icons_template.html │ │ │ │ ├── 07_localization.html │ │ │ │ ├── 08_styling.html │ │ │ │ ├── 09_menu_options.html │ │ │ │ └── index.html │ │ │ ├── 04_loading │ │ │ │ ├── 01_dynamic_loading.html │ │ │ │ ├── 02_files_dyn_loading.html │ │ │ │ ├── 03_dynamic_loading_nocache.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── CommandFileSystem.php │ │ │ │ ├── FileSystem.php │ │ │ │ ├── PHPFileSystem.php │ │ │ │ ├── config.php │ │ │ │ ├── data.php │ │ │ │ ├── data_branch.php │ │ │ │ ├── data_dyn.php │ │ │ │ ├── docs.css │ │ │ │ └── style.css │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ ├── hello.html │ │ ├── kanban │ │ ├── codebase │ │ │ ├── kanban.css │ │ │ └── kanban.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_basic │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_icons.html │ │ │ │ ├── 03_user_avatars.html │ │ │ │ ├── 04_templates.html │ │ │ │ ├── 05_styling.html │ │ │ │ ├── 06_multiselect.html │ │ │ │ └── index.html │ │ │ ├── 02_events │ │ │ │ ├── 01_icon_onclick.html │ │ │ │ ├── 02_avatar_onclick.html │ │ │ │ ├── 03_drag_n_drop_events.html │ │ │ │ ├── 04_item_click.html │ │ │ │ ├── 05_dbl_click.html │ │ │ │ ├── 06_context.html │ │ │ │ ├── 07_inner_clicks.html │ │ │ │ └── index.html │ │ │ ├── 03_data_operations │ │ │ │ ├── 01_add.html │ │ │ │ ├── 02_filter.html │ │ │ │ └── index.html │ │ │ ├── 04_layouts │ │ │ │ ├── 01_columns.html │ │ │ │ ├── 02_complex_layout.html │ │ │ │ ├── 03_swimlanes.html │ │ │ │ ├── 04_swimlanes_users.html │ │ │ │ ├── 05_tabs.html │ │ │ │ └── index.html │ │ │ ├── 05_php │ │ │ │ ├── 01_loading_saving.html │ │ │ │ ├── index.html │ │ │ │ └── server │ │ │ │ │ ├── kanban.sqlite │ │ │ │ │ ├── tasks.php │ │ │ │ │ └── tasks_save.php │ │ │ ├── common │ │ │ │ ├── data.js │ │ │ │ ├── imgs │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ ├── 6.jpg │ │ │ │ │ ├── 7.jpg │ │ │ │ │ ├── 8.jpg │ │ │ │ │ └── attachments │ │ │ │ │ │ ├── image001.png │ │ │ │ │ │ └── image002.png │ │ │ │ ├── photos │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ │ ├── style.css │ │ │ │ └── types.js │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ ├── pivot │ │ ├── codebase │ │ │ ├── pivot.css │ │ │ ├── pivot.js │ │ │ └── pivot.worker.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_init │ │ │ │ ├── 01_inline_data.html │ │ │ │ ├── 02_loading_data.html │ │ │ │ ├── 03_configuring.html │ │ │ │ ├── 04_define_function.html │ │ │ │ ├── 05_locale.html │ │ │ │ ├── 06_custom_titles.html │ │ │ │ ├── 07_huge_set.html │ │ │ │ ├── 08_sorted_header.html │ │ │ │ ├── 09_value_formatting.html │ │ │ │ ├── 10_readonly.html │ │ │ │ └── index.html │ │ │ ├── 02_chart │ │ │ │ ├── 01_inline_data.html │ │ │ │ ├── 02_loading_data.html │ │ │ │ ├── 03_loading_data_csv.html │ │ │ │ ├── 04_configuring.html │ │ │ │ ├── 05_locale.html │ │ │ │ ├── 06_custom_titles.html │ │ │ │ ├── 07_readonly.html │ │ │ │ └── index.html │ │ │ ├── 03_table_api │ │ │ │ ├── 01_total_column.html │ │ │ │ ├── 02_adding_operation.html │ │ │ │ ├── 03_freeze_total.html │ │ │ │ ├── 04_weighted_average.html │ │ │ │ ├── 05_export.html │ │ │ │ ├── 06_access_raws.html │ │ │ │ └── index.html │ │ │ ├── 04_chart_api │ │ │ │ ├── 01_group_methods.html │ │ │ │ ├── 02_chart_settings.html │ │ │ │ ├── 03_adding_charts.html │ │ │ │ └── index.html │ │ │ ├── 05_customization │ │ │ │ ├── 01_cell_styling.html │ │ │ │ ├── 02_popup.html │ │ │ │ ├── 03_fields_groups.html │ │ │ │ ├── 04_fields_tree.html │ │ │ │ ├── 05_fields_groups.html │ │ │ │ ├── 06_estimate_complexity.html │ │ │ │ └── index.html │ │ │ ├── 06_filters │ │ │ │ ├── 01_outer_filters.html │ │ │ │ ├── 02_add_filter.html │ │ │ │ ├── 03_datepicker.html │ │ │ │ ├── 04_range_datepicker.html │ │ │ │ └── index.html │ │ │ ├── 07_table_external │ │ │ │ ├── 01_readonly.html │ │ │ │ ├── data │ │ │ │ │ └── pivot.json │ │ │ │ └── index.html │ │ │ ├── 08_performance │ │ │ │ ├── 01_web_worker.html │ │ │ │ ├── 02_abort_long.html │ │ │ │ ├── 03_abort_long_worker.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── data.json │ │ │ │ ├── example.csv │ │ │ │ ├── samples.css │ │ │ │ └── testdata.js │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ ├── querybuilder │ │ ├── codebase │ │ │ ├── querybuilder.css │ │ │ └── querybuilder.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_initialization │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_basic.html │ │ │ │ ├── 03_datatable.html │ │ │ │ ├── 04_pivot.html │ │ │ │ ├── 05_columns.html │ │ │ │ └── index.html │ │ │ ├── 02_sorting │ │ │ │ ├── 01_pivot_sorting.html │ │ │ │ ├── 02_sorting_only.html │ │ │ │ ├── 03_datatable.html │ │ │ │ └── index.html │ │ │ ├── 03_sql │ │ │ │ ├── 01_init.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── docs.css │ │ │ │ └── testdata_pivot.js │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ ├── scheduler │ │ ├── codebase │ │ │ ├── scheduler.css │ │ │ └── scheduler.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_basic │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_date_format.html │ │ │ │ ├── 03_events.html │ │ │ │ ├── 04_readonly.html │ │ │ │ ├── data │ │ │ │ │ ├── data.json │ │ │ │ │ └── mobile.xml │ │ │ │ └── index.html │ │ │ ├── 02_recurring │ │ │ │ ├── 01_recurring.html │ │ │ │ └── index.html │ │ │ ├── 03_data │ │ │ │ ├── 01_data_saving.html │ │ │ │ ├── 02_local_storage.html │ │ │ │ ├── 03_dynamic_loading.html │ │ │ │ ├── data │ │ │ │ │ ├── events.php │ │ │ │ │ └── events_dyn.php │ │ │ │ └── index.html │ │ │ ├── 04_customization │ │ │ │ ├── 01_colors.html │ │ │ │ ├── 02_templates.html │ │ │ │ ├── 03_custom_form.html │ │ │ │ ├── 04_locale.html │ │ │ │ ├── 05_event_styling.html │ │ │ │ ├── 06_aria_labels.html │ │ │ │ ├── data │ │ │ │ │ └── mobile.xml │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── config.php │ │ │ │ ├── connector │ │ │ │ │ ├── base_connector.php │ │ │ │ │ ├── data_connector.php │ │ │ │ │ ├── dataprocessor.php │ │ │ │ │ ├── db_common.php │ │ │ │ │ ├── db_sqlite3.php │ │ │ │ │ ├── scheduler_connector.php │ │ │ │ │ ├── strategy.php │ │ │ │ │ ├── tools.php │ │ │ │ │ ├── update.php │ │ │ │ │ └── xss_filter.php │ │ │ │ └── testdata.sqlite │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ ├── spreadsheet │ │ ├── codebase │ │ │ ├── spreadsheet.css │ │ │ └── spreadsheet.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.txt │ │ ├── samples │ │ │ ├── 01_basic │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_all_buttons.html │ │ │ │ ├── 03_math.html │ │ │ │ ├── 04_readonly.html │ │ │ │ ├── 05_menu.html │ │ │ │ ├── 06_localization.html │ │ │ │ ├── 07_multisheet.html │ │ │ │ ├── 08_conditional_styles.html │ │ │ │ ├── 09_multisheet_math.html │ │ │ │ ├── data │ │ │ │ │ └── ru.js │ │ │ │ └── index.html │ │ │ ├── 02_api │ │ │ │ ├── 01_subbar_and_reset.html │ │ │ │ ├── 02_serialization.html │ │ │ │ ├── 03_excel.html │ │ │ │ ├── 04_borders_and_gridlines.html │ │ │ │ ├── 05_events.html │ │ │ │ ├── 06_export.html │ │ │ │ ├── 07_dropdowns.html │ │ │ │ ├── 08_sorting.html │ │ │ │ ├── 09_filters.html │ │ │ │ ├── 10_sparklines.html │ │ │ │ ├── 11_images.html │ │ │ │ ├── 12_format.html │ │ │ │ ├── 13_named_ranges.html │ │ │ │ ├── 14_conditional.html │ │ │ │ ├── 15_lock_cell.html │ │ │ │ ├── 16_placeholders.html │ │ │ │ ├── 17_custom_math_methods.html │ │ │ │ ├── 18_clear_styles.html │ │ │ │ ├── 19_csv.html │ │ │ │ └── index.html │ │ │ ├── 03_customization │ │ │ │ ├── 01_buttons.html │ │ │ │ ├── 02_subbar.html │ │ │ │ ├── 03_editor_bar.html │ │ │ │ ├── 04_search_filter.html │ │ │ │ ├── 06_cell_highlighting.html │ │ │ │ ├── 07_custom_toolbar.html │ │ │ │ ├── 08_custom_menu.html │ │ │ │ ├── 09_custom_context.html │ │ │ │ └── index.html │ │ │ ├── 05_php │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_different_sheets.html │ │ │ │ ├── 03_images.html │ │ │ │ ├── index.html │ │ │ │ └── server │ │ │ │ │ ├── config.php │ │ │ │ │ ├── data.php │ │ │ │ │ ├── get.php │ │ │ │ │ ├── image.php │ │ │ │ │ ├── sizes.php │ │ │ │ │ ├── spans.php │ │ │ │ │ └── styles.php │ │ │ ├── 06_nodejs │ │ │ │ └── README.md │ │ │ ├── 07_net │ │ │ │ └── README.md │ │ │ ├── 08_ui │ │ │ │ ├── 01_text_buttons.html │ │ │ │ ├── 02_buttons_icon.html │ │ │ │ ├── 03_buttons_additional.html │ │ │ │ ├── 04_icons_popup.html │ │ │ │ ├── 05_editors_popup.html │ │ │ │ ├── 06_dialogs.html │ │ │ │ ├── 07_complex_dialog.html │ │ │ │ ├── images │ │ │ │ │ ├── bar-chart.svg │ │ │ │ │ ├── chart.svg │ │ │ │ │ ├── column.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── hide.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── line-chart.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── other.svg │ │ │ │ │ ├── pie-chart.svg │ │ │ │ │ └── row.svg │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── data.js │ │ │ │ ├── data_csv.csv │ │ │ │ ├── sheet.sql │ │ │ │ └── test.xlsx │ │ │ └── index.html │ │ ├── webpack.config.js │ │ └── whatsnew.txt │ │ └── webix │ │ ├── codebase │ │ ├── fonts │ │ │ ├── PTS-bold.woff │ │ │ ├── PTS-webfont.woff │ │ │ ├── font-license.txt │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── i18n │ │ │ ├── be.js │ │ │ ├── de.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── fr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ └── zh.js │ │ ├── legacy │ │ │ ├── excanvas │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── COPYING.txt │ │ │ │ ├── README.txt │ │ │ │ └── excanvas.js │ │ │ ├── swfobject.js │ │ │ └── uploader.swf │ │ ├── skins │ │ │ ├── air.css │ │ │ ├── aircompact.css │ │ │ ├── clouds.css │ │ │ ├── compact.css │ │ │ ├── contrast.css │ │ │ ├── debug │ │ │ │ ├── air.css │ │ │ │ ├── aircompact.css │ │ │ │ ├── clouds.css │ │ │ │ ├── compact.css │ │ │ │ ├── contrast.css │ │ │ │ ├── flat.css │ │ │ │ ├── glamour.css │ │ │ │ ├── light.css │ │ │ │ ├── metro.css │ │ │ │ ├── terrace.css │ │ │ │ ├── touch.css │ │ │ │ └── web.css │ │ │ ├── flat.css │ │ │ ├── glamour.css │ │ │ ├── light.css │ │ │ ├── metro.css │ │ │ ├── terrace.css │ │ │ ├── touch.css │ │ │ └── web.css │ │ ├── webix.css │ │ ├── webix.d.ts │ │ ├── webix.js │ │ ├── webix.js.map │ │ └── webix_debug.js │ │ ├── latest.txt │ │ ├── license.txt │ │ ├── readme.txt │ │ ├── samples │ │ ├── 01_layout │ │ │ ├── 01_resizer.html │ │ │ ├── 02_resize_limit.html │ │ │ ├── 03_header.html │ │ │ ├── 04_header_vertical.html │ │ │ ├── 05_header_complex.html │ │ │ ├── 06_header_resize.html │ │ │ ├── 07_header_all.html │ │ │ ├── 08_min_size.html │ │ │ ├── 10_performance.html │ │ │ ├── 11_responsive.html │ │ │ ├── 12_responsive_hidden.html │ │ │ ├── 13_reconfiguration.html │ │ │ ├── 14_flex_top.html │ │ │ ├── 15_flex_inner.html │ │ │ ├── 16_flex_dashboard.html │ │ │ ├── 17_align.html │ │ │ └── index.html │ │ ├── 02_toolbar │ │ │ ├── 02_tabbar.html │ │ │ ├── 03_tabview.html │ │ │ ├── 04_toolbar_align.html │ │ │ ├── 05_toolbar_lines.html │ │ │ ├── 06_toolbar_button.html │ │ │ ├── 07_toolbar_image_button.html │ │ │ ├── 08_toolbar_topimage_button.html │ │ │ ├── 09_toolbar_image_button_box.html │ │ │ ├── 10_toolbar_topimage_button_box.html │ │ │ ├── 11_toolbar_icons.html │ │ │ ├── 12_styled_buttons.html │ │ │ ├── 13_search_field.html │ │ │ ├── 14_batches.html │ │ │ ├── 14_toolbar_toggle.html │ │ │ ├── 15_common_config.html │ │ │ ├── 15_toolbar_topimage_toggle.html │ │ │ ├── 16_toolbar_image_button_toggle.html │ │ │ ├── 17_toolbar_topimage_button_toggle.html │ │ │ ├── 18_toolbar_toggle_icons.html │ │ │ ├── 19_tabs_on_the_go.html │ │ │ ├── 20_richselect.html │ │ │ ├── 21_toolbar_badges.html │ │ │ └── index.html │ │ ├── 03_menu │ │ │ ├── 01_menubar.html │ │ │ ├── 02_menubar_template.html │ │ │ ├── 03_in_layout.html │ │ │ ├── 04_context.html │ │ │ ├── 05_context_content.html │ │ │ ├── 06_context_for_list.html │ │ │ ├── 07_context_ui.html │ │ │ ├── 07_menu_toolbar.html │ │ │ ├── 09_disable_item.html │ │ │ ├── 10_hide_item.html │ │ │ ├── 11_menu_open_click.html │ │ │ ├── 12_submenu_config.html │ │ │ ├── 13_hrefs.html │ │ │ ├── 14_vertical_menu.html │ │ │ ├── 15_menu_spacer.html │ │ │ ├── 16_badges.html │ │ │ ├── 17_submenu_autowidth.html │ │ │ ├── images │ │ │ │ ├── html4.png │ │ │ │ └── html5.png │ │ │ └── index.html │ │ ├── 04_template │ │ │ ├── 02_autoheight.html │ │ │ ├── 03_ui_inside.html │ │ │ ├── 10_scrollview.html │ │ │ └── index.html │ │ ├── 05_list │ │ │ ├── 01_list.html │ │ │ ├── 02_list_layout.html │ │ │ ├── 03_group_list.html │ │ │ ├── 04_list_grouping.html │ │ │ ├── 05_editable.html │ │ │ ├── 06_validation.html │ │ │ ├── 07_empty_list.html │ │ │ ├── 08_xlist.html │ │ │ ├── 09_copypaste.html │ │ │ ├── 10_filtering.html │ │ │ ├── 11_unitlist.html │ │ │ ├── 12_paging.html │ │ │ ├── 13_ycount.html │ │ │ ├── 14_custom_handlers.html │ │ │ ├── 15_active_content.html │ │ │ ├── 16_unitlist_pager.html │ │ │ ├── 17_advanced_template.html │ │ │ ├── data │ │ │ │ └── empty.json │ │ │ └── index.html │ │ ├── 06_dataview │ │ │ ├── 01_initialization │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_url_loading.html │ │ │ │ ├── 03_fixed_sizing.html │ │ │ │ ├── 04_content_sizing.html │ │ │ │ ├── 05_type_sizing.html │ │ │ │ ├── 06_autoheight.html │ │ │ │ ├── data │ │ │ │ │ ├── data_json.php │ │ │ │ │ └── data_xml.php │ │ │ │ └── index.html │ │ │ ├── 02_templates │ │ │ │ ├── 01_jshtml.html │ │ │ │ ├── 02_js.html │ │ │ │ ├── 03_html.html │ │ │ │ ├── 04_external.html │ │ │ │ ├── 05_named.html │ │ │ │ ├── 06_tooltip.html │ │ │ │ ├── dataview_styles.css │ │ │ │ ├── index.html │ │ │ │ └── template.html │ │ │ ├── 03_loading │ │ │ │ ├── 01_xml.html │ │ │ │ ├── 02_json.html │ │ │ │ ├── index.html │ │ │ │ ├── movies.json │ │ │ │ └── movies.xml │ │ │ ├── 04_manipulations │ │ │ │ ├── 01_adding.html │ │ │ │ ├── 02_selection.html │ │ │ │ ├── 03_edit.html │ │ │ │ └── index.html │ │ │ ├── 05_edit │ │ │ │ ├── 01_init.html │ │ │ │ └── index.html │ │ │ ├── 16_dyn_loading │ │ │ │ ├── 01_big_dateset_static.html │ │ │ │ ├── 02_big_dataset_dynamic.html │ │ │ │ ├── 03_datafetch.html │ │ │ │ ├── 04_datathrottle.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ └── data_dyn.php │ │ │ │ └── index.html │ │ │ ├── 19_paging │ │ │ │ ├── 01_static_paging.html │ │ │ │ ├── 02_dynamic_paging.html │ │ │ │ ├── 03_paging_custom.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ └── data_dyn.php │ │ │ │ └── index.html │ │ │ ├── 22_dnd │ │ │ │ ├── 01_basic_dnd.html │ │ │ │ ├── 02_in_out.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── 07_property │ │ │ ├── 01_init.html │ │ │ ├── 02_custom_checkbox.html │ │ │ ├── 03_colorpicker.html │ │ │ ├── 04_complex_values.html │ │ │ └── index.html │ │ ├── 08_chart │ │ │ ├── 01_initialization │ │ │ │ ├── 01_load_xml.html │ │ │ │ ├── 02_load_json.html │ │ │ │ ├── 03_load_csv.html │ │ │ │ ├── 04_load_jsarray.html │ │ │ │ └── index.html │ │ │ ├── 02_color │ │ │ │ ├── 01_custom.html │ │ │ │ ├── 02_function.html │ │ │ │ ├── 03_gradient.html │ │ │ │ └── index.html │ │ │ ├── 03_api │ │ │ │ ├── 01_group.html │ │ │ │ ├── 02_export_png.html │ │ │ │ └── index.html │ │ │ ├── 04_pie_chart │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_3d_chart.html │ │ │ │ ├── 03_legend.html │ │ │ │ ├── 04_donut.html │ │ │ │ └── index.html │ │ │ ├── 05_line_chart │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_style.html │ │ │ │ ├── 03_scale.html │ │ │ │ ├── 04_spline.html │ │ │ │ ├── 05_series.html │ │ │ │ ├── 06_style_presets.html │ │ │ │ ├── 07_legend.html │ │ │ │ └── index.html │ │ │ ├── 06_bar_chart │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_text.html │ │ │ │ ├── 03_scales.html │ │ │ │ ├── 04_styles.html │ │ │ │ ├── 05_stacked_chart.html │ │ │ │ ├── 06_series.html │ │ │ │ ├── 07_horizonal_bars.html │ │ │ │ ├── 08_horizonal_stacked_bars.html │ │ │ │ ├── 09_origin.html │ │ │ │ ├── 10_style_presets.html │ │ │ │ ├── 11_bar_width.html │ │ │ │ ├── 12_diff_charts.html │ │ │ │ ├── 13_custom_axis.html │ │ │ │ └── index.html │ │ │ ├── 07_area_chart │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_scale.html │ │ │ │ ├── 03_series.html │ │ │ │ ├── 04_stacked_area.html │ │ │ │ ├── 05_diff_charts.html │ │ │ │ ├── 06_custom_axis.html │ │ │ │ ├── 07_spline_area.html │ │ │ │ └── index.html │ │ │ ├── 08_dynamic │ │ │ │ ├── 01_add.html │ │ │ │ ├── 02_events.html │ │ │ │ ├── 03_sorting.html │ │ │ │ ├── 04_filtering.html │ │ │ │ ├── 05_dynamic_line.html │ │ │ │ ├── 06_dynamic_spline.html │ │ │ │ ├── 07_dynamic_area.html │ │ │ │ ├── 08_dynamic_splinearea.html │ │ │ │ └── index.html │ │ │ ├── 09_radar_chart │ │ │ │ ├── 01_radar_points.html │ │ │ │ ├── 02_radar_area.html │ │ │ │ ├── 03_radar_lines.html │ │ │ │ ├── 04_style_presets.html │ │ │ │ ├── 05_scale.html │ │ │ │ └── index.html │ │ │ ├── 10_scatter_chart │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_templates.html │ │ │ │ ├── 03_style_presets.html │ │ │ │ ├── 04_series.html │ │ │ │ └── index.html │ │ │ ├── 11_scale │ │ │ │ ├── 01_y_intervals.html │ │ │ │ ├── 02_custom_x_axis.html │ │ │ │ ├── 03_origin.html │ │ │ │ ├── 04_logarithmic_y.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── 09_calendar │ │ │ ├── 01_init.html │ │ │ ├── 02_start_date.html │ │ │ ├── 03_timepicker.html │ │ │ ├── 04_custom_holidays.html │ │ │ ├── 05_fullscreen.html │ │ │ ├── 06_datepicker.html │ │ │ ├── 07_calendar_localized.html │ │ │ ├── 08_disabled_dates.html │ │ │ ├── 09_day_template.html │ │ │ ├── 10_icons.html │ │ │ ├── 11_disabled_time.html │ │ │ ├── 12_month_year.html │ │ │ ├── 13_multiselect.html │ │ │ └── index.html │ │ ├── 10_window │ │ │ ├── 01_init.html │ │ │ ├── 02_popup.html │ │ │ ├── 03_alert.html │ │ │ ├── 04_confirm.html │ │ │ ├── 05_popup_menu.html │ │ │ ├── 06_component_inside.html │ │ │ ├── 07_center.html │ │ │ ├── 08_position.html │ │ │ ├── 09_icons.html │ │ │ ├── 10_modal_box.html │ │ │ ├── 11_scrollview.html │ │ │ ├── 12_fullscreen.html │ │ │ ├── 13_form.html │ │ │ ├── 14_datatable.html │ │ │ ├── 15_resize.html │ │ │ └── index.html │ │ ├── 11_htmlform │ │ │ ├── 01_htmlform_body.html │ │ │ ├── 02_htmlform_layout.html │ │ │ ├── 03_htmlform_validation.html │ │ │ ├── 04_htmlform_http.html │ │ │ ├── 05_htmlform_binding.html │ │ │ ├── data │ │ │ │ ├── book.xml │ │ │ │ ├── form.html │ │ │ │ └── myform.css │ │ │ └── index.html │ │ ├── 13_form │ │ │ ├── 01_controls │ │ │ │ ├── 01_text.html │ │ │ │ ├── 02_select.html │ │ │ │ ├── 03_textarea.html │ │ │ │ ├── 04_radio.html │ │ │ │ ├── 05_counter.html │ │ │ │ ├── 06_checkbox.html │ │ │ │ ├── 07_segmented.html │ │ │ │ ├── 08_tabbar.html │ │ │ │ ├── 09_combo.html │ │ │ │ ├── 10_buttons.html │ │ │ │ ├── 10_buttons_autowidth.html │ │ │ │ ├── 10_buttons_image.html │ │ │ │ ├── 11_combo_advanced.html │ │ │ │ ├── 11_richselect.html │ │ │ │ ├── 12_colorpicker.html │ │ │ │ ├── 13_datepicker.html │ │ │ │ ├── 14_toggle.html │ │ │ │ ├── 14_toggle_images.html │ │ │ │ ├── 15_suggest_position.html │ │ │ │ ├── 15_suggest_server.html │ │ │ │ ├── 15_suggest_text.html │ │ │ │ ├── 16_combo_css.html │ │ │ │ ├── 17_search.html │ │ │ │ ├── 18_sections.html │ │ │ │ ├── 19_required.html │ │ │ │ ├── 20_all.html │ │ │ │ ├── 21_validation.html │ │ │ │ ├── 22_description.html │ │ │ │ ├── 23_richtext.html │ │ │ │ ├── 24_forminput.html │ │ │ │ ├── 25_dbllist.html │ │ │ │ ├── 26_dbllist_buttons.html │ │ │ │ ├── 27_number_format.html │ │ │ │ ├── index.html │ │ │ │ ├── search.png │ │ │ │ └── server │ │ │ │ │ ├── countries.php │ │ │ │ │ ├── data.json │ │ │ │ │ └── data.php │ │ │ ├── 02_api │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_attributes.html │ │ │ │ ├── 03_label_position.html │ │ │ │ ├── 04_input_align.html │ │ │ │ ├── 05_add_view.html │ │ │ │ ├── 06_form_in_form.html │ │ │ │ ├── 07_onchange_event.html │ │ │ │ ├── 08_common_config.html │ │ │ │ ├── 09_hidden_inputs.html │ │ │ │ ├── 10_binding.html │ │ │ │ ├── 11_dynamic.html │ │ │ │ ├── 12_hotkey.html │ │ │ │ ├── 13_tabs_form.html │ │ │ │ ├── 14_complex_values.html │ │ │ │ └── index.html │ │ │ ├── 04_validation │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_complex_rule.html │ │ │ │ ├── 03_common_rule.html │ │ │ │ ├── 04_message_complex.html │ │ │ │ ├── 05_message_complex.html │ │ │ │ ├── 06_validation_rules.html │ │ │ │ ├── 07_custom_rules.html │ │ │ │ ├── 08_confirmation.html │ │ │ │ ├── 09_auto_validation.html │ │ │ │ ├── 10_html5_validation.html │ │ │ │ ├── 11_per_item_validation.html │ │ │ │ ├── 12_validation_message.html │ │ │ │ └── index.html │ │ │ ├── 05_extras │ │ │ │ ├── 01_fieldset.html │ │ │ │ ├── 02_multiple_fieldsets.html │ │ │ │ ├── 03_slider.html │ │ │ │ ├── 04_slider_step.html │ │ │ │ ├── 05_slider_title.html │ │ │ │ ├── 06_slider_negative.html │ │ │ │ ├── 07_rangeslider.html │ │ │ │ ├── 08_slider_vertical.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── 14_dataprocessor │ │ │ ├── 01_datatable.html │ │ │ ├── 02_list.html │ │ │ ├── 03_dataview.html │ │ │ ├── 04_tree.html │ │ │ ├── 05_form.html │ │ │ ├── 06_datastore.html │ │ │ ├── 08_custom_urls.html │ │ │ ├── 10_csrf_atack.html │ │ │ ├── 11_xss_atack.html │ │ │ ├── data │ │ │ │ ├── connector.php │ │ │ │ ├── connector_csrf.php │ │ │ │ ├── connector_safe.php │ │ │ │ ├── connector_tree.php │ │ │ │ ├── connector_trusted.php │ │ │ │ └── dummy.json │ │ │ └── index.html │ │ ├── 15_datatable │ │ │ ├── 01_loading │ │ │ │ ├── 01_inline_data.html │ │ │ │ ├── 02_url_data.html │ │ │ │ ├── 03_db_data.html │ │ │ │ ├── 04_html.html │ │ │ │ ├── 05_load_message.html │ │ │ │ ├── 06_nodata_message.html │ │ │ │ ├── 09_config_xml.html │ │ │ │ ├── 10_custom_configuration_format.html │ │ │ │ ├── 11_aggregation.html │ │ │ │ ├── 12_custom_xml.html │ │ │ │ ├── data │ │ │ │ │ ├── config.json │ │ │ │ │ ├── configdata.json │ │ │ │ │ ├── custom.xml │ │ │ │ │ ├── data-config-json.php │ │ │ │ │ ├── data-config-xml.php │ │ │ │ │ ├── data-config.json │ │ │ │ │ ├── data-config.xml │ │ │ │ │ ├── data.csv │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data.php │ │ │ │ │ ├── data.xml │ │ │ │ │ ├── empty.json │ │ │ │ │ └── slow.php │ │ │ │ └── index.html │ │ │ ├── 02_sorting │ │ │ │ ├── 01_builtin.html │ │ │ │ ├── 02_custom.html │ │ │ │ ├── 03_sort_api.html │ │ │ │ ├── 04_by_text.html │ │ │ │ ├── 05_server.html │ │ │ │ └── index.html │ │ │ ├── 03_filtering │ │ │ │ ├── 01_builtin.html │ │ │ │ ├── 02_and.html │ │ │ │ ├── 03_or.html │ │ │ │ ├── 04_one_for_all.html │ │ │ │ ├── 04_one_for_all_2.html │ │ │ │ ├── 05_custom.html │ │ │ │ ├── 06_custom_built.html │ │ │ │ ├── 07_rules.html │ │ │ │ ├── 08_case_sensitive.html │ │ │ │ ├── 09_numeric.html │ │ │ │ ├── 10_date.html │ │ │ │ ├── 11_find_api.html │ │ │ │ ├── 12_options_loading.html │ │ │ │ ├── 13_options_customizing.html │ │ │ │ └── index.html │ │ │ ├── 04_editing │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_tab_support.html │ │ │ │ ├── 03_multiple_editors.html │ │ │ │ ├── 04_select.html │ │ │ │ ├── 05_multiple_editors_select.html │ │ │ │ ├── 06_select_id.html │ │ │ │ ├── 07_checkbox.html │ │ │ │ ├── 08_custom_checkbox.html │ │ │ │ ├── 09_inline_editors.html │ │ │ │ ├── 10_dates.html │ │ │ │ ├── 11_colorpicker.html │ │ │ │ ├── 12_text_popup.html │ │ │ │ ├── 13_bind_form.html │ │ │ │ ├── 14_autosuggest.html │ │ │ │ ├── 15_combo.html │ │ │ │ ├── 16_master_checkbox.html │ │ │ │ ├── 17_xss_template.html │ │ │ │ ├── 18_richselect.html │ │ │ │ ├── 19_live_editor.html │ │ │ │ ├── 20_select_server.html │ │ │ │ ├── 21_advanced_combo.html │ │ │ │ ├── 28_scroll.html │ │ │ │ ├── 29_numbers.html │ │ │ │ ├── data │ │ │ │ │ └── options.json │ │ │ │ └── index.html │ │ │ ├── 05_selection │ │ │ │ ├── 01_cell_selection.html │ │ │ │ ├── 02_row_selection.html │ │ │ │ ├── 03_column_selection.html │ │ │ │ ├── 04_multi_cell_selection.html │ │ │ │ ├── 05_multi_row_selection.html │ │ │ │ ├── 06_multi_column_selection.html │ │ │ │ ├── 07_map_selection.html │ │ │ │ ├── 08_block_selection.html │ │ │ │ ├── 09_navigation.html │ │ │ │ ├── 10_navigation_wide.html │ │ │ │ ├── 11_navigation_long.html │ │ │ │ ├── 12_hover.html │ │ │ │ ├── 13_block_selection_custom.html │ │ │ │ └── index.html │ │ │ ├── 06_clipboard │ │ │ │ ├── 01_cell_selection.html │ │ │ │ ├── 02_row_selection.html │ │ │ │ ├── 03_column_selection.html │ │ │ │ ├── 04_paste_selection.html │ │ │ │ ├── 05_two_grids.html │ │ │ │ ├── 06_block_selection.html │ │ │ │ ├── 07_paste_repeat.html │ │ │ │ ├── 08_csv_parser.html │ │ │ │ ├── 09_paste_custom.html │ │ │ │ ├── 10_template_copy.html │ │ │ │ └── index.html │ │ │ ├── 07_resize │ │ │ │ ├── 01_column_resize.html │ │ │ │ ├── 02_row_resize.html │ │ │ │ ├── 03_all_resize.html │ │ │ │ ├── 04_column_resize_auto.html │ │ │ │ ├── 05_row_resize_auto.html │ │ │ │ ├── 06_all_resize_auto.html │ │ │ │ ├── 07_custom_size.html │ │ │ │ ├── 08_custom_size_auto.html │ │ │ │ ├── 09_custom_size_align.html │ │ │ │ ├── 10_row_auto_height.html │ │ │ │ ├── 11_header_only.html │ │ │ │ ├── 12_resize_area.html │ │ │ │ └── index.html │ │ │ ├── 08_math │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_cell_values.html │ │ │ │ ├── 03_column_math.html │ │ │ │ ├── 04_treetable.html │ │ │ │ └── index.html │ │ │ ├── 09_columns │ │ │ │ ├── 01_size_by_content.html │ │ │ │ ├── 02_autosize_column.html │ │ │ │ ├── 03_scrolls.html │ │ │ │ ├── 04_add_column.html │ │ │ │ ├── 05_index_column.html │ │ │ │ ├── 06_rating_column.html │ │ │ │ ├── 07_stars_column.html │ │ │ │ ├── 08_tooltips.html │ │ │ │ ├── 09_tooltips_advanced.html │ │ │ │ ├── index.html │ │ │ │ └── stars.gif │ │ │ ├── 10_export │ │ │ │ ├── 01_excel.html │ │ │ │ ├── 02_png.html │ │ │ │ ├── 03_excel_multisheet.html │ │ │ │ ├── 04_excel_style.html │ │ │ │ ├── 05_excel_document.html │ │ │ │ ├── 06_pdf.html │ │ │ │ ├── 07_pdf_config.html │ │ │ │ ├── 08_pdf_style.html │ │ │ │ └── index.html │ │ │ ├── 11_sizing │ │ │ │ ├── 01_size_to_div.html │ │ │ │ ├── 02_resize_node.html │ │ │ │ ├── 03_resize_win.html │ │ │ │ ├── 04_fixed_size.html │ │ │ │ ├── 05_auto_size.html │ │ │ │ ├── 06_resize_layout.html │ │ │ │ ├── 07_resize_window.html │ │ │ │ └── index.html │ │ │ ├── 12_header_footer │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_configuration.html │ │ │ │ ├── 03_multiline.html │ │ │ │ ├── 04_content.html │ │ │ │ ├── 05_filters.html │ │ │ │ ├── 06_counter.html │ │ │ │ ├── 07_sorting.html │ │ │ │ ├── 08_header_element.html │ │ │ │ ├── 09_colspan.html │ │ │ │ ├── 10_actions.html │ │ │ │ ├── 11_custom_content.html │ │ │ │ ├── 12_lineheight.html │ │ │ │ ├── 13_autoheight.html │ │ │ │ ├── 14_multiline_collapse.html │ │ │ │ └── index.html │ │ │ ├── 13_frozen_columns │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_v_scroll.html │ │ │ │ ├── 04_block_selection.html │ │ │ │ └── index.html │ │ │ ├── 14_events │ │ │ │ ├── 01_log_all_events.html │ │ │ │ ├── 02_click_css.html │ │ │ │ └── index.html │ │ │ ├── 15_api │ │ │ │ ├── 01_map_cell.html │ │ │ │ ├── 02_link_grid.html │ │ │ │ ├── 03_custom_class.html │ │ │ │ ├── 04_hide_column.html │ │ │ │ ├── 05_hide_split.html │ │ │ │ ├── 06_aggregation.html │ │ │ │ ├── 07_lines.html │ │ │ │ ├── 08_aggregation_line.html │ │ │ │ ├── 09_initially_hidden.html │ │ │ │ ├── 11_column_batches.html │ │ │ │ ├── 12_hide_column_span.html │ │ │ │ └── index.html │ │ │ ├── 16_dyn_loading │ │ │ │ ├── 01_db_dyn_data.html │ │ │ │ ├── 02_db_dyn_start.html │ │ │ │ ├── 03_db_dyn_throttle.html │ │ │ │ ├── 04_db_dyn_loadahead.html │ │ │ │ ├── 05_load_next_add.html │ │ │ │ ├── 06_load_next_replace.html │ │ │ │ ├── 07_dyn_proxy.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ └── data_dyn.php │ │ │ │ └── index.html │ │ │ ├── 19_paging │ │ │ │ ├── 01_static.html │ │ │ │ ├── 02_db_data.html │ │ │ │ ├── 03_db_data_dyn.html │ │ │ │ ├── 04_many_pagers.html │ │ │ │ ├── 05_templates.html │ │ │ │ ├── 06_custom_template.html │ │ │ │ ├── 07_localization.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ └── data_dyn.php │ │ │ │ └── index.html │ │ │ ├── 20_templates │ │ │ │ ├── 01_string.html │ │ │ │ ├── 02_images.html │ │ │ │ ├── 03_links.html │ │ │ │ ├── 04_numbers.html │ │ │ │ ├── 05_dates.html │ │ │ │ ├── 06_dates_string.html │ │ │ │ ├── 07_pre_processing.html │ │ │ │ ├── 08_locales.html │ │ │ │ ├── imgs │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ └── 6.jpg │ │ │ │ └── index.html │ │ │ ├── 21_styling │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_column_styling.html │ │ │ │ ├── 03_cell_styling.html │ │ │ │ ├── 04_rows_styling.html │ │ │ │ ├── 05_header_styling.html │ │ │ │ └── index.html │ │ │ ├── 22_dnd │ │ │ │ ├── 01_basic_dnd.html │ │ │ │ ├── 02_in_out.html │ │ │ │ ├── 03_events.html │ │ │ │ ├── 04_reorder_dnd.html │ │ │ │ ├── 05_handle_dnd.html │ │ │ │ ├── 06_columns.html │ │ │ │ ├── 07_columns_order.html │ │ │ │ ├── 08_columns_handle.html │ │ │ │ ├── handle.png │ │ │ │ └── index.html │ │ │ ├── 23_html_only │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_clipboard.html │ │ │ │ ├── 03_sortable.html │ │ │ │ ├── 04_access_by_id.html │ │ │ │ ├── 05_size_to_content.html │ │ │ │ ├── 06_auto.html │ │ │ │ ├── 07_header.html │ │ │ │ ├── 08_footer.html │ │ │ │ ├── 09_paging.html │ │ │ │ └── index.html │ │ │ ├── 25_validation │ │ │ │ ├── 01_existing_data.html │ │ │ │ ├── 02_complex_rule.html │ │ │ │ ├── 03_common_rule.html │ │ │ │ ├── 04_message.html │ │ │ │ ├── 05_message_complex.html │ │ │ │ ├── 06_per_cell_marks.html │ │ │ │ ├── 07_edit_validation.html │ │ │ │ ├── 08_live_validation.html │ │ │ │ └── index.html │ │ │ ├── 30_treetable │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_dyn_loading.html │ │ │ │ ├── 03_big_datatree.html │ │ │ │ ├── 04_filter.html │ │ │ │ ├── 05_filter_custom.html │ │ │ │ ├── 06_selection.html │ │ │ │ ├── 08_edit.html │ │ │ │ ├── 09_item_checkbox.html │ │ │ │ ├── 10_item_checkbox_3st.html │ │ │ │ ├── 12_export.html │ │ │ │ ├── 13_copypaste.html │ │ │ │ ├── 14_colspan.html │ │ │ │ ├── 15_paging.html │ │ │ │ ├── 16_huge_loading.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ ├── treedata.php │ │ │ │ │ └── treedata_dyn.php │ │ │ │ └── index.html │ │ │ ├── 31_treedrag │ │ │ │ ├── 01_basic_dnd.html │ │ │ │ ├── 02_order_mode.html │ │ │ │ ├── 03_multidrag.html │ │ │ │ ├── 04_drop_as_child.html │ │ │ │ ├── 05_drop_next.html │ │ │ │ ├── 06_drop_allow.html │ │ │ │ ├── data │ │ │ │ │ └── data.php │ │ │ │ └── index.html │ │ │ ├── 32_grouping │ │ │ │ ├── 01_static.html │ │ │ │ ├── 02_dynamic.html │ │ │ │ ├── 03_aggregation.html │ │ │ │ ├── 04_custom_aggregation.html │ │ │ │ ├── 05_grouping_event.html │ │ │ │ ├── 06_extra_lines.html │ │ │ │ └── index.html │ │ │ ├── 80_docs │ │ │ │ ├── 11_minimal_init.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── bigtestdata.js │ │ │ │ ├── imdb.png │ │ │ │ ├── logo.jpg │ │ │ │ ├── mathdata.js │ │ │ │ ├── options.json │ │ │ │ ├── samples.css │ │ │ │ └── testdata.js │ │ │ └── index.html │ │ ├── 16_skins │ │ │ ├── 01_flat.html │ │ │ ├── 02_touch.html │ │ │ ├── 03_icons.html │ │ │ ├── 04_compact.html │ │ │ ├── 05_air.html │ │ │ ├── 06_clouds.html │ │ │ ├── 07_web.html │ │ │ ├── 08_terrace.html │ │ │ ├── 09_aircompact.html │ │ │ ├── 10_glamour.html │ │ │ ├── 11_modern.html │ │ │ ├── 12_light.html │ │ │ ├── 13_touch.html │ │ │ ├── 14_material.html │ │ │ ├── 15_contrast.html │ │ │ └── index.html │ │ ├── 17_datatree │ │ │ ├── 01_loading │ │ │ │ ├── 01_json_data.html │ │ │ │ ├── 02_xml_data.html │ │ │ │ ├── 03_big_data.html │ │ │ │ ├── 07_load_group.html │ │ │ │ ├── data │ │ │ │ │ ├── data.json │ │ │ │ │ └── data.xml │ │ │ │ └── index.html │ │ │ ├── 02_checkbox │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_three_state.html │ │ │ │ └── index.html │ │ │ ├── 03_styles │ │ │ │ ├── 01_treelines.html │ │ │ │ ├── 02_treelines_dnd.html │ │ │ │ ├── 03_icons.html │ │ │ │ ├── 04_without_icons.html │ │ │ │ ├── 05_custom_icons.html │ │ │ │ ├── 06_custom_select.html │ │ │ │ ├── 07_custom_folders.html │ │ │ │ ├── 08_styled_items.html │ │ │ │ ├── 09_custom_type.html │ │ │ │ ├── icons │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── folder_open.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── pre.png │ │ │ │ │ ├── puzzle.png │ │ │ │ │ └── rss.png │ │ │ │ └── index.html │ │ │ ├── 04_api │ │ │ │ ├── 01_selection.html │ │ │ │ ├── 02_sort.html │ │ │ │ ├── 03_filter.html │ │ │ │ ├── 04_multi_select.html │ │ │ │ ├── 05_sort_custom.html │ │ │ │ ├── 06_add_delete.html │ │ │ │ ├── 07_sync.html │ │ │ │ ├── 08_bind.html │ │ │ │ ├── 09_subdata.html │ │ │ │ └── index.html │ │ │ ├── 05_edit │ │ │ │ ├── 01_selection.html │ │ │ │ └── index.html │ │ │ ├── 16_dyn_loading │ │ │ │ ├── 01_dyn_loading.html │ │ │ │ ├── 02_load_branch.html │ │ │ │ ├── 03_on_data_request.html │ │ │ │ ├── data │ │ │ │ │ ├── data.php │ │ │ │ │ ├── data_dyn.php │ │ │ │ │ ├── data_dyn_json.php │ │ │ │ │ └── data_json.php │ │ │ │ └── index.html │ │ │ ├── 19_copypaste │ │ │ │ ├── 01_copy.html │ │ │ │ ├── 02_paste_modify.html │ │ │ │ ├── 03_paste_insert.html │ │ │ │ ├── 04_paste_custom.html │ │ │ │ └── index.html │ │ │ ├── 22_dnd │ │ │ │ ├── 01_basic_dnd.html │ │ │ │ ├── 02_in_out.html │ │ │ │ ├── 03_multidrag.html │ │ │ │ ├── 04_drop_as_child.html │ │ │ │ ├── 05_drop_next.html │ │ │ │ ├── 06_custom_marker.html │ │ │ │ ├── 07_order_mode.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── samples.css │ │ │ │ └── treedata.js │ │ │ └── index.html │ │ ├── 19_api │ │ │ ├── 01_disable.html │ │ │ ├── 02_hide_show.html │ │ │ ├── 04_progress_data.html │ │ │ ├── 05_progress_app.html │ │ │ ├── 06_export_excel.html │ │ │ ├── 07_export_png.html │ │ │ ├── 08_undo.html │ │ │ ├── 09_export_csv.html │ │ │ └── index.html │ │ ├── 20_multiview │ │ │ ├── 01_init.html │ │ │ ├── 02_navigation.html │ │ │ ├── 03_nested_multiviews.html │ │ │ ├── 04_tabbar.html │ │ │ ├── 05_tabbar_with_icons.html │ │ │ ├── 06_carousel.html │ │ │ ├── 07_no_animation.html │ │ │ ├── 08_tabview.html │ │ │ ├── 09_fit_biggest.html │ │ │ ├── 10_many_tabs.html │ │ │ ├── 11_close_button.html │ │ │ ├── 12_view_recreating.html │ │ │ ├── 13_tabview_dynamic.html │ │ │ ├── 14_hide_options.html │ │ │ ├── data │ │ │ │ └── charts.js │ │ │ └── index.html │ │ ├── 21_upload │ │ │ ├── 01_init_list.html │ │ │ ├── 02_init_template.html │ │ │ ├── 03_manual_send.html │ │ │ ├── 04_prefill_with_data.html │ │ │ ├── 05_attachment.html │ │ │ ├── 06_integration.html │ │ │ ├── 06_progress_bar.html │ │ │ ├── 07_form.html │ │ │ ├── 08_single_upload.html │ │ │ ├── 09_integration_to_element.html │ │ │ ├── 10_accept.html │ │ │ ├── 11_directory_upload.html │ │ │ ├── index.html │ │ │ └── php │ │ │ │ ├── photo.php │ │ │ │ ├── photos │ │ │ │ ├── 1.png │ │ │ │ └── 2.png │ │ │ │ ├── saveform.php │ │ │ │ └── upload.php │ │ ├── 22_dnd │ │ │ ├── 01_basic_dnd.html │ │ │ ├── 02_drag_order.html │ │ │ ├── 03_drag_handle.html │ │ │ ├── 04_html_dnd.html │ │ │ ├── 05_html_dnd_in.html │ │ │ ├── 06_native_dnd.html │ │ │ ├── handle.png │ │ │ └── index.html │ │ ├── 23_markup │ │ │ ├── 01_html │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_form.html │ │ │ │ ├── 03_datatable.html │ │ │ │ ├── 04_by_ajax.html │ │ │ │ ├── 05_accordion.html │ │ │ │ ├── 06_tabbar.html │ │ │ │ ├── 07_fieldset.html │ │ │ │ ├── 08_layouts.html │ │ │ │ ├── 09_window.html │ │ │ │ ├── 10_chart.html │ │ │ │ ├── 11_pager.html │ │ │ │ ├── 12_menu.html │ │ │ │ ├── data │ │ │ │ │ ├── book.xml │ │ │ │ │ ├── chart.json │ │ │ │ │ ├── config.html │ │ │ │ │ └── data.json │ │ │ │ └── index.html │ │ │ ├── 02_xhtml │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_form.html │ │ │ │ ├── 03_datatable.html │ │ │ │ ├── 04_by_ajax.html │ │ │ │ ├── 05_accordion.html │ │ │ │ ├── 06_tabbar.html │ │ │ │ ├── 07_fieldset.html │ │ │ │ ├── 08_layouts.html │ │ │ │ ├── 09_window.html │ │ │ │ ├── data │ │ │ │ │ ├── book.xml │ │ │ │ │ ├── config.xml │ │ │ │ │ └── data.json │ │ │ │ └── index.html │ │ │ ├── 03_xml │ │ │ │ ├── 01_custom_namespace.html │ │ │ │ ├── 02_without_namespace.html │ │ │ │ ├── 03_multi_init.html │ │ │ │ ├── 04_init_events.html │ │ │ │ ├── 05_tabbar.html │ │ │ │ ├── 06_tree_data.html │ │ │ │ ├── data │ │ │ │ │ ├── complex.xml │ │ │ │ │ ├── events.xml │ │ │ │ │ ├── tabbar.xml │ │ │ │ │ └── tree.xml │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── 24_colorpicker │ │ │ ├── 01_initialization.html │ │ │ ├── 02_custom_template.html │ │ │ ├── 03_custom_colors.html │ │ │ ├── 04_in_form.html │ │ │ ├── 05_proprty_sheet.html │ │ │ ├── 06_datatable.html │ │ │ └── index.html │ │ ├── 25_pager │ │ │ ├── 01_visible.html │ │ │ ├── 02_apionly.html │ │ │ ├── 03_layout.html │ │ │ ├── 04_template.html │ │ │ ├── 05_twoareas.html │ │ │ ├── 06_twoareas_layout.html │ │ │ ├── 07_animate.html │ │ │ ├── 08_animate_types.html │ │ │ ├── 09_animate_types_datatable.html │ │ │ ├── 10_size_to_page.html │ │ │ ├── 11_page_to_size.html │ │ │ ├── 12_standalone_pager.html │ │ │ └── index.html │ │ ├── 26_carousel │ │ │ ├── 01_init.html │ │ │ ├── 02_types.html │ │ │ ├── 03_outer_navigation.html │ │ │ ├── imgs │ │ │ │ ├── image001.jpg │ │ │ │ ├── image002.jpg │ │ │ │ ├── image003.jpg │ │ │ │ ├── image004.jpg │ │ │ │ ├── image005.jpg │ │ │ │ └── image006.jpg │ │ │ └── index.html │ │ ├── 27_video │ │ │ ├── 01_init.html │ │ │ ├── 02_autoplay.html │ │ │ ├── 03_api.html │ │ │ └── index.html │ │ ├── 28_sidemenu │ │ │ ├── 01_sidebar.html │ │ │ ├── 02_left.html │ │ │ ├── 03_top.html │ │ │ ├── 04_bottom.html │ │ │ ├── 05_right.html │ │ │ └── index.html │ │ ├── 32_thirdparty │ │ │ ├── 01_mercury.html │ │ │ ├── 02_nicedit.html │ │ │ ├── 03_tinymce.html │ │ │ ├── 04_scheduler.html │ │ │ ├── 05_sigma.html │ │ │ ├── 06_d3.html │ │ │ ├── 07_raphael.html │ │ │ ├── 08_codemirror.html │ │ │ ├── 10_here_map.html │ │ │ ├── 11_yandex_map.html │ │ │ ├── 12_open_map.html │ │ │ ├── 13_gridselect.html │ │ │ ├── 13_gridselect_editor.html │ │ │ ├── 14_dataselect.html │ │ │ ├── 14_dataselect_editor.html │ │ │ ├── 15_ckeditor.html │ │ │ ├── data │ │ │ │ ├── chart.json │ │ │ │ ├── flare.json │ │ │ │ ├── image001.JPG │ │ │ │ ├── image002.JPG │ │ │ │ ├── image003.JPG │ │ │ │ ├── image004.JPG │ │ │ │ ├── image005.JPG │ │ │ │ ├── image006.JPG │ │ │ │ └── les_miserables.gexf │ │ │ └── index.html │ │ ├── 34_googlemap │ │ │ ├── 01_basic.html │ │ │ ├── 02_markers.html │ │ │ ├── 03_markers_info.html │ │ │ ├── 04_markers_draggable.html │ │ │ ├── 05_heatmap.html │ │ │ ├── data │ │ │ │ └── heatmap.json │ │ │ └── index.html │ │ ├── 35_print │ │ │ ├── 01_layout.html │ │ │ ├── 02_form.html │ │ │ ├── 03_scrollview.html │ │ │ ├── 04_list.html │ │ │ ├── 05_list_x.html │ │ │ ├── 06_dataview.html │ │ │ ├── 07_wide_dataview.html │ │ │ ├── 08_tree.html │ │ │ ├── 09_chart.html │ │ │ ├── 10_datatable.html │ │ │ ├── 11_wide_datatable.html │ │ │ ├── 12_header_footer.html │ │ │ ├── 13_fullpage.html │ │ │ └── index.html │ │ ├── 36_geochart │ │ │ ├── 01_geochart.html │ │ │ ├── 02_geochart_data.html │ │ │ ├── 03_geochart_columns.html │ │ │ ├── 04_geochart_crud.html │ │ │ ├── 05_geochart_events.html │ │ │ ├── 06_geochart_modes.html │ │ │ ├── 07_geochart_tooltip.html │ │ │ ├── 08_geochart_selection.html │ │ │ ├── data │ │ │ │ ├── countries.json │ │ │ │ └── data.js │ │ │ └── index.html │ │ ├── 40_serverside │ │ │ ├── 01_php_vanila │ │ │ │ ├── 01_datatable_loading.html │ │ │ │ ├── 02_datatable_saving.html │ │ │ │ ├── 03_datatable_reordering.html │ │ │ │ ├── 04_datatree_loading.html │ │ │ │ ├── 05_datatree_saving.html │ │ │ │ ├── 06_form_loading.html │ │ │ │ ├── 07_form_saving.html │ │ │ │ ├── 08_datastore.html │ │ │ │ ├── 09_datastore_dynamic.html │ │ │ │ ├── 10_datatable_update.html │ │ │ │ ├── 11_datatable_sort_filter.html │ │ │ │ ├── index.html │ │ │ │ └── server │ │ │ │ │ ├── datatable.php │ │ │ │ │ ├── datatable_order.php │ │ │ │ │ ├── datatable_save.php │ │ │ │ │ ├── datatable_save_order.php │ │ │ │ │ ├── datatable_update.php │ │ │ │ │ ├── datatree.php │ │ │ │ │ ├── datatree_save.php │ │ │ │ │ ├── form.php │ │ │ │ │ └── form_save.php │ │ │ ├── 02_php_connector │ │ │ │ ├── 01_datatable_loading.html │ │ │ │ ├── 02_datatable_saving.html │ │ │ │ ├── 05_datatree_saving.html │ │ │ │ ├── index.html │ │ │ │ └── server │ │ │ │ │ ├── datatable.php │ │ │ │ │ └── datatree.php │ │ │ ├── 03_php_custom │ │ │ │ ├── 01_datatable_loading.html │ │ │ │ ├── 02_datatable_saving_rest.html │ │ │ │ ├── 03_datatable_cache.html │ │ │ │ ├── 04_datatable_cache_static.html │ │ │ │ ├── 05_datatable_offline.html │ │ │ │ ├── 06_datatable_saving_rest_json.html │ │ │ │ ├── index.html │ │ │ │ └── server │ │ │ │ │ ├── datatable.php │ │ │ │ │ ├── datatable_rest.php │ │ │ │ │ └── datatable_rest_json.php │ │ │ ├── 04_websockets │ │ │ │ ├── 01_sockets_chat.zip │ │ │ │ └── index.html │ │ │ ├── 05_indexeddb │ │ │ │ ├── 01_datatable_loading.html │ │ │ │ ├── 02_datatable_saving.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── 60_pro │ │ │ ├── 01_datatable │ │ │ │ ├── 01_colspans │ │ │ │ │ ├── 01_colspans.html │ │ │ │ │ ├── 02_colspans_big.html │ │ │ │ │ └── index.html │ │ │ │ ├── 02_headermenu │ │ │ │ │ ├── 03_header_menu.html │ │ │ │ │ ├── 04_header_menu_extended.html │ │ │ │ │ ├── 05_header_menu_icon.html │ │ │ │ │ ├── 06_header_menu_spans.html │ │ │ │ │ └── index.html │ │ │ │ ├── 03_filters │ │ │ │ │ ├── 04_filter_daterange.html │ │ │ │ │ ├── 05_select_filter.html │ │ │ │ │ ├── 06_filter_multiselect.html │ │ │ │ │ ├── 07_filter_daterange.html │ │ │ │ │ ├── 08_filter_multicombo.html │ │ │ │ │ ├── 09_multiselect_values.html │ │ │ │ │ └── index.html │ │ │ │ ├── 04_editors │ │ │ │ │ ├── 08_editor_multiselect.html │ │ │ │ │ ├── 09_grid_editor.html │ │ │ │ │ ├── 10_data_editor.html │ │ │ │ │ └── index.html │ │ │ │ ├── 05_state │ │ │ │ │ ├── 01_basic.html │ │ │ │ │ ├── 02_filtering.html │ │ │ │ │ ├── 03_session_state.html │ │ │ │ │ ├── 04_get_state.html │ │ │ │ │ ├── 05_treetable_state.html │ │ │ │ │ └── index.html │ │ │ │ ├── 06_api │ │ │ │ │ ├── 10_header_rotate_autoheight.html │ │ │ │ │ ├── 11_rotate_header.html │ │ │ │ │ ├── 12_group_columns.html │ │ │ │ │ ├── 14_area_selection.html │ │ │ │ │ ├── 15_excel_styles.html │ │ │ │ │ └── index.html │ │ │ │ ├── 07_sub │ │ │ │ │ ├── 01_sub_rows.html │ │ │ │ │ ├── 02_sub_autoheight.html │ │ │ │ │ ├── 03_sub_api.html │ │ │ │ │ ├── 04_sub_grid.html │ │ │ │ │ ├── 05_sub_grid_data.html │ │ │ │ │ ├── 06_sub_grid_url.html │ │ │ │ │ ├── 07_sub_form.html │ │ │ │ │ └── index.html │ │ │ │ ├── 08_sparklines │ │ │ │ │ ├── 01_init.html │ │ │ │ │ ├── 02_area.html │ │ │ │ │ ├── 03_bars.html │ │ │ │ │ ├── 04_spline.html │ │ │ │ │ ├── 05_splinearea.html │ │ │ │ │ ├── 06_pie.html │ │ │ │ │ ├── 07_tooltips.html │ │ │ │ │ ├── 08_colors.html │ │ │ │ │ ├── 09_outside.html │ │ │ │ │ ├── 10_settings.html │ │ │ │ │ └── index.html │ │ │ │ ├── 09_frozen_rows │ │ │ │ │ ├── 01_init.html │ │ │ │ │ ├── 02_sort_filter.html │ │ │ │ │ ├── 03_api.html │ │ │ │ │ ├── 04_selection.html │ │ │ │ │ ├── 05_lines.html │ │ │ │ │ ├── data │ │ │ │ │ │ └── data.json │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ ├── 02_form │ │ │ │ ├── 01_multitext.html │ │ │ │ ├── 02_multiselect.html │ │ │ │ ├── 03_grid_select.html │ │ │ │ ├── 04_data_select.html │ │ │ │ ├── 05_grid_multiselect.html │ │ │ │ ├── 06_multicombo.html │ │ │ │ ├── 07_multicombo_tag.html │ │ │ │ ├── 08_multicombo_new_values.html │ │ │ │ ├── 09_formatted_input.html │ │ │ │ ├── 10_formatted_inputs_validation.html │ │ │ │ ├── 11_daterangepicker.html │ │ │ │ ├── data │ │ │ │ │ ├── image0001.jpg │ │ │ │ │ ├── image0002.jpg │ │ │ │ │ ├── image0003.jpg │ │ │ │ │ ├── image0004.jpg │ │ │ │ │ ├── image0005.jpg │ │ │ │ │ ├── image0006.jpg │ │ │ │ │ └── names.js │ │ │ │ └── index.html │ │ │ ├── 03_api │ │ │ │ ├── 01_customscroll.html │ │ │ │ ├── 02_state.html │ │ │ │ ├── 03_customscrol_mixed.html │ │ │ │ ├── 04_customscroll_tree.html │ │ │ │ ├── 05_customscroll_styling.html │ │ │ │ └── index.html │ │ │ ├── 04_property │ │ │ │ ├── 01_editors.html │ │ │ │ ├── 02_grid_editor.html │ │ │ │ ├── 03_data_editor.html │ │ │ │ ├── 04_suggest.html │ │ │ │ └── index.html │ │ │ ├── 06_tree │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 03_session_state.html │ │ │ │ └── index.html │ │ │ ├── 07_organogram │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_list.html │ │ │ │ ├── 03_autoheight.html │ │ │ │ ├── 04_autowidth.html │ │ │ │ ├── 05_style.html │ │ │ │ ├── 06_events.html │ │ │ │ ├── 07_templates.html │ │ │ │ ├── 08_list_blocks.html │ │ │ │ ├── 09_list_nested.html │ │ │ │ ├── common │ │ │ │ │ ├── data.js │ │ │ │ │ └── photo.png │ │ │ │ └── index.html │ │ │ ├── 08_barcode │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_types.html │ │ │ │ ├── 03_custom_type.html │ │ │ │ └── index.html │ │ │ ├── 09_portlet │ │ │ │ ├── 01_portlet_replace.html │ │ │ │ ├── 02_portlet_move.html │ │ │ │ ├── 03_portlet_drag_header.html │ │ │ │ ├── 04_drag_component.html │ │ │ │ ├── 05_one_direction.html │ │ │ │ ├── 06_grid_layout.html │ │ │ │ ├── 07_grid_layout_api.html │ │ │ │ ├── 08_dashboard.html │ │ │ │ ├── 09_dashboard_state.html │ │ │ │ ├── 10_dashboard_menu.html │ │ │ │ ├── 11_portlet_save_state.html │ │ │ │ └── index.html │ │ │ ├── 10_viewers │ │ │ │ ├── 01_pdf.html │ │ │ │ ├── 02_excel_viewer.html │ │ │ │ ├── 03_excel_upload.html │ │ │ │ ├── 04_excel_proxy.html │ │ │ │ ├── 05_pdf_upload.html │ │ │ │ ├── 06_pdf_load.html │ │ │ │ ├── files │ │ │ │ │ ├── WebixDocs.pdf │ │ │ │ │ └── data.xlsx │ │ │ │ └── index.html │ │ │ ├── 11_treemap │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_colors.html │ │ │ │ ├── 03_one_level.html │ │ │ │ ├── 04_events.html │ │ │ │ ├── 05_header.html │ │ │ │ ├── data │ │ │ │ │ ├── data.json │ │ │ │ │ ├── data_colors.json │ │ │ │ │ └── data_path.json │ │ │ │ └── index.html │ │ │ ├── 12_rangechart │ │ │ │ ├── 01_basic.html │ │ │ │ ├── 02_series.html │ │ │ │ └── index.html │ │ │ ├── 13_layout │ │ │ │ ├── 01_abslayout.html │ │ │ │ ├── 02_datalayout.html │ │ │ │ ├── 03_datalayout_repeater.html │ │ │ │ ├── 04_datalayout_crud.html │ │ │ │ ├── 05_datalayout_complex.html │ │ │ │ ├── 06_flex_datalayout.html │ │ │ │ ├── 07_abslayout_mixed.html │ │ │ │ ├── 08_datalayout_save.html │ │ │ │ ├── data │ │ │ │ │ ├── data.js │ │ │ │ │ └── year.js │ │ │ │ └── index.html │ │ │ ├── 14_daterange │ │ │ │ ├── 01_daterange.html │ │ │ │ ├── 02_daterange_icons.html │ │ │ │ └── index.html │ │ │ ├── 15_gage │ │ │ │ ├── 01_init.html │ │ │ │ ├── 02_color.html │ │ │ │ └── index.html │ │ │ ├── 16_bulletgraph │ │ │ │ ├── 01_init.html │ │ │ │ └── index.html │ │ │ ├── common │ │ │ │ ├── samples.css │ │ │ │ └── testdata.js │ │ │ └── index.html │ │ ├── 80_docs │ │ │ ├── 01_basic_app.html │ │ │ ├── 02_basic_app.html │ │ │ ├── 03_basic_app.html │ │ │ ├── accordion.html │ │ │ ├── accordionitem.html │ │ │ ├── autoid.html │ │ │ ├── binding_rule.html │ │ │ ├── custom_ed.html │ │ │ ├── custom_holidays.html │ │ │ ├── data │ │ │ │ ├── connector.php │ │ │ │ ├── pageA.html │ │ │ │ └── pageB.html │ │ │ ├── data_binding.html │ │ │ ├── dataview_formatting.html │ │ │ ├── dataview_italic.html │ │ │ ├── dataview_resizing.html │ │ │ ├── dataview_type.html │ │ │ ├── dates.html │ │ │ ├── default_data.html │ │ │ ├── default_template.html │ │ │ ├── editors.html │ │ │ ├── getpopup.html │ │ │ ├── grouplist_openstate.html │ │ │ ├── history.html │ │ │ ├── icons.html │ │ │ ├── iframe.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── multiple_property_filter.html │ │ │ ├── multiview_animation.html │ │ │ ├── new.html │ │ │ ├── nonui.html │ │ │ ├── quick_start_datatree.html │ │ │ ├── simple_app.html │ │ │ ├── simple_dataview.html │ │ │ ├── styled_window.html │ │ │ ├── suggest_combo.html │ │ │ ├── tabs_popup.html │ │ │ ├── template_types.html │ │ │ ├── unit_items.html │ │ │ ├── validation_rules.html │ │ │ └── window_offset.html │ │ ├── common │ │ │ ├── chartdata.js │ │ │ ├── companies.js │ │ │ ├── config.php │ │ │ ├── connector │ │ │ │ ├── base_connector.php │ │ │ │ ├── data_connector.php │ │ │ │ ├── dataprocessor.php │ │ │ │ ├── db_common.php │ │ │ │ ├── db_sqlite3.php │ │ │ │ ├── scheduler_connector.php │ │ │ │ ├── strategy.php │ │ │ │ ├── tools.php │ │ │ │ ├── update.php │ │ │ │ └── xss_filter.php │ │ │ ├── docs.css │ │ │ ├── dump.sql │ │ │ ├── imgs │ │ │ │ ├── 18 │ │ │ │ │ ├── copy.gif │ │ │ │ │ ├── cut.gif │ │ │ │ │ ├── new.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── paste.gif │ │ │ │ │ ├── print.gif │ │ │ │ │ ├── redo.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ └── undo.gif │ │ │ │ ├── 24 │ │ │ │ │ ├── copy.gif │ │ │ │ │ ├── cut.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── paste.gif │ │ │ │ │ └── save.gif │ │ │ │ ├── 32 │ │ │ │ │ ├── copy.gif │ │ │ │ │ ├── cut.gif │ │ │ │ │ ├── new.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── paste.gif │ │ │ │ │ ├── print.gif │ │ │ │ │ ├── redo.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ └── undo.gif │ │ │ │ └── 48 │ │ │ │ │ ├── copy.gif │ │ │ │ │ ├── cut.gif │ │ │ │ │ ├── new.gif │ │ │ │ │ ├── open.gif │ │ │ │ │ ├── paste.gif │ │ │ │ │ ├── redo.gif │ │ │ │ │ ├── save.gif │ │ │ │ │ └── undo.gif │ │ │ ├── samples.css │ │ │ ├── testdata.js │ │ │ ├── testdata.sqlite │ │ │ └── treedata.js │ │ └── index.html │ │ └── whatsnew.txt ├── templates │ ├── index.html │ ├── layout.html │ ├── logging.html │ ├── macros.html │ └── table.html ├── tests │ ├── .pylintrc │ ├── __init__.py │ ├── test_betfair_engine.py │ ├── test_betfs_tests.py │ ├── test_data │ │ ├── betfair_data │ │ │ ├── event_types.json │ │ │ ├── list_events.json │ │ │ ├── list_markets.json │ │ │ └── update_prices.json │ │ ├── bfextract.json │ │ ├── matchbook_data │ │ │ ├── event.json │ │ │ ├── getmarkets.json │ │ │ └── sport.json │ │ ├── race_status.json │ │ ├── single_market.pickle │ │ └── turf_data │ │ │ └── oddschecker.html │ ├── test_matchbook_engine.py │ ├── test_place_bets.py │ ├── test_pnl.py │ ├── test_pylint.py │ ├── test_tensorflow.py │ └── test_turf.py ├── utils │ ├── __init__.py │ ├── calculator.py │ ├── logger.py │ ├── mongo_manager.py │ ├── mongo_queries │ │ ├── bookies.js │ │ ├── bucket_by_year.js │ │ ├── layall_payoff_by_country.js │ │ └── null_scrapes.js │ └── tools.py ├── webserver.py └── webserver.wsgi ├── update_venv.bat └── update_venv_gpu.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/.pylintrc -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/README.rst -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /doc/chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/doc/chart.png -------------------------------------------------------------------------------- /doc/chart_cumulative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/doc/chart_cumulative.png -------------------------------------------------------------------------------- /doc/chart_cumulative_year.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/doc/chart_cumulative_year.png -------------------------------------------------------------------------------- /environment_gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/environment_gpu.yml -------------------------------------------------------------------------------- /environment_linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/environment_linux.yml -------------------------------------------------------------------------------- /environment_no_gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/environment_no_gpu.yml -------------------------------------------------------------------------------- /export_venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/export_venv.bat -------------------------------------------------------------------------------- /horse_racing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/app.py -------------------------------------------------------------------------------- /horse_racing/backtesting/avg_ltp_over_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/avg_ltp_over_time.py -------------------------------------------------------------------------------- /horse_racing/backtesting/backbets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/backbets.py -------------------------------------------------------------------------------- /horse_racing/backtesting/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/backtesting.py -------------------------------------------------------------------------------- /horse_racing/backtesting/historic_data_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/historic_data_processor.py -------------------------------------------------------------------------------- /horse_racing/backtesting/odds_histogram_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/odds_histogram_analysis.py -------------------------------------------------------------------------------- /horse_racing/backtesting/return_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/backtesting/return_analysis.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/betfair_manager/bet_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/bet_logic.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/betfair_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/betfair_manager.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/bookmakers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/bookmakers.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/engine.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/query_market.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/query_market.py -------------------------------------------------------------------------------- /horse_racing/betfair_manager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/betfair_manager/utils.py -------------------------------------------------------------------------------- /horse_racing/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/config.ini -------------------------------------------------------------------------------- /horse_racing/data/__init__.py: -------------------------------------------------------------------------------- 1 | """ process historic date from BF """ 2 | 3 | -------------------------------------------------------------------------------- /horse_racing/data/raw_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/data/raw_parser.py -------------------------------------------------------------------------------- /horse_racing/framework/arbitrage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/framework/arbitrage.py -------------------------------------------------------------------------------- /horse_racing/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/legacy/backtesting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/legacy/backtesting/betf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/backtesting/betf_parser.py -------------------------------------------------------------------------------- /horse_racing/legacy/backtesting/betf_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/backtesting/betf_race.py -------------------------------------------------------------------------------- /horse_racing/legacy/dataprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/legacy/dataprocessing/data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/dataprocessing/data_analysis.py -------------------------------------------------------------------------------- /horse_racing/legacy/dataprocessing/headtohead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/dataprocessing/headtohead.py -------------------------------------------------------------------------------- /horse_racing/legacy/dataprocessing/racebyrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/dataprocessing/racebyrace.py -------------------------------------------------------------------------------- /horse_racing/legacy/matlab/simple_nn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/matlab/simple_nn.m -------------------------------------------------------------------------------- /horse_racing/legacy/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/legacy/models/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/models/classifiers.py -------------------------------------------------------------------------------- /horse_racing/legacy/models/model_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/models/model_config.py -------------------------------------------------------------------------------- /horse_racing/legacy/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/models/utils.py -------------------------------------------------------------------------------- /horse_racing/legacy/sample_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/sample_data.csv -------------------------------------------------------------------------------- /horse_racing/legacy/sample_data2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/sample_data2.csv -------------------------------------------------------------------------------- /horse_racing/legacy/sample_data3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/legacy/sample_data3.csv -------------------------------------------------------------------------------- /horse_racing/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/matchbook_manager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/matchbook_manager/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/matchbook_manager/engine.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/neural_networks/custom_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/custom_optimization.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/lay_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/lay_all.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/matlab/golden_hornet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/matlab/golden_hornet.m -------------------------------------------------------------------------------- /horse_racing/neural_networks/matlab/golden_hornet_backtesting_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/matlab/golden_hornet_backtesting_data.csv -------------------------------------------------------------------------------- /horse_racing/neural_networks/matlab/golden_hornet_training_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/matlab/golden_hornet_training_data.csv -------------------------------------------------------------------------------- /horse_racing/neural_networks/matlab/trainClassifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/matlab/trainClassifier.m -------------------------------------------------------------------------------- /horse_racing/neural_networks/neural_network_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/neural_network_base.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/neural_network_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/neural_network_launcher.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/neural_networks_nicolas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/neural_networks_nicolas.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/backtesting-20180323-222855.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/backtesting-20180323-222855.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180318-164301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180318-164301.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180318-165241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180318-165241.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180318-184839.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180318-184839.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180321-003043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180321-003043.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180426-150117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180426-150117.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180508-224228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180508-224228.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/plots/training-20180508-224741.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/plots/training-20180508-224741.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/backing_us/hyperparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/backing_us/hyperparams.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/backing_us/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/backing_us/model.h5 -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/backing_us/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/backing_us/model.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flying_spider/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flying_spider/model.h5 -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flying_spider/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flying_spider/model.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flyingfly1/hyperparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flyingfly1/hyperparams.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flyingfly1/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flyingfly1/model.h5 -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flyingfly1/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flyingfly1/model.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/flyingfly1/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/flyingfly1/tensorboard.png -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/lay_all/hyperparams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/lay_all/hyperparams.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/lay_all/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/lay_all/model.h5 -------------------------------------------------------------------------------- /horse_racing/neural_networks/saved_models/lay_all/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/saved_models/lay_all/model.json -------------------------------------------------------------------------------- /horse_racing/neural_networks/tf/mnist_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/tf/mnist_softmax.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/tf/mnist_softmax_xla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/tf/mnist_softmax_xla.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/tf/mnist_with_summaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/tf/mnist_with_summaries.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/tf/profit_max_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/tf/profit_max_tensorflow.py -------------------------------------------------------------------------------- /horse_racing/neural_networks/tf/profit_maximiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/neural_networks/tf/profit_maximiser.py -------------------------------------------------------------------------------- /horse_racing/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/notes.txt -------------------------------------------------------------------------------- /horse_racing/pnl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/pnl/pnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/pnl/pnl.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/app.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/betting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/betting.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/agent.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/examples/example.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/examples/test_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/examples/test_catch.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/examples/test_snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/examples/test_snake.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/games/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/games/__init__.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/games/catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/games/catch.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/games/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/games/game.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/games/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/games/snake.py -------------------------------------------------------------------------------- /horse_racing/reinforced_learning/qlearning4k/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/reinforced_learning/qlearning4k/memory.py -------------------------------------------------------------------------------- /horse_racing/scraping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/scraping/price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/scraping/price.py -------------------------------------------------------------------------------- /horse_racing/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/style.css -------------------------------------------------------------------------------- /horse_racing/static/webix/Webix Trial Developer License Agreement.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/Webix Trial Developer License Agreement.pdf -------------------------------------------------------------------------------- /horse_racing/static/webix/Webix Trial Developer License Agreement.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/Webix Trial Developer License Agreement.rtf -------------------------------------------------------------------------------- /horse_racing/static/webix/Webix Trial Developer License Agreement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/Webix Trial Developer License Agreement.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/filemanager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/filemanager.css -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/filemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/filemanager.js -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/fonts/filemanager.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/fonts/filemanager.eot -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/fonts/filemanager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/fonts/filemanager.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/fonts/filemanager.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/fonts/filemanager.ttf -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/codebase/fonts/filemanager.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/codebase/fonts/filemanager.woff -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.1 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/01_basic/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/01_basic/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/01_basic/02_real_fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/01_basic/02_real_fs.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/01_basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/01_basic/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/02_events/03_drag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/02_events/03_drag.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/02_events/04_rename.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/02_events/04_rename.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/02_events/05_copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/02_events/05_copy.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/02_events/06_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/02_events/06_error.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/02_events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/02_events/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/04_loading/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/04_loading/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/FileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/FileSystem.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/PHPFileSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/PHPFileSystem.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/config.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/data.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/data_branch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/data_branch.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/data_dyn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/data_dyn.php -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/docs.css -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/common/style.css -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/filemanager/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/filemanager/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/hello.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/codebase/kanban.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/codebase/kanban.css -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/codebase/kanban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/codebase/kanban.js -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.0 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/02_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/02_icons.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/03_user_avatars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/03_user_avatars.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/04_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/04_templates.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/05_styling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/05_styling.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/06_multiselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/06_multiselect.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/01_basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/01_basic/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/02_events/04_item_click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/02_events/04_item_click.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/02_events/05_dbl_click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/02_events/05_dbl_click.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/02_events/06_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/02_events/06_context.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/02_events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/02_events/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/03_data_operations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/03_data_operations/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/04_layouts/01_columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/04_layouts/01_columns.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/04_layouts/03_swimlanes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/04_layouts/03_swimlanes.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/04_layouts/05_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/04_layouts/05_tabs.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/04_layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/04_layouts/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/05_php/01_loading_saving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/05_php/01_loading_saving.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/05_php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/05_php/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/05_php/server/kanban.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/05_php/server/kanban.sqlite -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/05_php/server/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/05_php/server/tasks.php -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/05_php/server/tasks_save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/05_php/server/tasks_save.php -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/data.js -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/1.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/2.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/3.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/4.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/5.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/6.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/7.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/imgs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/imgs/8.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/photos/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/photos/1.png -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/photos/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/photos/2.png -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/photos/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/photos/3.png -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/style.css -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/common/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/common/types.js -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/kanban/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/kanban/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/codebase/pivot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/codebase/pivot.css -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/codebase/pivot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/codebase/pivot.js -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/codebase/pivot.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/codebase/pivot.worker.js -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.4 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/01_inline_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/01_inline_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/02_loading_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/02_loading_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/03_configuring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/03_configuring.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/05_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/05_locale.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/06_custom_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/06_custom_titles.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/07_huge_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/07_huge_set.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/08_sorted_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/08_sorted_header.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/10_readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/10_readonly.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/01_init/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/01_init/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/01_inline_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/01_inline_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/02_loading_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/02_loading_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/04_configuring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/04_configuring.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/05_locale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/05_locale.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/06_custom_titles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/06_custom_titles.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/07_readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/07_readonly.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/02_chart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/02_chart/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/03_table_api/05_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/03_table_api/05_export.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/03_table_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/03_table_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/04_chart_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/04_chart_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/05_customization/02_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/05_customization/02_popup.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/05_customization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/05_customization/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/06_filters/02_add_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/06_filters/02_add_filter.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/06_filters/03_datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/06_filters/03_datepicker.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/06_filters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/06_filters/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/07_table_external/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/07_table_external/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/08_performance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/08_performance/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/common/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/common/data.json -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/common/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/common/example.csv -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/common/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/common/samples.css -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/common/testdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/common/testdata.js -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/pivot/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/pivot/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/codebase/querybuilder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/codebase/querybuilder.css -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/codebase/querybuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/codebase/querybuilder.js -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.3 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/samples/02_sorting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/samples/02_sorting/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/samples/03_sql/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/samples/03_sql/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/samples/03_sql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/samples/03_sql/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/samples/common/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/samples/common/docs.css -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/querybuilder/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/querybuilder/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/codebase/scheduler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/codebase/scheduler.css -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/codebase/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/codebase/scheduler.js -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.0 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/03_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/03_events.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/04_readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/04_readonly.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/data/data.json -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/data/mobile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/data/mobile.xml -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/01_basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/01_basic/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/02_recurring/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/02_recurring/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/03_data/data/events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/03_data/data/events.php -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/03_data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/03_data/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/common/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/common/config.php -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/common/connector/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/common/connector/tools.php -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/common/testdata.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/common/testdata.sqlite -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/scheduler/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/scheduler/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/codebase/spreadsheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/codebase/spreadsheet.css -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/codebase/spreadsheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/codebase/spreadsheet.js -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.0 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/package.json -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/01_basic/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/01_basic/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/01_basic/03_math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/01_basic/03_math.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/01_basic/05_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/01_basic/05_menu.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/01_basic/data/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/01_basic/data/ru.js -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/01_basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/01_basic/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/03_excel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/03_excel.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/05_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/05_events.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/06_export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/06_export.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/07_dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/07_dropdowns.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/08_sorting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/08_sorting.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/09_filters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/09_filters.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/11_images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/11_images.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/12_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/12_format.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/15_lock_cell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/15_lock_cell.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/19_csv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/19_csv.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/02_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/02_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/03_images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/03_images.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/config.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/data.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/get.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/image.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/sizes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/sizes.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/spans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/spans.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/05_php/server/styles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/05_php/server/styles.php -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/06_nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/06_nodejs/README.md -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/07_net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/07_net/README.md -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/06_dialogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/06_dialogs.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/chart.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/column.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/column.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/edit.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/hide.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/image.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/menu.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/other.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/other.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/images/row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/images/row.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/08_ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/08_ui/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/common/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/common/data.js -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/common/data_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/common/data_csv.csv -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/common/sheet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/common/sheet.sql -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/common/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/common/test.xlsx -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/webpack.config.js -------------------------------------------------------------------------------- /horse_racing/static/webix/spreadsheet/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/spreadsheet/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/PTS-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/PTS-bold.woff -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/PTS-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/PTS-webfont.woff -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/font-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/font-license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/be.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/de.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/en.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/es.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/fr.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/it.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/ja.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/pt.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/ru.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/i18n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/i18n/zh.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/excanvas/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/excanvas/AUTHORS.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/excanvas/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/excanvas/COPYING.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/excanvas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/excanvas/README.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/excanvas/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/excanvas/excanvas.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/swfobject.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/legacy/uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/legacy/uploader.swf -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/air.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/air.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/aircompact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/aircompact.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/clouds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/clouds.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/compact.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/contrast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/contrast.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/air.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/air.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/aircompact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/aircompact.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/clouds.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/clouds.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/compact.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/compact.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/contrast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/contrast.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/flat.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/glamour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/glamour.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/light.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/metro.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/terrace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/terrace.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/touch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/touch.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/debug/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/debug/web.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/flat.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/glamour.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/glamour.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/light.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/metro.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/terrace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/terrace.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/touch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/touch.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/skins/web.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/skins/web.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/webix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/webix.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/webix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/webix.d.ts -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/webix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/webix.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/webix.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/webix.js.map -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/codebase/webix_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/codebase/webix_debug.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/latest.txt: -------------------------------------------------------------------------------- 1 | 5.1.7 2 | -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/license.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/readme.txt -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/01_resizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/01_resizer.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/02_resize_limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/02_resize_limit.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/03_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/03_header.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/07_header_all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/07_header_all.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/08_min_size.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/08_min_size.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/10_performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/10_performance.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/11_responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/11_responsive.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/14_flex_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/14_flex_top.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/15_flex_inner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/15_flex_inner.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/17_align.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/17_align.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/01_layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/01_layout/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/02_toolbar/02_tabbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/02_toolbar/02_tabbar.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/02_toolbar/03_tabview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/02_toolbar/03_tabview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/02_toolbar/14_batches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/02_toolbar/14_batches.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/02_toolbar/20_richselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/02_toolbar/20_richselect.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/02_toolbar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/02_toolbar/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/01_menubar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/01_menubar.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/03_in_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/03_in_layout.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/04_context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/04_context.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/07_context_ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/07_context_ui.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/07_menu_toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/07_menu_toolbar.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/09_disable_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/09_disable_item.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/10_hide_item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/10_hide_item.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/12_submenu_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/12_submenu_config.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/13_hrefs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/13_hrefs.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/14_vertical_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/14_vertical_menu.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/15_menu_spacer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/15_menu_spacer.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/16_badges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/16_badges.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/images/html4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/images/html4.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/images/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/images/html5.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/03_menu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/03_menu/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/04_template/02_autoheight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/04_template/02_autoheight.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/04_template/03_ui_inside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/04_template/03_ui_inside.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/04_template/10_scrollview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/04_template/10_scrollview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/04_template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/04_template/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/01_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/01_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/02_list_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/02_list_layout.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/03_group_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/03_group_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/04_list_grouping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/04_list_grouping.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/05_editable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/05_editable.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/06_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/06_validation.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/07_empty_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/07_empty_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/08_xlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/08_xlist.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/09_copypaste.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/09_copypaste.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/10_filtering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/10_filtering.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/11_unitlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/11_unitlist.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/12_paging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/12_paging.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/13_ycount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/13_ycount.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/15_active_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/15_active_content.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/16_unitlist_pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/16_unitlist_pager.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/data/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/05_list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/05_list/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/06_dataview/05_edit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/06_dataview/05_edit/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/06_dataview/22_dnd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/06_dataview/22_dnd/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/06_dataview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/06_dataview/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/07_property/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/07_property/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/07_property/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/07_property/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/02_color/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/02_color/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/03_api/01_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/03_api/01_group.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/03_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/03_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/08_dynamic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/08_dynamic/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/11_scale/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/11_scale/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/08_chart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/08_chart/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/02_start_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/02_start_date.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/03_timepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/03_timepicker.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/05_fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/05_fullscreen.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/06_datepicker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/06_datepicker.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/10_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/10_icons.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/12_month_year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/12_month_year.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/09_calendar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/09_calendar/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/02_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/02_popup.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/03_alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/03_alert.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/04_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/04_confirm.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/05_popup_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/05_popup_menu.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/07_center.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/07_center.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/08_position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/08_position.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/09_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/09_icons.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/10_modal_box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/10_modal_box.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/11_scrollview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/11_scrollview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/12_fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/12_fullscreen.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/13_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/13_form.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/14_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/14_datatable.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/15_resize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/15_resize.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/10_window/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/10_window/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/11_htmlform/data/book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/11_htmlform/data/book.xml -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/11_htmlform/data/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/11_htmlform/data/form.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/11_htmlform/data/myform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/11_htmlform/data/myform.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/11_htmlform/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/11_htmlform/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/01_controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/01_controls/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/01_controls/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/01_controls/search.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/02_api/01_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/02_api/01_basic.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/02_api/10_binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/02_api/10_binding.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/02_api/11_dynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/02_api/11_dynamic.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/02_api/12_hotkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/02_api/12_hotkey.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/02_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/02_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/05_extras/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/05_extras/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/13_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/13_form/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/14_dataprocessor/02_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/14_dataprocessor/02_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/14_dataprocessor/04_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/14_dataprocessor/04_tree.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/14_dataprocessor/05_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/14_dataprocessor/05_form.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/14_dataprocessor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/14_dataprocessor/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/01_loading/data/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/01_loading/data/slow.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/15_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/15_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/22_dnd/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/22_dnd/handle.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/22_dnd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/22_dnd/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/common/imdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/common/imdb.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/common/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/common/logo.jpg -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/15_datatable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/15_datatable/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/01_flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/01_flat.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/02_touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/02_touch.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/03_icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/03_icons.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/04_compact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/04_compact.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/05_air.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/05_air.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/06_clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/06_clouds.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/07_web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/07_web.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/08_terrace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/08_terrace.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/09_aircompact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/09_aircompact.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/10_glamour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/10_glamour.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/11_modern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/11_modern.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/12_light.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/12_light.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/13_touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/13_touch.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/14_material.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/14_material.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/15_contrast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/15_contrast.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/16_skins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/16_skins/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/17_datatree/04_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/17_datatree/04_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/17_datatree/05_edit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/17_datatree/05_edit/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/17_datatree/22_dnd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/17_datatree/22_dnd/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/17_datatree/common/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/17_datatree/common/samples.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/17_datatree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/17_datatree/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/01_disable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/01_disable.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/02_hide_show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/02_hide_show.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/04_progress_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/04_progress_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/05_progress_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/05_progress_app.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/06_export_excel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/06_export_excel.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/07_export_png.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/07_export_png.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/08_undo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/08_undo.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/09_export_csv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/09_export_csv.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/19_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/19_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/20_multiview/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/20_multiview/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/20_multiview/04_tabbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/20_multiview/04_tabbar.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/20_multiview/08_tabview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/20_multiview/08_tabview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/20_multiview/data/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/20_multiview/data/charts.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/20_multiview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/20_multiview/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/01_init_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/01_init_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/05_attachment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/05_attachment.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/07_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/07_form.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/10_accept.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/10_accept.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/php/photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/php/photo.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/php/photos/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/php/photos/1.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/php/photos/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/php/photos/2.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/php/saveform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/php/saveform.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/21_upload/php/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/21_upload/php/upload.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/01_basic_dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/01_basic_dnd.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/02_drag_order.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/02_drag_order.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/03_drag_handle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/03_drag_handle.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/04_html_dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/04_html_dnd.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/05_html_dnd_in.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/05_html_dnd_in.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/06_native_dnd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/06_native_dnd.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/handle.png -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/22_dnd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/22_dnd/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/23_markup/01_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/23_markup/01_html/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/23_markup/03_xml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/23_markup/03_xml/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/23_markup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/23_markup/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/24_colorpicker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/24_colorpicker/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/01_visible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/01_visible.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/02_apionly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/02_apionly.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/03_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/03_layout.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/04_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/04_template.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/05_twoareas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/05_twoareas.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/07_animate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/07_animate.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/25_pager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/25_pager/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/26_carousel/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/26_carousel/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/26_carousel/02_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/26_carousel/02_types.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/26_carousel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/26_carousel/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/27_video/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/27_video/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/27_video/02_autoplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/27_video/02_autoplay.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/27_video/03_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/27_video/03_api.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/27_video/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/27_video/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/01_sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/01_sidebar.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/02_left.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/02_left.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/03_top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/03_top.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/04_bottom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/04_bottom.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/05_right.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/05_right.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/28_sidemenu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/28_sidemenu/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/32_thirdparty/05_sigma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/32_thirdparty/05_sigma.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/32_thirdparty/06_d3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/32_thirdparty/06_d3.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/32_thirdparty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/32_thirdparty/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/34_googlemap/01_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/34_googlemap/01_basic.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/34_googlemap/02_markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/34_googlemap/02_markers.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/34_googlemap/05_heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/34_googlemap/05_heatmap.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/34_googlemap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/34_googlemap/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/01_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/01_layout.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/02_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/02_form.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/03_scrollview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/03_scrollview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/04_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/04_list.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/05_list_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/05_list_x.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/06_dataview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/06_dataview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/08_tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/08_tree.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/09_chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/09_chart.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/10_datatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/10_datatable.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/13_fullpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/13_fullpage.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/35_print/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/35_print/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/36_geochart/01_geochart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/36_geochart/01_geochart.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/36_geochart/data/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/36_geochart/data/data.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/36_geochart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/36_geochart/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/40_serverside/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/40_serverside/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/02_form/data/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/02_form/data/names.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/02_form/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/02_form/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/03_api/02_state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/03_api/02_state.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/03_api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/03_api/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/06_tree/01_basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/06_tree/01_basic.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/06_tree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/06_tree/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/08_barcode/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/08_barcode/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/09_portlet/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/09_portlet/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/10_viewers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/10_viewers/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/11_treemap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/11_treemap/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/13_layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/13_layout/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/15_gage/01_init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/15_gage/01_init.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/15_gage/02_color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/15_gage/02_color.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/15_gage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/15_gage/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/common/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/common/samples.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/common/testdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/common/testdata.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/60_pro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/60_pro/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/01_basic_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/01_basic_app.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/02_basic_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/02_basic_app.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/03_basic_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/03_basic_app.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/accordion.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/accordionitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/accordionitem.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/autoid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/autoid.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/binding_rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/binding_rule.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/custom_ed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/custom_ed.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/custom_holidays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/custom_holidays.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/data/connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/data/connector.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/data/pageA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/data/pageA.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/data/pageB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/data/pageB.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/data_binding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/data_binding.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/dataview_italic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/dataview_italic.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/dataview_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/dataview_type.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/dates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/dates.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/default_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/default_data.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/editors.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/getpopup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/getpopup.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/history.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/icons.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/iframe.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/layout.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/new.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/nonui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/nonui.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/simple_app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/simple_app.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/simple_dataview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/simple_dataview.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/styled_window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/styled_window.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/suggest_combo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/suggest_combo.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/tabs_popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/tabs_popup.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/template_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/template_types.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/unit_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/unit_items.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/80_docs/window_offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/80_docs/window_offset.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/chartdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/chartdata.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/companies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/companies.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/config.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/connector/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/connector/tools.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/connector/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/connector/update.php -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/docs.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/dump.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/dump.sql -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/copy.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/cut.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/new.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/open.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/paste.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/print.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/redo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/save.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/18/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/18/undo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/24/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/24/copy.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/24/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/24/cut.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/24/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/24/open.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/24/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/24/paste.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/24/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/24/save.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/copy.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/cut.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/new.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/open.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/paste.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/print.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/redo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/save.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/32/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/32/undo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/copy.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/cut.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/new.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/open.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/paste.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/redo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/save.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/imgs/48/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/imgs/48/undo.gif -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/samples.css -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/testdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/testdata.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/testdata.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/testdata.sqlite -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/common/treedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/common/treedata.js -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/samples/index.html -------------------------------------------------------------------------------- /horse_racing/static/webix/webix/whatsnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/static/webix/webix/whatsnew.txt -------------------------------------------------------------------------------- /horse_racing/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/templates/index.html -------------------------------------------------------------------------------- /horse_racing/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/templates/layout.html -------------------------------------------------------------------------------- /horse_racing/templates/logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/templates/logging.html -------------------------------------------------------------------------------- /horse_racing/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/templates/macros.html -------------------------------------------------------------------------------- /horse_racing/templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/templates/table.html -------------------------------------------------------------------------------- /horse_racing/tests/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/.pylintrc -------------------------------------------------------------------------------- /horse_racing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/tests/test_betfair_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_betfair_engine.py -------------------------------------------------------------------------------- /horse_racing/tests/test_betfs_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_betfs_tests.py -------------------------------------------------------------------------------- /horse_racing/tests/test_data/betfair_data/event_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/betfair_data/event_types.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/betfair_data/list_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/betfair_data/list_events.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/betfair_data/list_markets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/betfair_data/list_markets.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/betfair_data/update_prices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/betfair_data/update_prices.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/bfextract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/bfextract.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/matchbook_data/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/matchbook_data/event.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/matchbook_data/getmarkets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/matchbook_data/getmarkets.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/matchbook_data/sport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/matchbook_data/sport.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/race_status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/race_status.json -------------------------------------------------------------------------------- /horse_racing/tests/test_data/single_market.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/single_market.pickle -------------------------------------------------------------------------------- /horse_racing/tests/test_data/turf_data/oddschecker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_data/turf_data/oddschecker.html -------------------------------------------------------------------------------- /horse_racing/tests/test_matchbook_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_matchbook_engine.py -------------------------------------------------------------------------------- /horse_racing/tests/test_place_bets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_place_bets.py -------------------------------------------------------------------------------- /horse_racing/tests/test_pnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_pnl.py -------------------------------------------------------------------------------- /horse_racing/tests/test_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_pylint.py -------------------------------------------------------------------------------- /horse_racing/tests/test_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_tensorflow.py -------------------------------------------------------------------------------- /horse_racing/tests/test_turf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/tests/test_turf.py -------------------------------------------------------------------------------- /horse_racing/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /horse_racing/utils/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/calculator.py -------------------------------------------------------------------------------- /horse_racing/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/logger.py -------------------------------------------------------------------------------- /horse_racing/utils/mongo_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/mongo_manager.py -------------------------------------------------------------------------------- /horse_racing/utils/mongo_queries/bookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/mongo_queries/bookies.js -------------------------------------------------------------------------------- /horse_racing/utils/mongo_queries/bucket_by_year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/mongo_queries/bucket_by_year.js -------------------------------------------------------------------------------- /horse_racing/utils/mongo_queries/layall_payoff_by_country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/mongo_queries/layall_payoff_by_country.js -------------------------------------------------------------------------------- /horse_racing/utils/mongo_queries/null_scrapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/mongo_queries/null_scrapes.js -------------------------------------------------------------------------------- /horse_racing/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/utils/tools.py -------------------------------------------------------------------------------- /horse_racing/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/webserver.py -------------------------------------------------------------------------------- /horse_racing/webserver.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/horse_racing/webserver.wsgi -------------------------------------------------------------------------------- /update_venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dickreuter/betfair-horse-racing/HEAD/update_venv.bat -------------------------------------------------------------------------------- /update_venv_gpu.bat: -------------------------------------------------------------------------------- 1 | conda env update -n horse_racing --file environment_gpu.yml --------------------------------------------------------------------------------