cosmos 4.5.2 → 5.0.2.pre.beta2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +14 -7
- data/Guardfile +14 -6
- data/LICENSE.txt +79 -265
- data/README.md +37 -120
- data/Rakefile +29 -242
- data/bin/cosmos +309 -229
- data/bin/cstol_converter +202 -190
- data/bin/rubysloc +19 -10
- data/bin/xtce_converter +12 -3
- data/data/config/_params.yaml +6 -4
- data/data/config/cmd_tlm_server.yaml +4 -4
- data/data/config/command.yaml +11 -7
- data/data/config/command_modifiers.yaml +4 -4
- data/data/config/interface_modifiers.yaml +23 -16
- data/data/config/item_modifiers.yaml +3 -3
- data/data/config/microservice.yaml +66 -0
- data/data/config/parameter_modifiers.yaml +3 -3
- data/data/config/plugins.yaml +217 -0
- data/data/config/screen.yaml +4 -10
- data/data/config/table_manager.yaml +15 -9
- data/data/config/target.yaml +68 -88
- data/data/config/target_config.yaml +94 -0
- data/data/config/telemetry.yaml +16 -9
- data/data/config/tool.yaml +57 -0
- data/data/config/widgets.yaml +478 -475
- data/ext/cosmos/ext/array/array.c +16 -7
- data/ext/cosmos/ext/array/extconf.rb +1 -1
- data/ext/cosmos/ext/buffered_file/buffered_file.c +63 -34
- data/ext/cosmos/ext/buffered_file/extconf.rb +1 -1
- data/ext/cosmos/ext/config_parser/config_parser.c +77 -35
- data/ext/cosmos/ext/config_parser/extconf.rb +1 -1
- data/ext/cosmos/ext/cosmos_io/cosmos_io.c +75 -64
- data/ext/cosmos/ext/cosmos_io/extconf.rb +1 -1
- data/ext/cosmos/ext/crc/crc.c +117 -109
- data/ext/cosmos/ext/crc/extconf.rb +2 -2
- data/ext/cosmos/ext/packet/extconf.rb +1 -1
- data/ext/cosmos/ext/packet/packet.c +113 -70
- data/ext/cosmos/ext/platform/extconf.rb +1 -1
- data/ext/cosmos/ext/platform/platform.c +85 -88
- data/ext/cosmos/ext/polynomial_conversion/extconf.rb +1 -1
- data/ext/cosmos/ext/polynomial_conversion/polynomial_conversion.c +13 -5
- data/ext/cosmos/ext/string/extconf.rb +1 -1
- data/ext/cosmos/ext/string/string.c +20 -8
- data/ext/cosmos/ext/structure/structure.c +612 -388
- data/ext/cosmos/ext/tabbed_plots_config/extconf.rb +1 -1
- data/ext/cosmos/ext/tabbed_plots_config/tabbed_plots_config.c +13 -4
- data/ext/cosmos/ext/telemetry/extconf.rb +1 -1
- data/ext/cosmos/ext/telemetry/telemetry.c +75 -48
- data/ext/mkrf_conf.rb +13 -4
- data/lib/cosmos/api/api.rb +63 -0
- data/lib/cosmos/api/authorized_api.rb +30 -0
- data/lib/cosmos/api/cmd_api.rb +444 -0
- data/lib/cosmos/api/config_api.rb +52 -0
- data/lib/cosmos/api/interface_api.rb +117 -0
- data/lib/cosmos/api/limits_api.rb +375 -0
- data/lib/cosmos/api/router_api.rb +117 -0
- data/lib/cosmos/api/settings_api.rb +58 -0
- data/lib/cosmos/api/target_api.rb +78 -0
- data/lib/cosmos/api/tlm_api.rb +435 -0
- data/lib/cosmos/bridge/bridge.rb +54 -0
- data/lib/cosmos/bridge/bridge_config.rb +167 -0
- data/lib/cosmos/bridge/bridge_interface_thread.rb +42 -0
- data/lib/cosmos/bridge/bridge_router_thread.rb +42 -0
- data/lib/cosmos/ccsds/ccsds_packet.rb +11 -6
- data/lib/cosmos/ccsds/ccsds_parser.rb +11 -6
- data/lib/cosmos/config/config_parser.rb +63 -17
- data/lib/cosmos/config/meta_config_parser.rb +25 -8
- data/lib/cosmos/conversions/conversion.rb +15 -2
- data/lib/cosmos/conversions/generic_conversion.rb +15 -5
- data/lib/cosmos/conversions/packet_time_formatted_conversion.rb +11 -6
- data/lib/cosmos/conversions/packet_time_seconds_conversion.rb +11 -6
- data/lib/cosmos/conversions/polynomial_conversion.rb +14 -5
- data/lib/cosmos/conversions/processor_conversion.rb +14 -5
- data/lib/cosmos/conversions/received_count_conversion.rb +11 -6
- data/lib/cosmos/conversions/received_time_formatted_conversion.rb +11 -6
- data/lib/cosmos/conversions/received_time_seconds_conversion.rb +11 -6
- data/lib/cosmos/conversions/segmented_polynomial_conversion.rb +19 -6
- data/lib/cosmos/conversions/unix_time_conversion.rb +14 -5
- data/lib/cosmos/conversions/unix_time_formatted_conversion.rb +11 -6
- data/lib/cosmos/conversions/unix_time_seconds_conversion.rb +11 -6
- data/lib/cosmos/conversions.rb +32 -13
- data/lib/cosmos/core_ext/array.rb +33 -14
- data/lib/cosmos/core_ext/binding.rb +29 -0
- data/lib/cosmos/core_ext/class.rb +11 -2
- data/lib/cosmos/core_ext/cosmos_io.rb +14 -3
- data/lib/cosmos/core_ext/exception.rb +11 -2
- data/lib/cosmos/core_ext/file.rb +18 -11
- data/lib/cosmos/core_ext/hash.rb +11 -2
- data/lib/cosmos/core_ext/io.rb +26 -14
- data/lib/cosmos/core_ext/kernel.rb +12 -3
- data/lib/cosmos/core_ext/math.rb +11 -2
- data/lib/cosmos/core_ext/matrix.rb +29 -22
- data/lib/cosmos/core_ext/objectspace.rb +11 -2
- data/lib/cosmos/core_ext/range.rb +12 -3
- data/lib/cosmos/core_ext/socket.rb +14 -8
- data/lib/cosmos/core_ext/string.rb +49 -11
- data/lib/cosmos/core_ext/stringio.rb +11 -2
- data/lib/cosmos/core_ext/time.rb +34 -9
- data/lib/cosmos/core_ext.rb +18 -0
- data/lib/cosmos/interfaces/interface.rb +70 -28
- data/lib/cosmos/interfaces/linc_interface.rb +25 -9
- data/lib/cosmos/interfaces/protocols/burst_protocol.rb +17 -8
- data/lib/cosmos/interfaces/protocols/crc_protocol.rb +13 -3
- data/lib/cosmos/interfaces/protocols/fixed_protocol.rb +19 -8
- data/lib/cosmos/interfaces/protocols/ignore_packet_protocol.rb +12 -2
- data/lib/cosmos/interfaces/protocols/length_protocol.rb +14 -3
- data/lib/cosmos/interfaces/protocols/override_protocol.rb +11 -3
- data/lib/cosmos/interfaces/protocols/preidentified_protocol.rb +26 -7
- data/lib/cosmos/interfaces/protocols/protocol.rb +12 -3
- data/lib/cosmos/interfaces/protocols/template_protocol.rb +17 -9
- data/lib/cosmos/interfaces/protocols/terminated_protocol.rb +12 -2
- data/lib/cosmos/interfaces/serial_interface.rb +12 -9
- data/lib/cosmos/interfaces/simulated_target_interface.rb +20 -5
- data/lib/cosmos/interfaces/stream_interface.rb +21 -5
- data/lib/cosmos/interfaces/tcpip_client_interface.rb +13 -4
- data/lib/cosmos/interfaces/tcpip_server_interface.rb +108 -103
- data/lib/cosmos/interfaces/udp_interface.rb +21 -6
- data/lib/cosmos/interfaces.rb +40 -20
- data/lib/cosmos/io/buffered_file.rb +12 -3
- data/lib/cosmos/io/cosmos_snmp.rb +17 -9
- data/lib/cosmos/io/io_multiplexer.rb +11 -6
- data/lib/cosmos/io/json_api_object.rb +210 -0
- data/lib/cosmos/io/json_drb.rb +93 -69
- data/lib/cosmos/io/json_drb_object.rb +62 -119
- data/lib/cosmos/io/json_drb_rack.rb +31 -46
- data/lib/cosmos/io/json_rpc.rb +53 -27
- data/lib/cosmos/io/posix_serial_driver.rb +34 -65
- data/lib/cosmos/io/raw_logger.rb +23 -26
- data/lib/cosmos/io/raw_logger_pair.rb +20 -14
- data/lib/cosmos/io/serial_driver.rb +19 -15
- data/lib/cosmos/io/stderr.rb +11 -4
- data/lib/cosmos/io/stdout.rb +11 -4
- data/lib/cosmos/io/udp_sockets.rb +28 -30
- data/lib/cosmos/io/win32_serial_driver.rb +23 -14
- data/lib/cosmos/logs/log_writer.rb +253 -0
- data/lib/cosmos/logs/packet_log_constants.rb +62 -0
- data/lib/cosmos/logs/packet_log_reader.rb +345 -0
- data/lib/cosmos/logs/packet_log_writer.rb +299 -0
- data/lib/cosmos/logs/text_log_writer.rb +68 -0
- data/lib/cosmos/logs.rb +25 -0
- data/lib/cosmos/microservices/cleanup_microservice.rb +69 -0
- data/lib/cosmos/microservices/decom_microservice.rb +135 -0
- data/lib/cosmos/microservices/interface_microservice.rb +547 -0
- data/lib/cosmos/microservices/log_microservice.rb +108 -0
- data/lib/cosmos/microservices/microservice.rb +204 -0
- data/lib/cosmos/microservices/plugin_microservice.rb +43 -0
- data/lib/cosmos/microservices/reaction_microservice.rb +541 -0
- data/lib/cosmos/microservices/reducer_microservice.rb +311 -0
- data/lib/cosmos/microservices/router_microservice.rb +44 -0
- data/lib/cosmos/microservices/text_log_microservice.rb +84 -0
- data/lib/cosmos/microservices/timeline_microservice.rb +363 -0
- data/lib/cosmos/microservices/trigger_group_microservice.rb +638 -0
- data/lib/cosmos/models/activity_model.rb +319 -0
- data/lib/cosmos/models/auth_model.rb +65 -0
- data/lib/cosmos/models/cvt_model.rb +185 -0
- data/lib/cosmos/models/environment_model.rb +58 -0
- data/lib/cosmos/models/gem_model.rb +131 -0
- data/lib/cosmos/models/info_model.rb +31 -0
- data/lib/cosmos/models/interface_model.rb +272 -0
- data/lib/cosmos/models/interface_status_model.rb +117 -0
- data/lib/cosmos/models/metadata_model.rb +289 -0
- data/lib/cosmos/models/metric_model.rb +59 -0
- data/lib/cosmos/models/microservice_model.rb +203 -0
- data/lib/cosmos/models/microservice_status_model.rb +74 -0
- data/lib/cosmos/models/model.rb +189 -0
- data/lib/cosmos/models/narrative_model.rb +280 -0
- data/lib/cosmos/models/notification_model.rb +40 -0
- data/lib/cosmos/models/ping_model.rb +34 -0
- data/lib/cosmos/models/plugin_model.rb +224 -0
- data/lib/cosmos/models/process_status_model.rb +76 -0
- data/lib/cosmos/models/reaction_model.rb +322 -0
- data/lib/cosmos/models/reducer_model.rb +65 -0
- data/lib/cosmos/models/router_model.rb +35 -0
- data/lib/cosmos/models/router_status_model.rb +27 -0
- data/lib/cosmos/models/scope_model.rb +168 -0
- data/lib/cosmos/models/target_model.rb +632 -0
- data/lib/cosmos/models/timeline_model.rb +154 -0
- data/lib/cosmos/models/tool_model.rb +262 -0
- data/lib/cosmos/models/trigger_group_model.rb +186 -0
- data/lib/cosmos/models/trigger_model.rb +330 -0
- data/lib/cosmos/models/widget_model.rb +138 -0
- data/lib/cosmos/operators/microservice_operator.rb +127 -0
- data/lib/cosmos/operators/operator.rb +278 -0
- data/lib/cosmos/packets/binary_accessor.rb +36 -30
- data/lib/cosmos/packets/commands.rb +24 -12
- data/lib/cosmos/packets/json_packet.rb +134 -0
- data/lib/cosmos/packets/limits.rb +22 -15
- data/lib/cosmos/packets/limits_response.rb +15 -4
- data/lib/cosmos/packets/packet.rb +103 -33
- data/lib/cosmos/packets/packet_config.rb +40 -29
- data/lib/cosmos/packets/packet_item.rb +93 -6
- data/lib/cosmos/packets/packet_item_limits.rb +28 -6
- data/lib/cosmos/packets/parsers/format_string_parser.rb +11 -4
- data/lib/cosmos/packets/parsers/limits_parser.rb +18 -6
- data/lib/cosmos/packets/parsers/limits_response_parser.rb +13 -4
- data/lib/cosmos/packets/parsers/packet_item_parser.rb +36 -16
- data/lib/cosmos/packets/parsers/packet_parser.rb +15 -5
- data/lib/cosmos/packets/parsers/processor_parser.rb +14 -4
- data/lib/cosmos/packets/parsers/state_parser.rb +13 -4
- data/lib/cosmos/packets/parsers/xtce_converter.rb +20 -6
- data/lib/cosmos/packets/parsers/xtce_parser.rb +41 -13
- data/lib/cosmos/packets/structure.rb +33 -25
- data/lib/cosmos/packets/structure_item.rb +38 -8
- data/lib/cosmos/packets/telemetry.rb +27 -10
- data/lib/cosmos/processors/processor.rb +15 -5
- data/lib/cosmos/processors/statistics_processor.rb +15 -5
- data/lib/cosmos/processors/watermark_processor.rb +14 -5
- data/lib/cosmos/processors.rb +22 -4
- data/lib/cosmos/script/api_shared.rb +315 -516
- data/lib/cosmos/script/calendar.rb +62 -0
- data/lib/cosmos/script/commands.rb +95 -55
- data/lib/cosmos/script/exceptions.rb +29 -0
- data/lib/cosmos/script/extract.rb +37 -17
- data/lib/cosmos/script/limits.rb +21 -82
- data/lib/cosmos/script/script.rb +212 -103
- data/lib/cosmos/script/storage.rb +159 -0
- data/lib/cosmos/script/suite.rb +542 -0
- data/lib/cosmos/script/suite_results.rb +196 -0
- data/lib/cosmos/script/suite_runner.rb +217 -0
- data/lib/cosmos/script.rb +16 -4
- data/lib/cosmos/streams/serial_stream.rb +20 -13
- data/lib/cosmos/streams/stream.rb +11 -2
- data/lib/cosmos/streams/tcpip_client_stream.rb +28 -25
- data/lib/cosmos/streams/tcpip_socket_stream.rb +14 -5
- data/lib/cosmos/system/system.rb +80 -983
- data/lib/cosmos/system/system_config.rb +411 -0
- data/lib/cosmos/system/target.rb +73 -66
- data/lib/cosmos/system.rb +22 -2
- data/lib/cosmos/tools/cmd_tlm_server/api.rb +12 -1686
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_config.rb +240 -214
- data/lib/cosmos/tools/cmd_tlm_server/interface_thread.rb +43 -41
- data/lib/cosmos/tools/table_manager/table.rb +30 -14
- data/lib/cosmos/tools/table_manager/table_config.rb +110 -43
- data/lib/cosmos/tools/table_manager/table_item.rb +39 -7
- data/lib/cosmos/tools/table_manager/table_item_parser.rb +27 -9
- data/lib/cosmos/tools/table_manager/table_manager_core.rb +159 -50
- data/lib/cosmos/tools/table_manager/table_parser.rb +28 -10
- data/lib/cosmos/tools/test_runner/test.rb +57 -530
- data/lib/cosmos/top_level.rb +212 -474
- data/lib/cosmos/topics/autonomic_topic.rb +52 -0
- data/lib/cosmos/topics/calendar_topic.rb +44 -0
- data/lib/cosmos/topics/command_decom_topic.rb +42 -0
- data/lib/cosmos/topics/command_topic.rb +81 -0
- data/lib/cosmos/topics/interface_topic.rb +73 -0
- data/lib/cosmos/topics/limits_event_topic.rb +105 -0
- data/lib/cosmos/topics/notifications_topic.rb +28 -0
- data/lib/cosmos/topics/router_topic.rb +85 -0
- data/lib/cosmos/topics/telemetry_decom_topic.rb +47 -0
- data/lib/cosmos/topics/telemetry_topic.rb +36 -0
- data/lib/cosmos/topics/timeline_topic.rb +45 -0
- data/lib/cosmos/topics/topic.rb +38 -0
- data/lib/cosmos/utilities/authentication.rb +141 -0
- data/lib/cosmos/utilities/authorization.rb +51 -0
- data/lib/cosmos/utilities/crc.rb +24 -17
- data/lib/cosmos/utilities/csv.rb +22 -59
- data/lib/cosmos/utilities/logger.rb +101 -52
- data/lib/cosmos/utilities/message_log.rb +31 -20
- data/lib/cosmos/utilities/metric.rb +135 -0
- data/lib/cosmos/utilities/process_manager.rb +139 -0
- data/lib/cosmos/utilities/quaternion.rb +34 -35
- data/lib/cosmos/utilities/ruby_lex_utils.rb +493 -237
- data/lib/cosmos/utilities/s3.rb +141 -0
- data/lib/cosmos/utilities/s3_autoload.rb +9 -0
- data/lib/cosmos/utilities/s3_file_cache.rb +268 -0
- data/lib/cosmos/utilities/simulated_target.rb +12 -3
- data/lib/cosmos/utilities/sleeper.rb +11 -4
- data/lib/cosmos/utilities/store.rb +22 -0
- data/lib/cosmos/utilities/store_autoload.rb +346 -0
- data/lib/cosmos/utilities/zip.rb +21 -0
- data/lib/cosmos/utilities.rb +33 -9
- data/lib/cosmos/version.rb +6 -5
- data/lib/cosmos/win32/excel.rb +11 -2
- data/lib/cosmos/win32/win32.rb +47 -26
- data/lib/cosmos/win32/win32_main.rb +26 -18
- data/lib/cosmos.rb +19 -33
- data/lib/cosmosc2.rb +20 -0
- data/tasks/gemfile_stats.rake +19 -9
- data/tasks/spec.rake +12 -5
- data/templates/plugin-template/README.md +15 -0
- data/templates/plugin-template/Rakefile +12 -0
- data/templates/plugin-template/plugin.gemspec +25 -0
- data/templates/plugin-template/plugin.txt +9 -0
- data/templates/plugin-template/targets/TARGET/cmd_tlm/cmd.txt +8 -0
- data/templates/plugin-template/targets/TARGET/cmd_tlm/tlm.txt +8 -0
- data/templates/plugin-template/targets/TARGET/lib/target.rb +10 -0
- data/templates/plugin-template/targets/TARGET/procedures/procedure.rb +3 -0
- data/templates/plugin-template/targets/TARGET/screens/status.txt +9 -0
- data/templates/plugin-template/targets/TARGET/target.txt +5 -0
- metadata +264 -1741
- data/.dockerignore +0 -2
- data/.gitattributes +0 -3
- data/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
- data/.github/ISSUE_TEMPLATE/feature_request.md +0 -19
- data/.github/ISSUE_TEMPLATE/help---usage---general-question.md +0 -12
- data/.github/workflows/build_v4.yml +0 -33
- data/.gitignore +0 -50
- data/.rubocop.yml +0 -23
- data/.yardopts +0 -4
- data/CONTRIBUTING.txt +0 -50
- data/Dockerfile +0 -71
- data/Manifest.txt +0 -1790
- data/appveyor.yml +0 -32
- data/autohotkey/config/data/attitude.bin +0 -0
- data/autohotkey/config/data/diamond.STL +0 -58
- data/autohotkey/config/data/groundoff.gif +0 -0
- data/autohotkey/config/data/groundon.gif +0 -0
- data/autohotkey/config/data/position.bin +0 -0
- data/autohotkey/config/data/satellite.gif +0 -0
- data/autohotkey/config/data/tada.wav +0 -0
- data/autohotkey/config/system/system.txt +0 -29
- data/autohotkey/config/targets/INST/cmd_tlm/inst_cmds.txt +0 -126
- data/autohotkey/config/targets/INST/cmd_tlm/inst_tlm.txt +0 -270
- data/autohotkey/config/targets/INST/cmd_tlm_server.txt +0 -5
- data/autohotkey/config/targets/INST/doc/README.txt +0 -1
- data/autohotkey/config/targets/INST/lib/example_limits_response.rb +0 -30
- data/autohotkey/config/targets/INST/lib/sim_inst.rb +0 -307
- data/autohotkey/config/targets/INST/screens/_footer.txt +0 -4
- data/autohotkey/config/targets/INST/screens/adcs.txt +0 -46
- data/autohotkey/config/targets/INST/screens/array.txt +0 -7
- data/autohotkey/config/targets/INST/screens/block.txt +0 -8
- data/autohotkey/config/targets/INST/screens/commanding.txt +0 -30
- data/autohotkey/config/targets/INST/screens/extra.txt +0 -19
- data/autohotkey/config/targets/INST/screens/graphs.txt +0 -14
- data/autohotkey/config/targets/INST/screens/ground.txt +0 -25
- data/autohotkey/config/targets/INST/screens/health_status.txt +0 -33
- data/autohotkey/config/targets/INST/screens/hs.txt +0 -46
- data/autohotkey/config/targets/INST/screens/image.txt +0 -21
- data/autohotkey/config/targets/INST/screens/latest.txt +0 -23
- data/autohotkey/config/targets/INST/screens/mech.txt +0 -25
- data/autohotkey/config/targets/INST/screens/other.txt +0 -25
- data/autohotkey/config/targets/INST/screens/params.txt +0 -25
- data/autohotkey/config/targets/INST/screens/tabs.txt +0 -68
- data/autohotkey/config/targets/INST/sequences/run_sequence.txt +0 -1
- data/autohotkey/config/targets/INST/target.txt +0 -27
- data/autohotkey/config/targets/META/cmd_tlm/meta_cmd.txt +0 -10
- data/autohotkey/config/targets/META/cmd_tlm/meta_tlm.txt +0 -9
- data/autohotkey/config/targets/META/screens/data.txt +0 -12
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +0 -7
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/meta_cmd_tlm.txt +0 -16
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +0 -41
- data/autohotkey/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +0 -7
- data/autohotkey/config/targets/SYSTEM/screens/error.txt +0 -11
- data/autohotkey/config/targets/SYSTEM/screens/limits_change.txt +0 -14
- data/autohotkey/config/targets/SYSTEM/screens/meta.txt +0 -14
- data/autohotkey/config/targets/SYSTEM/target.txt +0 -12
- data/autohotkey/config/tools/cmd_sender/cmd_sender.txt +0 -1
- data/autohotkey/config/tools/cmd_sequence/cmd_sequence.txt +0 -2
- data/autohotkey/config/tools/cmd_tlm_server/cmd_tlm_server.txt +0 -22
- data/autohotkey/config/tools/data_viewer/data_viewer.txt +0 -11
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap-theme.css +0 -397
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +0 -7
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap.css +0 -7118
- data/autohotkey/config/tools/handbook_creator/assets/css/bootstrap.min.css +0 -7
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +0 -229
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/autohotkey/config/tools/handbook_creator/assets/js/bootstrap.js +0 -2006
- data/autohotkey/config/tools/handbook_creator/assets/js/bootstrap.min.js +0 -7
- data/autohotkey/config/tools/handbook_creator/default_toc.xsl +0 -59
- data/autohotkey/config/tools/handbook_creator/handbook_creator.txt +0 -49
- data/autohotkey/config/tools/handbook_creator/templates/command_packets.html.erb +0 -86
- data/autohotkey/config/tools/handbook_creator/templates/command_toc.html.erb +0 -38
- data/autohotkey/config/tools/handbook_creator/templates/footer.html.erb +0 -9
- data/autohotkey/config/tools/handbook_creator/templates/header.html.erb +0 -25
- data/autohotkey/config/tools/handbook_creator/templates/limits_groups.html.erb +0 -13
- data/autohotkey/config/tools/handbook_creator/templates/nav.html.erb +0 -27
- data/autohotkey/config/tools/handbook_creator/templates/overview.html.erb +0 -1
- data/autohotkey/config/tools/handbook_creator/templates/pdf_cover.html.erb +0 -23
- data/autohotkey/config/tools/handbook_creator/templates/pdf_footer.html.erb +0 -33
- data/autohotkey/config/tools/handbook_creator/templates/pdf_header.html.erb +0 -41
- data/autohotkey/config/tools/handbook_creator/templates/telemetry_packets.html.erb +0 -80
- data/autohotkey/config/tools/handbook_creator/templates/telemetry_toc.html.erb +0 -38
- data/autohotkey/config/tools/handbook_creator/templates/title.html.erb +0 -1
- data/autohotkey/config/tools/launcher/launcher.txt +0 -38
- data/autohotkey/config/tools/limits_monitor/README.txt +0 -1
- data/autohotkey/config/tools/opengl_builder/error.txt +0 -1
- data/autohotkey/config/tools/script_runner/script_runner.txt +0 -3
- data/autohotkey/config/tools/table_manager/ConfigTables_def.txt +0 -6
- data/autohotkey/config/tools/table_manager/OldOneDimensionalTable_def.txt +0 -19
- data/autohotkey/config/tools/table_manager/OldTwoDimensionalTable_def.txt +0 -248
- data/autohotkey/config/tools/table_manager/OneDimensionalTable_def.txt +0 -31
- data/autohotkey/config/tools/table_manager/SubTables/OneDimensionalSubTable_def.txt +0 -31
- data/autohotkey/config/tools/table_manager/SubTables/TwoDimensionalSubTable_def.txt +0 -28
- data/autohotkey/config/tools/table_manager/TwoDimensionalTable_def.txt +0 -28
- data/autohotkey/config/tools/test_runner/test_runner.txt +0 -8
- data/autohotkey/config/tools/test_runner/test_runner2.txt +0 -11
- data/autohotkey/config/tools/test_runner/test_runner3.txt +0 -7
- data/autohotkey/config/tools/test_runner/test_runner4.txt +0 -1
- data/autohotkey/config/tools/tlm_extractor/tlm_extractor.txt +0 -14
- data/autohotkey/config/tools/tlm_extractor/tlm_extractor2.txt +0 -9
- data/autohotkey/config/tools/tlm_grapher/README.txt +0 -1
- data/autohotkey/config/tools/tlm_grapher/bad.txt +0 -50
- data/autohotkey/config/tools/tlm_grapher/temp1-4.txt +0 -51
- data/autohotkey/config/tools/tlm_grapher/test2.txt +0 -111
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer.txt +0 -24
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer2.txt +0 -4
- data/autohotkey/config/tools/tlm_viewer/tlm_viewer3.txt +0 -3
- data/autohotkey/lib/cmd_sequence_exporter.rb +0 -52
- data/autohotkey/lib/example_background_task.rb +0 -42
- data/autohotkey/lib/user_version.rb +0 -3
- data/autohotkey/outputs/handbooks/README.txt +0 -1
- data/autohotkey/outputs/logs/bigtlm.bin +0 -0
- data/autohotkey/outputs/logs/cmd.bin +0 -0
- data/autohotkey/outputs/logs/tlm.bin +0 -0
- data/autohotkey/outputs/saved_config/README.txt +0 -1
- data/autohotkey/outputs/sequences/bad_sequence.txt +0 -1
- data/autohotkey/outputs/sequences/bad_sequence2.txt +0 -1
- data/autohotkey/outputs/sequences/saved_sequence.txt +0 -3
- data/autohotkey/outputs/tables/README.txt +0 -1
- data/autohotkey/outputs/tmp/README.txt +0 -1
- data/autohotkey/procedures/clear_util.rb +0 -7
- data/autohotkey/procedures/collect.rb +0 -18
- data/autohotkey/procedures/collect_util.rb +0 -14
- data/autohotkey/procedures/example_test.rb +0 -71
- data/autohotkey/procedures/example_test2.rb +0 -74
- data/autohotkey/procedures/script_test.rb +0 -21
- data/autohotkey/procedures/syntax_error.rb +0 -18
- data/autohotkey/tools/CmdExtractorAHK +0 -16
- data/autohotkey/tools/CmdSender +0 -14
- data/autohotkey/tools/CmdSenderAHK +0 -18
- data/autohotkey/tools/CmdSenderAHK2 +0 -18
- data/autohotkey/tools/CmdSequence +0 -14
- data/autohotkey/tools/CmdSequenceAHK +0 -23
- data/autohotkey/tools/CmdSequenceAHK2 +0 -16
- data/autohotkey/tools/CmdTlmServer +0 -14
- data/autohotkey/tools/CmdTlmServerAHK +0 -28
- data/autohotkey/tools/CmdTlmServerAHK2 +0 -17
- data/autohotkey/tools/ConfigEditor +0 -16
- data/autohotkey/tools/ConfigEditorAHK +0 -19
- data/autohotkey/tools/DataViewer +0 -14
- data/autohotkey/tools/DataViewerAHK +0 -17
- data/autohotkey/tools/HandbookCreatorAHK +0 -20
- data/autohotkey/tools/LauncherAHK +0 -17
- data/autohotkey/tools/LimitsMonitorAHK +0 -20
- data/autohotkey/tools/OpenGLBuilderAHK +0 -24
- data/autohotkey/tools/PacketViewer +0 -14
- data/autohotkey/tools/PacketViewerAHK +0 -18
- data/autohotkey/tools/PacketViewerAHK2 +0 -17
- data/autohotkey/tools/Replay +0 -14
- data/autohotkey/tools/ReplayAHK +0 -17
- data/autohotkey/tools/ScriptRunner +0 -14
- data/autohotkey/tools/ScriptRunnerAHK +0 -20
- data/autohotkey/tools/ScriptRunnerAHK2 +0 -17
- data/autohotkey/tools/TableManager +0 -14
- data/autohotkey/tools/TableManagerAHK +0 -25
- data/autohotkey/tools/TableManagerAHK2 +0 -18
- data/autohotkey/tools/TableManagerAHK3 +0 -18
- data/autohotkey/tools/TableManagerAHK4 +0 -24
- data/autohotkey/tools/TestRunner +0 -15
- data/autohotkey/tools/TestRunnerAHK +0 -17
- data/autohotkey/tools/TestRunnerAHK2 +0 -17
- data/autohotkey/tools/TestRunnerAHK3 +0 -17
- data/autohotkey/tools/TestRunnerAHK4 +0 -17
- data/autohotkey/tools/TestRunnerAHK5 +0 -17
- data/autohotkey/tools/TestRunnerAHK6 +0 -17
- data/autohotkey/tools/TlmExtractor +0 -15
- data/autohotkey/tools/TlmExtractorAHK +0 -19
- data/autohotkey/tools/TlmExtractorAHK2 +0 -16
- data/autohotkey/tools/TlmExtractorAHK3 +0 -16
- data/autohotkey/tools/TlmGrapher +0 -14
- data/autohotkey/tools/TlmGrapherAHK +0 -19
- data/autohotkey/tools/TlmGrapherAHK2 +0 -23
- data/autohotkey/tools/TlmGrapherAHK3 +0 -17
- data/autohotkey/tools/TlmGrapherAHK4 +0 -17
- data/autohotkey/tools/TlmViewer +0 -14
- data/autohotkey/tools/TlmViewerAHK +0 -28
- data/autohotkey/tools/TlmViewerAHK2 +0 -22
- data/autohotkey/tools/TlmViewerAHK3 +0 -23
- data/autohotkey/tools/TlmViewerAHK4 +0 -22
- data/autohotkey/tools/TlmViewerAHK5 +0 -18
- data/autohotkey/tools/autohotkey.rb +0 -38
- data/autohotkey/tools/cmd_extractor.ahk +0 -52
- data/autohotkey/tools/cmd_sender.ahk +0 -208
- data/autohotkey/tools/cmd_sender2.ahk +0 -4
- data/autohotkey/tools/cmd_sequence.ahk +0 -233
- data/autohotkey/tools/cmd_sequence2.ahk +0 -23
- data/autohotkey/tools/cmd_tlm_server.ahk +0 -90
- data/autohotkey/tools/cmd_tlm_server2.ahk +0 -45
- data/autohotkey/tools/config_editor.ahk +0 -197
- data/autohotkey/tools/data_viewer.ahk +0 -140
- data/autohotkey/tools/handbook_creator.ahk +0 -32
- data/autohotkey/tools/launcher.ahk +0 -42
- data/autohotkey/tools/limits_monitor.ahk +0 -121
- data/autohotkey/tools/open_gl_builder.ahk +0 -133
- data/autohotkey/tools/packet_viewer.ahk +0 -224
- data/autohotkey/tools/packet_viewer2.ahk +0 -9
- data/autohotkey/tools/replay.ahk +0 -103
- data/autohotkey/tools/script_runner.ahk +0 -602
- data/autohotkey/tools/script_runner2.ahk +0 -50
- data/autohotkey/tools/table_manager.ahk +0 -291
- data/autohotkey/tools/test_runner.ahk +0 -262
- data/autohotkey/tools/test_runner2.ahk +0 -49
- data/autohotkey/tools/test_runner3.ahk +0 -11
- data/autohotkey/tools/test_runner5.ahk +0 -8
- data/autohotkey/tools/test_runner6.ahk +0 -5
- data/autohotkey/tools/tlm_extractor.ahk +0 -356
- data/autohotkey/tools/tlm_grapher.ahk +0 -670
- data/autohotkey/tools/tlm_grapher2.ahk +0 -115
- data/autohotkey/tools/tlm_grapher3.ahk +0 -23
- data/autohotkey/tools/tlm_viewer.ahk +0 -140
- data/autohotkey/tools/tlm_viewer2.ahk +0 -49
- data/autohotkey/tools/tlm_viewer4.ahk +0 -4
- data/autohotkey/tools/tlm_viewer5.ahk +0 -19
- data/autohotkey/tools/tool_launch.rb +0 -38
- data/bin/dart_import +0 -4
- data/bin/dart_util +0 -4
- data/bin/exchndl20-x64.dll +0 -0
- data/bin/exchndl20.dll +0 -0
- data/bin/exchndl21-x64.dll +0 -0
- data/bin/exchndl21.dll +0 -0
- data/bin/exchndl22-x64.dll +0 -0
- data/bin/exchndl22.dll +0 -0
- data/bin/mgwhelp-x64.dll +0 -0
- data/bin/mgwhelp.dll +0 -0
- data/cosmos.gemspec +0 -114
- data/data/COSMOS_64x64.bmp +0 -0
- data/data/COSMOS_64x64.ico +0 -0
- data/data/COSMOS_64x64.png +0 -0
- data/data/COSMOS_Architecture.png +0 -0
- data/data/CheckBoxCheck.gif +0 -0
- data/data/CheckBoxEmpty.gif +0 -0
- data/data/Earthmap1024x512.gif +0 -0
- data/data/about.txt +0 -4
- data/data/add_database.png +0 -0
- data/data/add_plot.png +0 -0
- data/data/add_tab.png +0 -0
- data/data/blank.png +0 -0
- data/data/bug.png +0 -0
- data/data/checkmark.png +0 -0
- data/data/close.png +0 -0
- data/data/cmd_extractor.png +0 -0
- data/data/cmd_sender.png +0 -0
- data/data/cmd_sequence.png +0 -0
- data/data/config/cmd_sequence.yaml +0 -14
- data/data/config/data_viewer.yaml +0 -43
- data/data/config/handbook_creator.yaml +0 -23
- data/data/config/housekeeping_params.yaml +0 -85
- data/data/config/launcher.yaml +0 -127
- data/data/config/limits_monitor.yaml +0 -53
- data/data/config/linegraph_params.yaml +0 -30
- data/data/config/linegraph_plot.yaml +0 -106
- data/data/config/page_modifiers.yaml +0 -128
- data/data/config/script_runner.yaml +0 -24
- data/data/config/system.yaml +0 -371
- data/data/config/test_runner.yaml +0 -119
- data/data/config/tlm_extractor.yaml +0 -109
- data/data/config/tlm_grapher.yaml +0 -78
- data/data/config/tlm_viewer.yaml +0 -112
- data/data/config/xy_params.yaml +0 -50
- data/data/config/xy_plot.yaml +0 -12
- data/data/config_editor.png +0 -0
- data/data/copy.png +0 -0
- data/data/cosmos.xcf +0 -0
- data/data/cosmos_word.gif +0 -0
- data/data/crc.txt +0 -470
- data/data/critical.wav +0 -0
- data/data/cts.png +0 -0
- data/data/cut.png +0 -0
- data/data/dart.png +0 -0
- data/data/data_viewer.png +0 -0
- data/data/delete.png +0 -0
- data/data/delete_database.png +0 -0
- data/data/delete_plot.png +0 -0
- data/data/delete_tab.png +0 -0
- data/data/diamond.STL +0 -58
- data/data/disconnected.png +0 -0
- data/data/edit.png +0 -0
- data/data/edit_database.png +0 -0
- data/data/edit_plot.png +0 -0
- data/data/edit_tab.png +0 -0
- data/data/end-26.png +0 -0
- data/data/fast_forward-26.png +0 -0
- data/data/file.png +0 -0
- data/data/handbook_creator.png +0 -0
- data/data/help.png +0 -0
- data/data/html-32.png +0 -0
- data/data/information.wav +0 -0
- data/data/input.wav +0 -0
- data/data/launcher.png +0 -0
- data/data/legal.gif +0 -0
- data/data/legal.txt +0 -8
- data/data/limits_monitor.png +0 -0
- data/data/message.wav +0 -0
- data/data/moonmap1k.gif +0 -0
- data/data/multi.png +0 -0
- data/data/open.png +0 -0
- data/data/open_in_browser-32.png +0 -0
- data/data/opengl_builder.png +0 -0
- data/data/packet_viewer.png +0 -0
- data/data/pdf-32.png +0 -0
- data/data/play-26.png +0 -0
- data/data/question.wav +0 -0
- data/data/redo.png +0 -0
- data/data/replay.png +0 -0
- data/data/reverse-play-26.png +0 -0
- data/data/rewind-26.png +0 -0
- data/data/running.png +0 -0
- data/data/save.png +0 -0
- data/data/save_as.png +0 -0
- data/data/screenshot.png +0 -0
- data/data/script_runner.png +0 -0
- data/data/search-14.png +0 -0
- data/data/search.png +0 -0
- data/data/send_file.png +0 -0
- data/data/skip_to_start-26.png +0 -0
- data/data/spinner.gif +0 -0
- data/data/splash.gif +0 -0
- data/data/stop-26.png +0 -0
- data/data/table_manager.png +0 -0
- data/data/test_runner.png +0 -0
- data/data/tlm_extractor.png +0 -0
- data/data/tlm_grapher.png +0 -0
- data/data/tlm_viewer.png +0 -0
- data/data/undo.png +0 -0
- data/data/warning.wav +0 -0
- data/demo/Gemfile +0 -13
- data/demo/Launcher +0 -16
- data/demo/Launcher.bat +0 -1
- data/demo/Launcher2.bat +0 -1
- data/demo/LauncherMini.bat +0 -1
- data/demo/Rakefile +0 -83
- data/demo/config/dart/Gemfile +0 -49
- data/demo/config/data/attitude.bin +0 -0
- data/demo/config/data/crc.txt +0 -294
- data/demo/config/data/diamond.STL +0 -58
- data/demo/config/data/hselectoff.gif +0 -0
- data/demo/config/data/hselecton.gif +0 -0
- data/demo/config/data/hswitchoff.gif +0 -0
- data/demo/config/data/hswitchon.gif +0 -0
- data/demo/config/data/meta_init.txt +0 -1
- data/demo/config/data/position.bin +0 -0
- data/demo/config/data/poweroff.gif +0 -0
- data/demo/config/data/poweron.gif +0 -0
- data/demo/config/data/satellite.gif +0 -0
- data/demo/config/data/tada.wav +0 -0
- data/demo/config/data/vswitchoff.gif +0 -0
- data/demo/config/data/vswitchon.gif +0 -0
- data/demo/config/system/system.txt +0 -90
- data/demo/config/system/system2.txt +0 -75
- data/demo/config/system/system_alt_ports.txt +0 -80
- data/demo/config/targets/DART/cmd_tlm/dart_cmds.txt +0 -2
- data/demo/config/targets/DART/cmd_tlm/dart_tlm.txt +0 -40
- data/demo/config/targets/DART/cmd_tlm_server.txt +0 -6
- data/demo/config/targets/DART/screens/status.txt +0 -54
- data/demo/config/targets/DART/target.txt +0 -7
- data/demo/config/targets/EXAMPLE/cmd_tlm/example_cmds.txt +0 -2
- data/demo/config/targets/EXAMPLE/cmd_tlm/example_tlm.txt +0 -5
- data/demo/config/targets/EXAMPLE/cmd_tlm_server.txt +0 -7
- data/demo/config/targets/EXAMPLE/lib/example_interface.rb +0 -18
- data/demo/config/targets/EXAMPLE/target.txt +0 -9
- data/demo/config/targets/INST/cmd_tlm/_ccsds_cmd.txt +0 -9
- data/demo/config/targets/INST/cmd_tlm/_ccsds_tlm.txt +0 -19
- data/demo/config/targets/INST/cmd_tlm/inst_cmds.txt +0 -58
- data/demo/config/targets/INST/cmd_tlm/inst_tlm.txt +0 -169
- data/demo/config/targets/INST/cmd_tlm/inst_tlm_override.txt +0 -12
- data/demo/config/targets/INST/cmd_tlm_server.txt +0 -8
- data/demo/config/targets/INST/cmd_tlm_server2.txt +0 -7
- data/demo/config/targets/INST/doc/README.txt +0 -1
- data/demo/config/targets/INST/lib/example_limits_response.rb +0 -30
- data/demo/config/targets/INST/lib/inst_dump_component.rb +0 -34
- data/demo/config/targets/INST/lib/sim_inst.rb +0 -333
- data/demo/config/targets/INST/procedures/checks.rb +0 -11
- data/demo/config/targets/INST/procedures/collect.rb +0 -18
- data/demo/config/targets/INST/procedures/disconnect.rb +0 -29
- data/demo/config/targets/INST/procedures/utilities/clear.rb +0 -7
- data/demo/config/targets/INST/procedures/utilities/collect.rb +0 -14
- data/demo/config/targets/INST/screens/_footer.txt +0 -4
- data/demo/config/targets/INST/screens/adcs.txt +0 -71
- data/demo/config/targets/INST/screens/array.txt +0 -15
- data/demo/config/targets/INST/screens/block.txt +0 -8
- data/demo/config/targets/INST/screens/commanding.txt +0 -42
- data/demo/config/targets/INST/screens/graphs.txt +0 -14
- data/demo/config/targets/INST/screens/ground.txt +0 -47
- data/demo/config/targets/INST/screens/ground_error.gif +0 -0
- data/demo/config/targets/INST/screens/ground_off.gif +0 -0
- data/demo/config/targets/INST/screens/ground_on.gif +0 -0
- data/demo/config/targets/INST/screens/hs.txt +0 -43
- data/demo/config/targets/INST/screens/latest.txt +0 -23
- data/demo/config/targets/INST/screens/limits.txt +0 -81
- data/demo/config/targets/INST/screens/other.txt +0 -34
- data/demo/config/targets/INST/screens/params.txt +0 -54
- data/demo/config/targets/INST/screens/satellite.gif +0 -0
- data/demo/config/targets/INST/screens/spacing_box.txt +0 -44
- data/demo/config/targets/INST/screens/spacing_grid.txt +0 -78
- data/demo/config/targets/INST/screens/tabs.txt +0 -68
- data/demo/config/targets/INST/sequences/sequence.tsv +0 -3
- data/demo/config/targets/INST/tables/EventAction.csv +0 -9
- data/demo/config/targets/INST/tables/EventAction.dat +0 -0
- data/demo/config/targets/INST/tables/McConfigTable.csv +0 -20
- data/demo/config/targets/INST/tables/McConfigTable.dat +0 -0
- data/demo/config/targets/INST/target.txt +0 -38
- data/demo/config/targets/INST/tools/data_viewer/data_viewer.txt +0 -2
- data/demo/config/targets/INST/tools/data_viewer/data_viewer2.txt +0 -2
- data/demo/config/targets/INST/tools/table_manager/EventAction_def.txt +0 -6
- data/demo/config/targets/INST/tools/table_manager/McConfigTable_def.txt +0 -38
- data/demo/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +0 -6
- data/demo/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +0 -10
- data/demo/config/targets/SYSTEM/cmd_tlm/override.txt +0 -29
- data/demo/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +0 -41
- data/demo/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +0 -7
- data/demo/config/targets/SYSTEM/cmd_tlm_server.txt +0 -6
- data/demo/config/targets/SYSTEM/lib/limits_groups.rb +0 -55
- data/demo/config/targets/SYSTEM/screens/status.txt +0 -12
- data/demo/config/targets/SYSTEM/target.txt +0 -12
- data/demo/config/targets/TEMPLATED/cmd_tlm/templated_cmds.txt +0 -13
- data/demo/config/targets/TEMPLATED/cmd_tlm/templated_tlm.txt +0 -3
- data/demo/config/targets/TEMPLATED/cmd_tlm_server.txt +0 -6
- data/demo/config/targets/TEMPLATED/lib/templated_interface.rb +0 -59
- data/demo/config/targets/TEMPLATED/target.txt +0 -8
- data/demo/config/tools/cmd_sequence/cmd_sequence.txt +0 -2
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server.txt +0 -45
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server2.txt +0 -42
- data/demo/config/tools/cmd_tlm_server/cmd_tlm_server_chain.txt +0 -18
- data/demo/config/tools/data_viewer/data_viewer.txt +0 -23
- data/demo/config/tools/example_application.css +0 -58
- data/demo/config/tools/handbook_creator/assets/css/bootstrap-theme.css +0 -397
- data/demo/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +0 -7
- data/demo/config/tools/handbook_creator/assets/css/bootstrap.css +0 -7118
- data/demo/config/tools/handbook_creator/assets/css/bootstrap.min.css +0 -7
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +0 -229
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/demo/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/demo/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/demo/config/tools/handbook_creator/assets/js/bootstrap.js +0 -2006
- data/demo/config/tools/handbook_creator/assets/js/bootstrap.min.js +0 -7
- data/demo/config/tools/handbook_creator/assets/js/html5shiv.js +0 -8
- data/demo/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +0 -6
- data/demo/config/tools/handbook_creator/assets/js/respond.min.js +0 -6
- data/demo/config/tools/handbook_creator/default_toc.xsl +0 -59
- data/demo/config/tools/handbook_creator/handbook_creator.txt +0 -66
- data/demo/config/tools/handbook_creator/templates/command_packets.html.erb +0 -88
- data/demo/config/tools/handbook_creator/templates/command_toc.html.erb +0 -38
- data/demo/config/tools/handbook_creator/templates/footer.html.erb +0 -9
- data/demo/config/tools/handbook_creator/templates/header.html.erb +0 -25
- data/demo/config/tools/handbook_creator/templates/limits_groups.html.erb +0 -13
- data/demo/config/tools/handbook_creator/templates/nav.html.erb +0 -27
- data/demo/config/tools/handbook_creator/templates/overview.html.erb +0 -1
- data/demo/config/tools/handbook_creator/templates/pdf_cover.html.erb +0 -23
- data/demo/config/tools/handbook_creator/templates/pdf_footer.html.erb +0 -33
- data/demo/config/tools/handbook_creator/templates/pdf_header.html.erb +0 -41
- data/demo/config/tools/handbook_creator/templates/telemetry_packets.html.erb +0 -82
- data/demo/config/tools/handbook_creator/templates/telemetry_toc.html.erb +0 -38
- data/demo/config/tools/handbook_creator/templates/title.html.erb +0 -1
- data/demo/config/tools/launcher/launcher.css +0 -7
- data/demo/config/tools/launcher/launcher.txt +0 -49
- data/demo/config/tools/launcher/launcher2.css +0 -10
- data/demo/config/tools/launcher/launcher2.txt +0 -48
- data/demo/config/tools/launcher/launcher_mini.txt +0 -45
- data/demo/config/tools/limits_monitor/README.txt +0 -1
- data/demo/config/tools/opengl_builder/README.txt +0 -1
- data/demo/config/tools/script_runner/script_runner.txt +0 -2
- data/demo/config/tools/table_manager/ConfigTables_def.txt +0 -8
- data/demo/config/tools/table_manager/ExampleTableDefinition.txt +0 -24
- data/demo/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt +0 -37
- data/demo/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt +0 -34
- data/demo/config/tools/table_manager/PPSSelectionTable_def.txt +0 -9
- data/demo/config/tools/table_manager/TLMMonitoringTable_def.txt +0 -31
- data/demo/config/tools/test_runner/test_runner.css +0 -45
- data/demo/config/tools/test_runner/test_runner.txt +0 -19
- data/demo/config/tools/tlm_extractor/_adcs_time.txt +0 -2
- data/demo/config/tools/tlm_extractor/tlm_extractor.txt +0 -13
- data/demo/config/tools/tlm_extractor/tlm_extractor2.txt +0 -2
- data/demo/config/tools/tlm_extractor/tlm_extractor3.txt +0 -2
- data/demo/config/tools/tlm_extractor/tlm_extractor4.txt +0 -2
- data/demo/config/tools/tlm_grapher/README.txt +0 -1
- data/demo/config/tools/tlm_viewer/tlm_viewer.txt +0 -41
- data/demo/lib/cmd_sequence_exporter.rb +0 -52
- data/demo/lib/example_background_task.rb +0 -57
- data/demo/lib/example_target.rb +0 -103
- data/demo/lib/scpi_target.rb +0 -68
- data/demo/lib/user_version.rb +0 -3
- data/demo/outputs/dart/data/README.txt +0 -1
- data/demo/outputs/handbooks/README.txt +0 -1
- data/demo/outputs/logs/README.txt +0 -1
- data/demo/outputs/saved_config/README.txt +0 -1
- data/demo/outputs/sequences/sequence.tsv +0 -4
- data/demo/outputs/tables/README.txt +0 -1
- data/demo/outputs/tmp/README.txt +0 -1
- data/demo/procedures/cosmos_api_test.rb +0 -314
- data/demo/procedures/example_test.rb +0 -192
- data/demo/procedures/interactive.rb +0 -22
- data/demo/procedures/local_screen_example.rb +0 -51
- data/demo/procedures/plot_test.rb +0 -8
- data/demo/procedures/replay_test.rb +0 -32
- data/demo/procedures/run_example_test.rb +0 -3
- data/demo/procedures/test.rb +0 -51
- data/demo/tools/CmdExtractor +0 -16
- data/demo/tools/CmdExtractor.bat +0 -9
- data/demo/tools/CmdSender +0 -16
- data/demo/tools/CmdSender.bat +0 -9
- data/demo/tools/CmdSequence +0 -16
- data/demo/tools/CmdSequence.bat +0 -9
- data/demo/tools/CmdTlmServer +0 -16
- data/demo/tools/CmdTlmServer.bat +0 -9
- data/demo/tools/ConfigEditor +0 -16
- data/demo/tools/ConfigEditor.bat +0 -9
- data/demo/tools/Dart +0 -16
- data/demo/tools/Dart.bat +0 -9
- data/demo/tools/DataViewer +0 -16
- data/demo/tools/DataViewer.bat +0 -9
- data/demo/tools/ExampleTarget +0 -16
- data/demo/tools/ExampleTarget.bat +0 -9
- data/demo/tools/HandbookCreator +0 -16
- data/demo/tools/HandbookCreator.bat +0 -9
- data/demo/tools/Launcher +0 -16
- data/demo/tools/Launcher.bat +0 -9
- data/demo/tools/LimitsMonitor +0 -16
- data/demo/tools/LimitsMonitor.bat +0 -9
- data/demo/tools/OpenGLBuilder +0 -16
- data/demo/tools/OpenGLBuilder.bat +0 -9
- data/demo/tools/PacketViewer +0 -16
- data/demo/tools/PacketViewer.bat +0 -9
- data/demo/tools/Replay +0 -16
- data/demo/tools/Replay.bat +0 -9
- data/demo/tools/ScpiTarget +0 -16
- data/demo/tools/ScpiTarget.bat +0 -9
- data/demo/tools/ScriptRunner +0 -16
- data/demo/tools/ScriptRunner.bat +0 -9
- data/demo/tools/TableManager +0 -16
- data/demo/tools/TableManager.bat +0 -9
- data/demo/tools/TestRunner +0 -16
- data/demo/tools/TestRunner.bat +0 -9
- data/demo/tools/TlmExtractor +0 -16
- data/demo/tools/TlmExtractor.bat +0 -9
- data/demo/tools/TlmGrapher +0 -16
- data/demo/tools/TlmGrapher.bat +0 -9
- data/demo/tools/TlmViewer +0 -16
- data/demo/tools/TlmViewer.bat +0 -9
- data/demo/tools/ToolLaunch.bat +0 -72
- data/demo/tools/mac/CmdExtractor.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +0 -16
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/CmdExtractor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdSender.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +0 -16
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/CmdSender.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdSequence.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/CmdSequence.rb +0 -16
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/CmdSequence.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/CmdSequence.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/CmdTlmServer.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +0 -16
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/ConfigEditor.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +0 -16
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/DataViewer.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +0 -16
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/DataViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/HandbookCreator.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +0 -16
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/HandbookCreator.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/Launcher.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +0 -16
- data/demo/tools/mac/Launcher.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/Launcher.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/LimitsMonitor.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +0 -16
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/LimitsMonitor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/OpenGLBuilder.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +0 -16
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/OpenGLBuilder.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/PacketViewer.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +0 -16
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/PacketViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/Replay.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/Replay.app/Contents/MacOS/Replay.rb +0 -16
- data/demo/tools/mac/Replay.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/Replay.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/ScriptRunner.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +0 -16
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/ScriptRunner.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TableManager.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +0 -16
- data/demo/tools/mac/TableManager.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/TableManager.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TestRunner.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +0 -16
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/TestRunner.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmExtractor.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +0 -16
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/TlmExtractor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmGrapher.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +0 -16
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/TlmGrapher.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/mac/TlmViewer.app/Contents/Info.plist +0 -38
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +0 -16
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +0 -10
- data/demo/tools/mac/TlmViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/demo/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/demo/tools/tool_launch.rb +0 -38
- data/ext/cosmos/ext/line_graph/extconf.rb +0 -13
- data/ext/cosmos/ext/line_graph/line_graph.c +0 -460
- data/ext/cosmos/ext/low_fragmentation_array/extconf.rb +0 -13
- data/ext/cosmos/ext/low_fragmentation_array/low_fragmentation_array.c +0 -265
- data/extensions/vscode/.gitignore +0 -4
- data/extensions/vscode/.vscode/launch.json +0 -32
- data/extensions/vscode/.vscode/settings.json +0 -13
- data/extensions/vscode/.vscode/tasks.json +0 -79
- data/extensions/vscode/License.txt +0 -879
- data/extensions/vscode/README.md +0 -9
- data/extensions/vscode/client/License.txt +0 -879
- data/extensions/vscode/client/README.md +0 -39
- data/extensions/vscode/client/cosmos.configuration.json +0 -23
- data/extensions/vscode/client/images/icon.png +0 -0
- data/extensions/vscode/client/package-lock.json +0 -414
- data/extensions/vscode/client/package.json +0 -105
- data/extensions/vscode/client/src/extension.ts +0 -132
- data/extensions/vscode/client/src/screen_preview.rb +0 -25
- data/extensions/vscode/client/syntaxes/cosmos.tmLanguage.json +0 -219
- data/extensions/vscode/client/tsconfig.json +0 -17
- data/extensions/vscode/package-lock.json +0 -26
- data/extensions/vscode/package.json +0 -35
- data/extensions/vscode/server/License.txt +0 -879
- data/extensions/vscode/server/package-lock.json +0 -236
- data/extensions/vscode/server/package.json +0 -29
- data/extensions/vscode/server/src/server.ts +0 -59
- data/extensions/vscode/server/tsconfig.json +0 -16
- data/install/Gemfile +0 -13
- data/install/Launcher +0 -16
- data/install/Launcher.bat +0 -1
- data/install/Rakefile +0 -81
- data/install/config/dart/Gemfile +0 -49
- data/install/config/data/README.txt +0 -1
- data/install/config/data/crc.txt +0 -179
- data/install/config/system/system.txt +0 -75
- data/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +0 -9
- data/install/config/targets/SYSTEM/target.txt +0 -12
- data/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +0 -3
- data/install/config/tools/data_viewer/data_viewer.txt +0 -4
- data/install/config/tools/handbook_creator/assets/css/bootstrap-theme.css +0 -397
- data/install/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +0 -7
- data/install/config/tools/handbook_creator/assets/css/bootstrap.css +0 -7118
- data/install/config/tools/handbook_creator/assets/css/bootstrap.min.css +0 -7
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +0 -229
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/install/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/install/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/install/config/tools/handbook_creator/assets/js/bootstrap.js +0 -2006
- data/install/config/tools/handbook_creator/assets/js/bootstrap.min.js +0 -7
- data/install/config/tools/handbook_creator/assets/js/html5shiv.js +0 -8
- data/install/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +0 -6
- data/install/config/tools/handbook_creator/assets/js/respond.min.js +0 -6
- data/install/config/tools/handbook_creator/default_toc.xsl +0 -59
- data/install/config/tools/handbook_creator/handbook_creator.txt +0 -49
- data/install/config/tools/handbook_creator/templates/command_packets.html.erb +0 -86
- data/install/config/tools/handbook_creator/templates/command_toc.html.erb +0 -38
- data/install/config/tools/handbook_creator/templates/footer.html.erb +0 -9
- data/install/config/tools/handbook_creator/templates/header.html.erb +0 -25
- data/install/config/tools/handbook_creator/templates/limits_groups.html.erb +0 -13
- data/install/config/tools/handbook_creator/templates/nav.html.erb +0 -27
- data/install/config/tools/handbook_creator/templates/overview.html.erb +0 -1
- data/install/config/tools/handbook_creator/templates/pdf_cover.html.erb +0 -23
- data/install/config/tools/handbook_creator/templates/pdf_footer.html.erb +0 -33
- data/install/config/tools/handbook_creator/templates/pdf_header.html.erb +0 -41
- data/install/config/tools/handbook_creator/templates/telemetry_packets.html.erb +0 -80
- data/install/config/tools/handbook_creator/templates/telemetry_toc.html.erb +0 -38
- data/install/config/tools/handbook_creator/templates/title.html.erb +0 -1
- data/install/config/tools/launcher/launcher.txt +0 -43
- data/install/config/tools/limits_monitor/README.txt +0 -1
- data/install/config/tools/opengl_builder/README.txt +0 -1
- data/install/config/tools/script_runner/script_runner.txt +0 -3
- data/install/config/tools/table_manager/README.txt +0 -1
- data/install/config/tools/test_runner/test_runner.txt +0 -8
- data/install/config/tools/tlm_extractor/README.txt +0 -1
- data/install/config/tools/tlm_grapher/README.txt +0 -1
- data/install/config/tools/tlm_viewer/tlm_viewer.txt +0 -5
- data/install/lib/user_version.rb +0 -3
- data/install/outputs/dart/data/README.txt +0 -1
- data/install/outputs/dart/logs/README.txt +0 -1
- data/install/outputs/handbooks/README.txt +0 -1
- data/install/outputs/logs/README.txt +0 -1
- data/install/outputs/saved_config/README.txt +0 -1
- data/install/outputs/tables/README.txt +0 -1
- data/install/outputs/tmp/README.txt +0 -1
- data/install/procedures/README.txt +0 -1
- data/install/tools/CmdExtractor +0 -16
- data/install/tools/CmdExtractor.bat +0 -9
- data/install/tools/CmdSender +0 -16
- data/install/tools/CmdSender.bat +0 -9
- data/install/tools/CmdSequence +0 -16
- data/install/tools/CmdSequence.bat +0 -9
- data/install/tools/CmdTlmServer +0 -16
- data/install/tools/CmdTlmServer.bat +0 -9
- data/install/tools/ConfigEditor +0 -16
- data/install/tools/ConfigEditor.bat +0 -9
- data/install/tools/Dart +0 -16
- data/install/tools/Dart.bat +0 -9
- data/install/tools/DataViewer +0 -16
- data/install/tools/DataViewer.bat +0 -9
- data/install/tools/HandbookCreator +0 -16
- data/install/tools/HandbookCreator.bat +0 -9
- data/install/tools/Launcher +0 -16
- data/install/tools/Launcher.bat +0 -9
- data/install/tools/LimitsMonitor +0 -16
- data/install/tools/LimitsMonitor.bat +0 -9
- data/install/tools/OpenGLBuilder +0 -16
- data/install/tools/OpenGLBuilder.bat +0 -9
- data/install/tools/PacketViewer +0 -16
- data/install/tools/PacketViewer.bat +0 -9
- data/install/tools/Replay +0 -16
- data/install/tools/Replay.bat +0 -9
- data/install/tools/ScriptRunner +0 -16
- data/install/tools/ScriptRunner.bat +0 -9
- data/install/tools/TableManager +0 -16
- data/install/tools/TableManager.bat +0 -9
- data/install/tools/TestRunner +0 -16
- data/install/tools/TestRunner.bat +0 -9
- data/install/tools/TlmExtractor +0 -16
- data/install/tools/TlmExtractor.bat +0 -9
- data/install/tools/TlmGrapher +0 -16
- data/install/tools/TlmGrapher.bat +0 -9
- data/install/tools/TlmViewer +0 -16
- data/install/tools/TlmViewer.bat +0 -9
- data/install/tools/ToolLaunch.bat +0 -72
- data/install/tools/mac/CmdExtractor.app/Contents/Info.plist +0 -38
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +0 -16
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/CmdExtractor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdSender.app/Contents/Info.plist +0 -38
- data/install/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +0 -16
- data/install/tools/mac/CmdSender.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/CmdSender.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdSequence.app/Contents/Info.plist +0 -38
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/CmdSequence.rb +0 -16
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/CmdSequence.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/CmdSequence.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/CmdTlmServer.app/Contents/Info.plist +0 -38
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +0 -16
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/CmdTlmServer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/ConfigEditor.app/Contents/Info.plist +0 -38
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/ConfigEditor.rb +0 -16
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/ConfigEditor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/ConfigEditor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/DataViewer.app/Contents/Info.plist +0 -38
- data/install/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +0 -16
- data/install/tools/mac/DataViewer.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/DataViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/HandbookCreator.app/Contents/Info.plist +0 -38
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +0 -16
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/HandbookCreator.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/Launcher.app/Contents/Info.plist +0 -38
- data/install/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +0 -16
- data/install/tools/mac/Launcher.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/Launcher.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/LimitsMonitor.app/Contents/Info.plist +0 -38
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +0 -16
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/LimitsMonitor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/OpenGLBuilder.app/Contents/Info.plist +0 -38
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +0 -16
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/OpenGLBuilder.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/PacketViewer.app/Contents/Info.plist +0 -38
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +0 -16
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/PacketViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/Replay.app/Contents/Info.plist +0 -38
- data/install/tools/mac/Replay.app/Contents/MacOS/Replay.rb +0 -16
- data/install/tools/mac/Replay.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/Replay.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/ScriptRunner.app/Contents/Info.plist +0 -38
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +0 -16
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/ScriptRunner.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TableManager.app/Contents/Info.plist +0 -38
- data/install/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +0 -16
- data/install/tools/mac/TableManager.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/TableManager.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TestRunner.app/Contents/Info.plist +0 -38
- data/install/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +0 -16
- data/install/tools/mac/TestRunner.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/TestRunner.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmExtractor.app/Contents/Info.plist +0 -38
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +0 -16
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/TlmExtractor.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmGrapher.app/Contents/Info.plist +0 -38
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +0 -16
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/TlmGrapher.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/mac/TlmViewer.app/Contents/Info.plist +0 -38
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +0 -16
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +0 -10
- data/install/tools/mac/TlmViewer.app/Contents/MacOS/tool_launch.rb +0 -38
- data/install/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/install/tools/tool_launch.rb +0 -38
- data/lib/cosmos/conversions/new_packet_log_conversion.rb +0 -52
- data/lib/cosmos/dart/.rspec +0 -1
- data/lib/cosmos/dart/Rakefile +0 -7
- data/lib/cosmos/dart/app/assets/config/manifest.js +0 -4
- data/lib/cosmos/dart/app/assets/images/.keep +0 -0
- data/lib/cosmos/dart/app/assets/javascripts/application.js +0 -13
- data/lib/cosmos/dart/app/assets/javascripts/cable.js +0 -13
- data/lib/cosmos/dart/app/assets/stylesheets/application.css.scss +0 -15
- data/lib/cosmos/dart/app/channels/application_cable/channel.rb +0 -4
- data/lib/cosmos/dart/app/channels/application_cable/connection.rb +0 -4
- data/lib/cosmos/dart/app/controllers/application_controller.rb +0 -3
- data/lib/cosmos/dart/app/jobs/application_job.rb +0 -2
- data/lib/cosmos/dart/app/mailers/application_mailer.rb +0 -4
- data/lib/cosmos/dart/app/models/application_record.rb +0 -3
- data/lib/cosmos/dart/app/models/item.rb +0 -6
- data/lib/cosmos/dart/app/models/item_to_decom_table_mapping.rb +0 -9
- data/lib/cosmos/dart/app/models/packet.rb +0 -4
- data/lib/cosmos/dart/app/models/packet_config.rb +0 -7
- data/lib/cosmos/dart/app/models/packet_log.rb +0 -3
- data/lib/cosmos/dart/app/models/packet_log_entry.rb +0 -41
- data/lib/cosmos/dart/app/models/status.rb +0 -2
- data/lib/cosmos/dart/app/models/system_config.rb +0 -2
- data/lib/cosmos/dart/app/models/target.rb +0 -4
- data/lib/cosmos/dart/app/views/layouts/application.html.erb +0 -14
- data/lib/cosmos/dart/app/views/layouts/mailer.html.erb +0 -13
- data/lib/cosmos/dart/app/views/layouts/mailer.text.erb +0 -1
- data/lib/cosmos/dart/bin/bundle +0 -3
- data/lib/cosmos/dart/bin/rails +0 -4
- data/lib/cosmos/dart/bin/rake +0 -4
- data/lib/cosmos/dart/bin/setup +0 -34
- data/lib/cosmos/dart/bin/update +0 -29
- data/lib/cosmos/dart/config/application.rb +0 -29
- data/lib/cosmos/dart/config/boot.rb +0 -3
- data/lib/cosmos/dart/config/cable.yml +0 -9
- data/lib/cosmos/dart/config/database.yml +0 -25
- data/lib/cosmos/dart/config/environment.rb +0 -5
- data/lib/cosmos/dart/config/environments/development.rb +0 -62
- data/lib/cosmos/dart/config/environments/production.rb +0 -84
- data/lib/cosmos/dart/config/environments/test.rb +0 -42
- data/lib/cosmos/dart/config/initializers/application_controller_renderer.rb +0 -6
- data/lib/cosmos/dart/config/initializers/assets.rb +0 -12
- data/lib/cosmos/dart/config/initializers/backtrace_silencers.rb +0 -7
- data/lib/cosmos/dart/config/initializers/cookies_serializer.rb +0 -5
- data/lib/cosmos/dart/config/initializers/filter_parameter_logging.rb +0 -4
- data/lib/cosmos/dart/config/initializers/inflections.rb +0 -16
- data/lib/cosmos/dart/config/initializers/mime_types.rb +0 -4
- data/lib/cosmos/dart/config/initializers/new_framework_defaults.rb +0 -25
- data/lib/cosmos/dart/config/initializers/session_store.rb +0 -3
- data/lib/cosmos/dart/config/initializers/wrap_parameters.rb +0 -14
- data/lib/cosmos/dart/config/locales/en.yml +0 -23
- data/lib/cosmos/dart/config/puma.rb +0 -47
- data/lib/cosmos/dart/config/routes.rb +0 -3
- data/lib/cosmos/dart/config/secrets.yml +0 -22
- data/lib/cosmos/dart/config.ru +0 -5
- data/lib/cosmos/dart/db/migrate/20170406172907_create_targets.rb +0 -8
- data/lib/cosmos/dart/db/migrate/20170406172927_create_packets.rb +0 -10
- data/lib/cosmos/dart/db/migrate/20170406172937_create_packet_logs.rb +0 -9
- data/lib/cosmos/dart/db/migrate/20170406172943_create_packet_log_entries.rb +0 -16
- data/lib/cosmos/dart/db/migrate/20170406183500_change_packet_log_entries_primary_key.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20170407153618_add_unique_requirements.rb +0 -7
- data/lib/cosmos/dart/db/migrate/20170511155447_add_meta_id_to_packet_log_entries.rb +0 -6
- data/lib/cosmos/dart/db/migrate/20170523185056_rename_received_time_and_add_is_tlm_to_packet_log_entries.rb +0 -7
- data/lib/cosmos/dart/db/migrate/20170525201157_create_items.rb +0 -10
- data/lib/cosmos/dart/db/migrate/20170525201315_create_system_configs.rb +0 -9
- data/lib/cosmos/dart/db/migrate/20170525201624_create_packet_configs.rb +0 -11
- data/lib/cosmos/dart/db/migrate/20170525201745_create_item_to_decom_table_mappings.rb +0 -12
- data/lib/cosmos/dart/db/migrate/20170525201939_create_decom_tables.rb +0 -12
- data/lib/cosmos/dart/db/migrate/20170525202051_add_decom_state_to_packet_log_entry.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20170913160409_update_items.rb +0 -6
- data/lib/cosmos/dart/db/migrate/20170913160558_update_item_to_decom_table_mapping.rb +0 -11
- data/lib/cosmos/dart/db/migrate/20170913160916_udpate_decom_table.rb +0 -6
- data/lib/cosmos/dart/db/migrate/20170913212026_add_ready_to_packet_configs.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20170913223556_modify_tables.rb +0 -9
- data/lib/cosmos/dart/db/migrate/20170914215744_modify_mapping_table.rb +0 -6
- data/lib/cosmos/dart/db/migrate/20170919201433_add_system_config_id_to_packet_config.rb +0 -11
- data/lib/cosmos/dart/db/migrate/20170919210307_add_max_table_index_to_packet_configs.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20171215225546_add_ready_to_packet_log_entries.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20180116214338_add_index_for_ple_ready_to_packet_log_entries.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20180423205644_create_statuses.rb +0 -22
- data/lib/cosmos/dart/db/migrate/20180425211340_add_decom_state_index.rb +0 -5
- data/lib/cosmos/dart/db/migrate/20180509204705_remove_indexes.rb +0 -29
- data/lib/cosmos/dart/db/migrate/20180510160002_remove_timestamps_from_ples.rb +0 -6
- data/lib/cosmos/dart/db/migrate/20180511194944_add_packet_log_id_to_tables.rb +0 -18
- data/lib/cosmos/dart/db/schema.rb +0 -109
- data/lib/cosmos/dart/db/seeds.rb +0 -15
- data/lib/cosmos/dart/examples/dart_decom_client.rb +0 -45
- data/lib/cosmos/dart/examples/dart_stream_client.rb +0 -97
- data/lib/cosmos/dart/lib/dart_common.rb +0 -755
- data/lib/cosmos/dart/lib/dart_constants.rb +0 -15
- data/lib/cosmos/dart/lib/dart_database_cleaner.rb +0 -223
- data/lib/cosmos/dart/lib/dart_decom_query.rb +0 -285
- data/lib/cosmos/dart/lib/dart_decommutator.rb +0 -304
- data/lib/cosmos/dart/lib/dart_importer.rb +0 -184
- data/lib/cosmos/dart/lib/dart_logging.rb +0 -50
- data/lib/cosmos/dart/lib/dart_master_query.rb +0 -71
- data/lib/cosmos/dart/lib/dart_packet_log_writer.rb +0 -157
- data/lib/cosmos/dart/lib/dart_reducer_manager.rb +0 -116
- data/lib/cosmos/dart/lib/dart_reducer_worker_thread.rb +0 -305
- data/lib/cosmos/dart/lib/dart_tcpip_server_interface.rb +0 -142
- data/lib/cosmos/dart/processes/dart.rb +0 -148
- data/lib/cosmos/dart/processes/dart_decom_server.rb +0 -40
- data/lib/cosmos/dart/processes/dart_import.rb +0 -64
- data/lib/cosmos/dart/processes/dart_ingester.rb +0 -132
- data/lib/cosmos/dart/processes/dart_master.rb +0 -44
- data/lib/cosmos/dart/processes/dart_reducer.rb +0 -28
- data/lib/cosmos/dart/processes/dart_stream_server.rb +0 -32
- data/lib/cosmos/dart/processes/dart_util.rb +0 -262
- data/lib/cosmos/dart/processes/dart_worker.rb +0 -38
- data/lib/cosmos/dart/spec/dart/dart_common_spec.rb +0 -333
- data/lib/cosmos/dart/spec/dart/dart_database_cleaner_spec.rb +0 -455
- data/lib/cosmos/dart/spec/dart/dart_decom_query_spec.rb +0 -154
- data/lib/cosmos/dart/spec/dart/dart_decommutator_spec.rb +0 -337
- data/lib/cosmos/dart/spec/dart/dart_importer_spec.rb +0 -84
- data/lib/cosmos/dart/spec/dart/dart_logging_spec.rb +0 -30
- data/lib/cosmos/dart/spec/dart/dart_packet_log_writer_spec.rb +0 -152
- data/lib/cosmos/dart/spec/dart/dart_reducer_manager_spec.rb +0 -290
- data/lib/cosmos/dart/spec/dart/dart_tcpip_server_interface_spec.rb +0 -240
- data/lib/cosmos/dart/spec/rails_helper.rb +0 -60
- data/lib/cosmos/dart/spec/spec_helper.rb +0 -139
- data/lib/cosmos/ext/.keep +0 -0
- data/lib/cosmos/gui/choosers/combobox_chooser.rb +0 -141
- data/lib/cosmos/gui/choosers/file_chooser.rb +0 -85
- data/lib/cosmos/gui/choosers/float_chooser.rb +0 -67
- data/lib/cosmos/gui/choosers/integer_chooser.rb +0 -69
- data/lib/cosmos/gui/choosers/string_chooser.rb +0 -35
- data/lib/cosmos/gui/choosers/telemetry_chooser.rb +0 -326
- data/lib/cosmos/gui/choosers/value_chooser.rb +0 -67
- data/lib/cosmos/gui/dialogs/about_dialog.rb +0 -166
- data/lib/cosmos/gui/dialogs/calendar_dialog.rb +0 -140
- data/lib/cosmos/gui/dialogs/cmd_details_dialog.rb +0 -51
- data/lib/cosmos/gui/dialogs/cmd_tlm_raw_dialog.rb +0 -167
- data/lib/cosmos/gui/dialogs/dart_dialog.rb +0 -60
- data/lib/cosmos/gui/dialogs/details_dialog.rb +0 -205
- data/lib/cosmos/gui/dialogs/exception_dialog.rb +0 -121
- data/lib/cosmos/gui/dialogs/exception_list_dialog.rb +0 -60
- data/lib/cosmos/gui/dialogs/find_replace_dialog.rb +0 -272
- data/lib/cosmos/gui/dialogs/interface_raw_dialog.rb +0 -143
- data/lib/cosmos/gui/dialogs/legal_dialog.rb +0 -184
- data/lib/cosmos/gui/dialogs/packet_log_dialog.rb +0 -97
- data/lib/cosmos/gui/dialogs/progress_dialog.rb +0 -313
- data/lib/cosmos/gui/dialogs/pry_dialog.rb +0 -169
- data/lib/cosmos/gui/dialogs/scroll_text_dialog.rb +0 -48
- data/lib/cosmos/gui/dialogs/select_dialog.rb +0 -59
- data/lib/cosmos/gui/dialogs/set_tlm_dialog.rb +0 -159
- data/lib/cosmos/gui/dialogs/splash.rb +0 -145
- data/lib/cosmos/gui/dialogs/tlm_details_dialog.rb +0 -202
- data/lib/cosmos/gui/dialogs/tlm_edit_dialog.rb +0 -79
- data/lib/cosmos/gui/dialogs/tlm_graph_dialog.rb +0 -110
- data/lib/cosmos/gui/line_graph/line_graph.rb +0 -482
- data/lib/cosmos/gui/line_graph/line_graph_dialog.rb +0 -36
- data/lib/cosmos/gui/line_graph/line_graph_drawing.rb +0 -521
- data/lib/cosmos/gui/line_graph/line_graph_popups.rb +0 -112
- data/lib/cosmos/gui/line_graph/line_graph_scaling.rb +0 -452
- data/lib/cosmos/gui/line_graph/line_graph_script.rb +0 -81
- data/lib/cosmos/gui/line_graph/lines.rb +0 -304
- data/lib/cosmos/gui/line_graph/overview_graph.rb +0 -474
- data/lib/cosmos/gui/opengl/earth_model.rb +0 -25
- data/lib/cosmos/gui/opengl/gl_bounds.rb +0 -55
- data/lib/cosmos/gui/opengl/gl_light.rb +0 -38
- data/lib/cosmos/gui/opengl/gl_material.rb +0 -28
- data/lib/cosmos/gui/opengl/gl_scene.rb +0 -78
- data/lib/cosmos/gui/opengl/gl_shape.rb +0 -148
- data/lib/cosmos/gui/opengl/gl_viewer.rb +0 -715
- data/lib/cosmos/gui/opengl/gl_viewport.rb +0 -34
- data/lib/cosmos/gui/opengl/moon_model.rb +0 -25
- data/lib/cosmos/gui/opengl/opengl.rb +0 -14
- data/lib/cosmos/gui/opengl/stl_reader.rb +0 -210
- data/lib/cosmos/gui/opengl/stl_shape.rb +0 -127
- data/lib/cosmos/gui/opengl/texture_mapped_sphere.rb +0 -204
- data/lib/cosmos/gui/qt.rb +0 -858
- data/lib/cosmos/gui/qt_tool.rb +0 -524
- data/lib/cosmos/gui/text/completion.rb +0 -403
- data/lib/cosmos/gui/text/completion_line_edit.rb +0 -30
- data/lib/cosmos/gui/text/completion_text_edit.rb +0 -198
- data/lib/cosmos/gui/text/ruby_editor.rb +0 -505
- data/lib/cosmos/gui/utilities/analyze_log.rb +0 -153
- data/lib/cosmos/gui/utilities/classification_banner.rb +0 -60
- data/lib/cosmos/gui/utilities/screenshot.rb +0 -33
- data/lib/cosmos/gui/utilities/script_module_gui.rb +0 -390
- data/lib/cosmos/gui/widgets/dart_frame.rb +0 -142
- data/lib/cosmos/gui/widgets/dart_meta_frame.rb +0 -145
- data/lib/cosmos/gui/widgets/full_text_search_line_edit.rb +0 -171
- data/lib/cosmos/gui/widgets/packet_log_frame.rb +0 -374
- data/lib/cosmos/gui/widgets/realtime_button_bar.rb +0 -99
- data/lib/cosmos/interfaces/cmd_tlm_server_interface.rb +0 -134
- data/lib/cosmos/interfaces/dart_status_interface.rb +0 -91
- data/lib/cosmos/packet_logs/ccsds_log_reader.rb +0 -104
- data/lib/cosmos/packet_logs/packet_log_reader.rb +0 -504
- data/lib/cosmos/packet_logs/packet_log_writer.rb +0 -353
- data/lib/cosmos/packet_logs/packet_log_writer_pair.rb +0 -30
- data/lib/cosmos/packet_logs.rb +0 -6
- data/lib/cosmos/packets/parsers/macro_parser.rb +0 -121
- data/lib/cosmos/processors/new_packet_log_processor.rb +0 -39
- data/lib/cosmos/script/cmd_tlm_server.rb +0 -216
- data/lib/cosmos/script/replay.rb +0 -60
- data/lib/cosmos/script/scripting.rb +0 -146
- data/lib/cosmos/script/telemetry.rb +0 -218
- data/lib/cosmos/script/tools.rb +0 -121
- data/lib/cosmos/tools/cmd_extractor/cmd_extractor.rb +0 -470
- data/lib/cosmos/tools/cmd_sender/cmd_param_table_item_delegate.rb +0 -94
- data/lib/cosmos/tools/cmd_sender/cmd_params.rb +0 -382
- data/lib/cosmos/tools/cmd_sender/cmd_sender.rb +0 -533
- data/lib/cosmos/tools/cmd_sender/cmd_sender_text_edit.rb +0 -70
- data/lib/cosmos/tools/cmd_sequence/cmd_sequence.rb +0 -769
- data/lib/cosmos/tools/cmd_sequence/sequence_item.rb +0 -221
- data/lib/cosmos/tools/cmd_sequence/sequence_list.rb +0 -206
- data/lib/cosmos/tools/cmd_tlm_server/background_task.rb +0 -54
- data/lib/cosmos/tools/cmd_tlm_server/background_tasks.rb +0 -82
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server.rb +0 -785
- data/lib/cosmos/tools/cmd_tlm_server/cmd_tlm_server_gui.rb +0 -650
- data/lib/cosmos/tools/cmd_tlm_server/commanding.rb +0 -132
- data/lib/cosmos/tools/cmd_tlm_server/connections.rb +0 -175
- data/lib/cosmos/tools/cmd_tlm_server/gui/interfaces_tab.rb +0 -216
- data/lib/cosmos/tools/cmd_tlm_server/gui/logging_tab.rb +0 -181
- data/lib/cosmos/tools/cmd_tlm_server/gui/packets_tab.rb +0 -163
- data/lib/cosmos/tools/cmd_tlm_server/gui/replay_tab.rb +0 -319
- data/lib/cosmos/tools/cmd_tlm_server/gui/status_tab.rb +0 -270
- data/lib/cosmos/tools/cmd_tlm_server/gui/targets_tab.rb +0 -93
- data/lib/cosmos/tools/cmd_tlm_server/interfaces.rb +0 -153
- data/lib/cosmos/tools/cmd_tlm_server/limits_groups_background_task.rb +0 -124
- data/lib/cosmos/tools/cmd_tlm_server/packet_logging.rb +0 -161
- data/lib/cosmos/tools/cmd_tlm_server/replay_backend.rb +0 -511
- data/lib/cosmos/tools/cmd_tlm_server/router_thread.rb +0 -71
- data/lib/cosmos/tools/cmd_tlm_server/routers.rb +0 -144
- data/lib/cosmos/tools/config_editor/config_editor.rb +0 -918
- data/lib/cosmos/tools/config_editor/config_editor_frame.rb +0 -686
- data/lib/cosmos/tools/config_editor/system_config_dialog.rb +0 -158
- data/lib/cosmos/tools/data_viewer/data_viewer.rb +0 -789
- data/lib/cosmos/tools/data_viewer/data_viewer_component.rb +0 -121
- data/lib/cosmos/tools/data_viewer/dump_component.rb +0 -34
- data/lib/cosmos/tools/data_viewer/text_component.rb +0 -77
- data/lib/cosmos/tools/handbook_creator/handbook_creator.rb +0 -182
- data/lib/cosmos/tools/handbook_creator/handbook_creator_config.rb +0 -380
- data/lib/cosmos/tools/launcher/launcher.rb +0 -195
- data/lib/cosmos/tools/launcher/launcher_config.rb +0 -245
- data/lib/cosmos/tools/launcher/launcher_multitool.rb +0 -40
- data/lib/cosmos/tools/launcher/launcher_tool.rb +0 -116
- data/lib/cosmos/tools/limits_monitor/limits_monitor.rb +0 -1029
- data/lib/cosmos/tools/opengl_builder/opengl_builder.rb +0 -416
- data/lib/cosmos/tools/opengl_builder/scene_config.rb +0 -118
- data/lib/cosmos/tools/packet_viewer/packet_viewer.rb +0 -641
- data/lib/cosmos/tools/replay/replay.rb +0 -17
- data/lib/cosmos/tools/script_runner/script_audit.rb +0 -148
- data/lib/cosmos/tools/script_runner/script_runner.rb +0 -1066
- data/lib/cosmos/tools/script_runner/script_runner_config.rb +0 -53
- data/lib/cosmos/tools/script_runner/script_runner_frame.rb +0 -1985
- data/lib/cosmos/tools/table_manager/table_manager.rb +0 -1152
- data/lib/cosmos/tools/test_runner/results_writer.rb +0 -287
- data/lib/cosmos/tools/test_runner/test_runner.rb +0 -1302
- data/lib/cosmos/tools/test_runner/test_runner_chooser.rb +0 -353
- data/lib/cosmos/tools/tlm_extractor/text_item_chooser.rb +0 -60
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor.rb +0 -1305
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_config.rb +0 -535
- data/lib/cosmos/tools/tlm_extractor/tlm_extractor_processor.rb +0 -131
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/housekeeping_data_object_adder.rb +0 -92
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/singlexy_data_object_adder.rb +0 -44
- data/lib/cosmos/tools/tlm_grapher/data_object_adders/xy_data_object_adder.rb +0 -95
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/data_object_editor.rb +0 -61
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/housekeeping_data_object_editor.rb +0 -250
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/linegraph_data_object_editor.rb +0 -141
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/singlexy_data_object_editor.rb +0 -30
- data/lib/cosmos/tools/tlm_grapher/data_object_editors/xy_data_object_editor.rb +0 -210
- data/lib/cosmos/tools/tlm_grapher/data_objects/data_object.rb +0 -232
- data/lib/cosmos/tools/tlm_grapher/data_objects/housekeeping_data_object.rb +0 -503
- data/lib/cosmos/tools/tlm_grapher/data_objects/linegraph_data_object.rb +0 -173
- data/lib/cosmos/tools/tlm_grapher/data_objects/singlexy_data_object.rb +0 -21
- data/lib/cosmos/tools/tlm_grapher/data_objects/xy_data_object.rb +0 -381
- data/lib/cosmos/tools/tlm_grapher/plot_editors/linegraph_plot_editor.rb +0 -191
- data/lib/cosmos/tools/tlm_grapher/plot_editors/plot_editor.rb +0 -28
- data/lib/cosmos/tools/tlm_grapher/plot_editors/singlexy_plot_editor.rb +0 -30
- data/lib/cosmos/tools/tlm_grapher/plot_editors/xy_plot_editor.rb +0 -59
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/linegraph_plot_gui_object.rb +0 -173
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/singlexy_plot_gui_object.rb +0 -27
- data/lib/cosmos/tools/tlm_grapher/plot_gui_objects/xy_plot_gui_object.rb +0 -74
- data/lib/cosmos/tools/tlm_grapher/plots/linegraph_plot.rb +0 -209
- data/lib/cosmos/tools/tlm_grapher/plots/plot.rb +0 -69
- data/lib/cosmos/tools/tlm_grapher/plots/singlexy_plot.rb +0 -20
- data/lib/cosmos/tools/tlm_grapher/plots/xy_plot.rb +0 -61
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots/overview_tabbed_plots.rb +0 -1291
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_config.rb +0 -447
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_dart_thread.rb +0 -164
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_data_object_editor.rb +0 -107
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_logfile_thread.rb +0 -114
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_plot_editor.rb +0 -101
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_realtime_thread.rb +0 -79
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tab.rb +0 -57
- data/lib/cosmos/tools/tlm_grapher/tabbed_plots_tool/tabbed_plots_tool.rb +0 -1079
- data/lib/cosmos/tools/tlm_grapher/tlm_grapher.rb +0 -104
- data/lib/cosmos/tools/tlm_viewer/screen.rb +0 -590
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer.rb +0 -615
- data/lib/cosmos/tools/tlm_viewer/tlm_viewer_config.rb +0 -314
- data/lib/cosmos/tools/tlm_viewer/widgets/aging_widget.rb +0 -109
- data/lib/cosmos/tools/tlm_viewer/widgets/array_widget.rb +0 -65
- data/lib/cosmos/tools/tlm_viewer/widgets/backgroundbutton_widget.rb +0 -54
- data/lib/cosmos/tools/tlm_viewer/widgets/block_widget.rb +0 -56
- data/lib/cosmos/tools/tlm_viewer/widgets/button_widget.rb +0 -39
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_clickable.rb +0 -47
- data/lib/cosmos/tools/tlm_viewer/widgets/canvas_widget.rb +0 -84
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasdot_widget.rb +0 -78
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasellipse_widget.rb +0 -40
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimage_widget.rb +0 -48
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasimagevalue_widget.rb +0 -109
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabel_widget.rb +0 -45
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslabelvalue_widget.rb +0 -55
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasline_widget.rb +0 -55
- data/lib/cosmos/tools/tlm_viewer/widgets/canvaslinevalue_widget.rb +0 -67
- data/lib/cosmos/tools/tlm_viewer/widgets/canvasvalue_widget.rb +0 -131
- data/lib/cosmos/tools/tlm_viewer/widgets/checkbutton_widget.rb +0 -40
- data/lib/cosmos/tools/tlm_viewer/widgets/combobox_widget.rb +0 -32
- data/lib/cosmos/tools/tlm_viewer/widgets/formatfontvalue_widget.rb +0 -31
- data/lib/cosmos/tools/tlm_viewer/widgets/formatvalue_widget.rb +0 -32
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontal_widget.rb +0 -27
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontalbox_widget.rb +0 -30
- data/lib/cosmos/tools/tlm_viewer/widgets/horizontalline_widget.rb +0 -24
- data/lib/cosmos/tools/tlm_viewer/widgets/label_widget.rb +0 -31
- data/lib/cosmos/tools/tlm_viewer/widgets/labelformatvalue_widget.rb +0 -38
- data/lib/cosmos/tools/tlm_viewer/widgets/labelled_widget.rb +0 -58
- data/lib/cosmos/tools/tlm_viewer/widgets/labelprogressbar_widget.rb +0 -37
- data/lib/cosmos/tools/tlm_viewer/widgets/labeltrendlimitsbar_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvalue_widget.rb +0 -58
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluedesc_widget.rb +0 -40
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluelimitsbar_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluelimitscolumn_widget.rb +0 -37
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangebar_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/labelvaluerangecolumn_widget.rb +0 -38
- data/lib/cosmos/tools/tlm_viewer/widgets/layout_widget.rb +0 -32
- data/lib/cosmos/tools/tlm_viewer/widgets/led_widget.rb +0 -108
- data/lib/cosmos/tools/tlm_viewer/widgets/limits_widget.rb +0 -163
- data/lib/cosmos/tools/tlm_viewer/widgets/limitsbar_widget.rb +0 -130
- data/lib/cosmos/tools/tlm_viewer/widgets/limitscolor_widget.rb +0 -108
- data/lib/cosmos/tools/tlm_viewer/widgets/limitscolumn_widget.rb +0 -130
- data/lib/cosmos/tools/tlm_viewer/widgets/linegraph_widget.rb +0 -62
- data/lib/cosmos/tools/tlm_viewer/widgets/matrixbycolumns_widget.rb +0 -59
- data/lib/cosmos/tools/tlm_viewer/widgets/multi_widget.rb +0 -114
- data/lib/cosmos/tools/tlm_viewer/widgets/progressbar_widget.rb +0 -39
- data/lib/cosmos/tools/tlm_viewer/widgets/radiobutton_widget.rb +0 -41
- data/lib/cosmos/tools/tlm_viewer/widgets/rangebar_widget.rb +0 -63
- data/lib/cosmos/tools/tlm_viewer/widgets/rangecolumn_widget.rb +0 -63
- data/lib/cosmos/tools/tlm_viewer/widgets/screenshotbutton_widget.rb +0 -35
- data/lib/cosmos/tools/tlm_viewer/widgets/scrollwindow_widget.rb +0 -34
- data/lib/cosmos/tools/tlm_viewer/widgets/sectionheader_widget.rb +0 -32
- data/lib/cosmos/tools/tlm_viewer/widgets/spacer_widget.rb +0 -53
- data/lib/cosmos/tools/tlm_viewer/widgets/tabbook_widget.rb +0 -25
- data/lib/cosmos/tools/tlm_viewer/widgets/tabitem_widget.rb +0 -27
- data/lib/cosmos/tools/tlm_viewer/widgets/textbox_widget.rb +0 -56
- data/lib/cosmos/tools/tlm_viewer/widgets/textfield_widget.rb +0 -25
- data/lib/cosmos/tools/tlm_viewer/widgets/timegraph_widget.rb +0 -86
- data/lib/cosmos/tools/tlm_viewer/widgets/title_widget.rb +0 -21
- data/lib/cosmos/tools/tlm_viewer/widgets/trendbar_widget.rb +0 -125
- data/lib/cosmos/tools/tlm_viewer/widgets/trendlimitsbar_widget.rb +0 -48
- data/lib/cosmos/tools/tlm_viewer/widgets/value_widget.rb +0 -43
- data/lib/cosmos/tools/tlm_viewer/widgets/valuelimitsbar_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/valuelimitscolumn_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/valuerangebar_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/valuerangecolumn_widget.rb +0 -36
- data/lib/cosmos/tools/tlm_viewer/widgets/vertical_widget.rb +0 -37
- data/lib/cosmos/tools/tlm_viewer/widgets/verticalbox_widget.rb +0 -40
- data/lib/cosmos/tools/tlm_viewer/widgets/widget.rb +0 -270
- data/lib/cosmos/tools/tlm_viewer/widgets.rb +0 -65
- data/lib/cosmos/utilities/low_fragmentation_array.rb +0 -19
- data/make_gems.sh +0 -10
- data/roodi.yml +0 -24
- data/run_gui_tests.bat +0 -46
- data/spec/ccsds/ccsds_packet_spec.rb +0 -67
- data/spec/ccsds/ccsds_parser_spec.rb +0 -148
- data/spec/config/config_parser_spec.rb +0 -399
- data/spec/conversions/conversion_spec.rb +0 -31
- data/spec/conversions/generic_conversion_spec.rb +0 -45
- data/spec/conversions/new_packet_log_conversion_spec.rb +0 -39
- data/spec/conversions/packet_time_formatted_conversion_spec.rb +0 -58
- data/spec/conversions/packet_time_seconds_conversion_spec.rb +0 -60
- data/spec/conversions/polynomial_conversion_spec.rb +0 -40
- data/spec/conversions/processor_conversion_spec.rb +0 -45
- data/spec/conversions/received_count_conversion_spec.rb +0 -43
- data/spec/conversions/received_time_formatted_conversion_spec.rb +0 -49
- data/spec/conversions/received_time_seconds_conversion_spec.rb +0 -50
- data/spec/conversions/segmented_polynomial_conversion_spec.rb +0 -51
- data/spec/conversions/unix_time_formatted_conversion_spec.rb +0 -74
- data/spec/conversions/unix_time_seconds_conversion_spec.rb +0 -76
- data/spec/core_ext/array_spec.rb +0 -247
- data/spec/core_ext/class_spec.rb +0 -90
- data/spec/core_ext/cosmos_io_spec.rb +0 -77
- data/spec/core_ext/exception_spec.rb +0 -91
- data/spec/core_ext/file_spec.rb +0 -72
- data/spec/core_ext/hash_spec.rb +0 -24
- data/spec/core_ext/io_spec.rb +0 -46
- data/spec/core_ext/kernel_spec.rb +0 -54
- data/spec/core_ext/math_spec.rb +0 -116
- data/spec/core_ext/matrix_spec.rb +0 -127
- data/spec/core_ext/objectspace_spec.rb +0 -32
- data/spec/core_ext/range_spec.rb +0 -21
- data/spec/core_ext/socket_spec.rb +0 -34
- data/spec/core_ext/string_spec.rb +0 -239
- data/spec/core_ext/stringio_spec.rb +0 -21
- data/spec/core_ext/time_spec.rb +0 -222
- data/spec/gui/line_graph/line_clip_spec.rb +0 -324
- data/spec/gui/qt_spec.rb +0 -104
- data/spec/gui/utilities/script_module_gui_spec.rb +0 -83
- data/spec/install/config/data/data.txt +0 -1
- data/spec/install/config/system/system.txt +0 -27
- data/spec/install/config/targets/INST/cmd_tlm/inst_cmd_linc.txt +0 -30
- data/spec/install/config/targets/INST/cmd_tlm/inst_cmds.txt +0 -113
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm.txt +0 -236
- data/spec/install/config/targets/INST/cmd_tlm/inst_tlm_linc.txt +0 -25
- data/spec/install/config/targets/INST/cmd_tlm_server.txt +0 -5
- data/spec/install/config/targets/INST/lib/sim_inst.rb +0 -305
- data/spec/install/config/targets/INST/screens/hs.txt +0 -42
- data/spec/install/config/targets/INST/target.txt +0 -12
- data/spec/install/config/targets/SYSTEM/cmd_tlm/limits_groups.txt +0 -7
- data/spec/install/config/targets/SYSTEM/cmd_tlm/meta_tlm.txt +0 -10
- data/spec/install/config/targets/SYSTEM/cmd_tlm/system_cmds.txt +0 -41
- data/spec/install/config/targets/SYSTEM/cmd_tlm/system_tlm.txt +0 -7
- data/spec/install/config/targets/SYSTEM/cmd_tlm_server.txt +0 -6
- data/spec/install/config/targets/SYSTEM/screens/status.txt +0 -12
- data/spec/install/config/targets/SYSTEM/target.txt +0 -12
- data/spec/install/config/tools/cmd_tlm_server/cmd_tlm_server.txt +0 -4
- data/spec/install/lib/README.txt +0 -1
- data/spec/install/yaml_docs_spec.rb +0 -132
- data/spec/interfaces/cmd_tlm_server_interface_spec.rb +0 -149
- data/spec/interfaces/interface_spec.rb +0 -513
- data/spec/interfaces/linc_interface_spec.rb +0 -243
- data/spec/interfaces/protocols/burst_protocol_spec.rb +0 -318
- data/spec/interfaces/protocols/crc_protocol_spec.rb +0 -825
- data/spec/interfaces/protocols/fixed_protocol_spec.rb +0 -154
- data/spec/interfaces/protocols/ignore_packet_protocol_spec.rb +0 -243
- data/spec/interfaces/protocols/length_protocol_spec.rb +0 -587
- data/spec/interfaces/protocols/override_protocol_spec.rb +0 -162
- data/spec/interfaces/protocols/preidentified_protocol_spec.rb +0 -368
- data/spec/interfaces/protocols/template_protocol_spec.rb +0 -444
- data/spec/interfaces/protocols/terminated_protocol_spec.rb +0 -174
- data/spec/interfaces/serial_interface_spec.rb +0 -66
- data/spec/interfaces/simulated_target_interface_spec.rb +0 -128
- data/spec/interfaces/tcpip_client_interface_spec.rb +0 -60
- data/spec/interfaces/tcpip_server_interface_spec.rb +0 -157
- data/spec/interfaces/udp_interface_spec.rb +0 -249
- data/spec/io/buffered_file_spec.rb +0 -146
- data/spec/io/io_multiplexer_spec.rb +0 -102
- data/spec/io/json_drb_object_spec.rb +0 -106
- data/spec/io/json_drb_rack_spec.rb +0 -166
- data/spec/io/json_drb_spec.rb +0 -251
- data/spec/io/json_rpc_spec.rb +0 -270
- data/spec/io/posix_serial_driver_spec.rb +0 -87
- data/spec/io/raw_logger_pair_spec.rb +0 -76
- data/spec/io/raw_logger_spec.rb +0 -138
- data/spec/io/serial_driver_spec.rb +0 -64
- data/spec/io/stderr_spec.rb +0 -32
- data/spec/io/stdout_spec.rb +0 -32
- data/spec/io/udp_sockets_spec.rb +0 -139
- data/spec/io/win32_serial_driver_spec.rb +0 -129
- data/spec/packet_logs/packet_log_reader_spec.rb +0 -607
- data/spec/packet_logs/packet_log_writer_pair_spec.rb +0 -30
- data/spec/packet_logs/packet_log_writer_spec.rb +0 -227
- data/spec/packets/binary_accessor_spec.rb +0 -2323
- data/spec/packets/commands_spec.rb +0 -401
- data/spec/packets/limits_response_spec.rb +0 -25
- data/spec/packets/limits_spec.rb +0 -344
- data/spec/packets/packet_config_spec.rb +0 -862
- data/spec/packets/packet_item_limits_spec.rb +0 -161
- data/spec/packets/packet_item_spec.rb +0 -450
- data/spec/packets/packet_spec.rb +0 -1499
- data/spec/packets/parsers/format_string_parser_spec.rb +0 -122
- data/spec/packets/parsers/limits_parser_spec.rb +0 -293
- data/spec/packets/parsers/limits_response_parser_spec.rb +0 -149
- data/spec/packets/parsers/macro_parser_spec.rb +0 -220
- data/spec/packets/parsers/packet_item_parser_spec.rb +0 -405
- data/spec/packets/parsers/packet_parser_spec.rb +0 -99
- data/spec/packets/parsers/processor_parser_spec.rb +0 -114
- data/spec/packets/parsers/state_parser_spec.rb +0 -247
- data/spec/packets/parsers/xtce_parser_spec.rb +0 -395
- data/spec/packets/structure_item_spec.rb +0 -200
- data/spec/packets/structure_spec.rb +0 -657
- data/spec/packets/telemetry_spec.rb +0 -629
- data/spec/processors/new_packet_log_processor_spec.rb +0 -39
- data/spec/processors/processor_spec.rb +0 -55
- data/spec/processors/statistics_processor_spec.rb +0 -95
- data/spec/processors/watermark_processor_spec.rb +0 -51
- data/spec/script/cmd_tlm_server_spec.rb +0 -194
- data/spec/script/commands_disconnect_spec.rb +0 -258
- data/spec/script/commands_spec.rb +0 -283
- data/spec/script/extract_spec.rb +0 -166
- data/spec/script/limits_spec.rb +0 -133
- data/spec/script/script_spec.rb +0 -80
- data/spec/script/scripting_spec.rb +0 -742
- data/spec/script/telemetry_spec.rb +0 -186
- data/spec/script/tools_spec.rb +0 -111
- data/spec/spec_helper.rb +0 -248
- data/spec/streams/serial_stream_spec.rb +0 -122
- data/spec/streams/stream_spec.rb +0 -30
- data/spec/streams/tcpip_client_stream_spec.rb +0 -65
- data/spec/streams/tcpip_socket_stream_spec.rb +0 -231
- data/spec/system/system_spec.rb +0 -1081
- data/spec/system/target_spec.rb +0 -368
- data/spec/tools/cmd_tlm_server/api_spec.rb +0 -1656
- data/spec/tools/cmd_tlm_server/background_task_spec.rb +0 -44
- data/spec/tools/cmd_tlm_server/background_tasks_spec.rb +0 -190
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_config_spec.rb +0 -785
- data/spec/tools/cmd_tlm_server/cmd_tlm_server_spec.rb +0 -496
- data/spec/tools/cmd_tlm_server/commanding_spec.rb +0 -171
- data/spec/tools/cmd_tlm_server/connections_spec.rb +0 -231
- data/spec/tools/cmd_tlm_server/interface_thread_spec.rb +0 -319
- data/spec/tools/cmd_tlm_server/interfaces_spec.rb +0 -248
- data/spec/tools/cmd_tlm_server/limits_groups_background_task_spec.rb +0 -153
- data/spec/tools/cmd_tlm_server/packet_logging_spec.rb +0 -139
- data/spec/tools/cmd_tlm_server/router_thread_spec.rb +0 -150
- data/spec/tools/cmd_tlm_server/routers_spec.rb +0 -219
- data/spec/tools/launcher/launcher_config_spec.rb +0 -474
- data/spec/tools/table_manager/table_config_spec.rb +0 -225
- data/spec/tools/table_manager/table_item_parser_spec.rb +0 -61
- data/spec/tools/table_manager/table_item_spec.rb +0 -57
- data/spec/tools/table_manager/table_parser_spec.rb +0 -96
- data/spec/tools/table_manager/table_spec.rb +0 -90
- data/spec/tools/table_manager/tablemanager_core_spec.rb +0 -556
- data/spec/tools/tlm_viewer/tlm_viewer_config_spec.rb +0 -403
- data/spec/top_level/top_level_spec.rb +0 -545
- data/spec/utilities/crc_spec.rb +0 -45
- data/spec/utilities/csv_spec.rb +0 -148
- data/spec/utilities/logger_spec.rb +0 -102
- data/spec/utilities/message_log_spec.rb +0 -84
- data/spec/utilities/quaternion_spec.rb +0 -107
- data/spec/utilities/ruby_lex_utils_spec.rb +0 -86
- data/tasks/manifest.rake +0 -22
- data/test/benchmarks/binary_accessor_benchmark.rb +0 -14
- data/test/benchmarks/gsub_benchmark.rb +0 -152
- data/test/benchmarks/is_a_benchmark.rb +0 -34
- data/test/performance/PACKETS.bat +0 -1
- data/test/performance/Rakefile +0 -77
- data/test/performance/THREADS.bat +0 -1
- data/test/performance/config/data/attitude.bin +0 -0
- data/test/performance/config/data/crc.txt +0 -215
- data/test/performance/config/data/diamond.STL +0 -58
- data/test/performance/config/data/groundoff.gif +0 -0
- data/test/performance/config/data/groundon.gif +0 -0
- data/test/performance/config/data/hselectoff.gif +0 -0
- data/test/performance/config/data/hselecton.gif +0 -0
- data/test/performance/config/data/hswitchoff.gif +0 -0
- data/test/performance/config/data/hswitchon.gif +0 -0
- data/test/performance/config/data/meta_init.txt +0 -4
- data/test/performance/config/data/position.bin +0 -0
- data/test/performance/config/data/poweroff.gif +0 -0
- data/test/performance/config/data/poweron.gif +0 -0
- data/test/performance/config/data/satellite.gif +0 -0
- data/test/performance/config/data/tada.wav +0 -0
- data/test/performance/config/data/vswitchoff.gif +0 -0
- data/test/performance/config/data/vswitchon.gif +0 -0
- data/test/performance/config/system/system.txt +0 -0
- data/test/performance/config/system/system_packets.txt +0 -38
- data/test/performance/config/system/system_threads.txt +0 -58
- data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_cmds.txt +0 -46
- data/test/performance/config/targets/COSMOS/cmd_tlm/cosmos_server_tlm.txt +0 -15
- data/test/performance/config/targets/COSMOS/cmd_tlm_server.txt +0 -6
- data/test/performance/config/targets/COSMOS/screens/limits_change.txt +0 -20
- data/test/performance/config/targets/COSMOS/screens/version.txt +0 -19
- data/test/performance/config/targets/COSMOS/target.txt +0 -11
- data/test/performance/config/targets/PACKET/cmd_tlm/packet_cmds.txt +0 -20
- data/test/performance/config/targets/PACKET/cmd_tlm/packet_tlm.txt +0 -98
- data/test/performance/config/targets/PACKET/cmd_tlm_server.txt +0 -6
- data/test/performance/config/targets/PACKET/lib/packet_interface.rb +0 -22
- data/test/performance/config/targets/PACKET/lib/packet_limits_response.rb +0 -24
- data/test/performance/config/targets/PACKET/screens/status.txt +0 -25
- data/test/performance/config/targets/PACKET/target.txt +0 -28
- data/test/performance/config/targets/SYSTEM/screens/status.txt +0 -12
- data/test/performance/config/targets/THREAD/cmd_tlm/thread_cmds.txt +0 -17
- data/test/performance/config/targets/THREAD/cmd_tlm/thread_tlm.txt +0 -18
- data/test/performance/config/targets/THREAD/cmd_tlm_server.txt +0 -6
- data/test/performance/config/targets/THREAD/lib/thread_interface.rb +0 -22
- data/test/performance/config/targets/THREAD/screens/status.txt +0 -25
- data/test/performance/config/targets/THREAD/target.txt +0 -7
- data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_packets.txt +0 -28
- data/test/performance/config/tools/cmd_tlm_server/cmd_tlm_server_threads.txt +0 -68
- data/test/performance/config/tools/data_viewer/data_viewer.txt +0 -11
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap-theme.css +0 -397
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap-theme.min.css +0 -7
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap.css +0 -7118
- data/test/performance/config/tools/handbook_creator/assets/css/bootstrap.min.css +0 -7
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.svg +0 -229
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/test/performance/config/tools/handbook_creator/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.bmp +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.gif +0 -0
- data/test/performance/config/tools/handbook_creator/assets/img/ball_logo.jpg +0 -0
- data/test/performance/config/tools/handbook_creator/assets/js/bootstrap.js +0 -2006
- data/test/performance/config/tools/handbook_creator/assets/js/bootstrap.min.js +0 -7
- data/test/performance/config/tools/handbook_creator/assets/js/html5shiv.js +0 -8
- data/test/performance/config/tools/handbook_creator/assets/js/jquery-1.10.2.min.js +0 -6
- data/test/performance/config/tools/handbook_creator/assets/js/respond.min.js +0 -6
- data/test/performance/config/tools/handbook_creator/default_toc.xsl +0 -59
- data/test/performance/config/tools/handbook_creator/handbook_creator.txt +0 -66
- data/test/performance/config/tools/handbook_creator/templates/command_packets.html.erb +0 -86
- data/test/performance/config/tools/handbook_creator/templates/command_toc.html.erb +0 -38
- data/test/performance/config/tools/handbook_creator/templates/footer.html.erb +0 -9
- data/test/performance/config/tools/handbook_creator/templates/header.html.erb +0 -25
- data/test/performance/config/tools/handbook_creator/templates/limits_groups.html.erb +0 -13
- data/test/performance/config/tools/handbook_creator/templates/nav.html.erb +0 -27
- data/test/performance/config/tools/handbook_creator/templates/overview.html.erb +0 -1
- data/test/performance/config/tools/handbook_creator/templates/pdf_cover.html.erb +0 -23
- data/test/performance/config/tools/handbook_creator/templates/pdf_footer.html.erb +0 -33
- data/test/performance/config/tools/handbook_creator/templates/pdf_header.html.erb +0 -41
- data/test/performance/config/tools/handbook_creator/templates/telemetry_packets.html.erb +0 -80
- data/test/performance/config/tools/handbook_creator/templates/telemetry_toc.html.erb +0 -38
- data/test/performance/config/tools/handbook_creator/templates/title.html.erb +0 -1
- data/test/performance/config/tools/launcher/launcher_packets.txt +0 -34
- data/test/performance/config/tools/launcher/launcher_threads.txt +0 -83
- data/test/performance/config/tools/limits_monitor/README.txt +0 -1
- data/test/performance/config/tools/opengl_builder/README.txt +0 -1
- data/test/performance/config/tools/script_runner/script_runner.txt +0 -3
- data/test/performance/config/tools/table_manager/ConfigTables_def.txt +0 -8
- data/test/performance/config/tools/table_manager/ExampleTableDefinition.txt +0 -24
- data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw1_def.txt +0 -25
- data/test/performance/config/tools/table_manager/MCConfigurationTable_fsw2_def.txt +0 -25
- data/test/performance/config/tools/table_manager/PPSSelectionTable_def.txt +0 -8
- data/test/performance/config/tools/table_manager/TLMMonitoringTable_def.txt +0 -248
- data/test/performance/config/tools/test_runner/test_runner.txt +0 -17
- data/test/performance/config/tools/tlm_extractor/tlm_extractor.txt +0 -13
- data/test/performance/config/tools/tlm_extractor/tlm_extractor2.txt +0 -2
- data/test/performance/config/tools/tlm_extractor/tlm_extractor3.txt +0 -2
- data/test/performance/config/tools/tlm_extractor/tlm_extractor4.txt +0 -2
- data/test/performance/config/tools/tlm_grapher/README.txt +0 -1
- data/test/performance/config/tools/tlm_grapher/tlm_grapher.txt +0 -204
- data/test/performance/config/tools/tlm_viewer/tlm_viewer.txt +0 -13
- data/test/performance/lib/packet_target.rb +0 -126
- data/test/performance/lib/thread_target.rb +0 -120
- data/test/performance/lib/user_version.rb +0 -3
- data/test/performance/outputs/handbooks/README.txt +0 -1
- data/test/performance/outputs/logs/README.txt +0 -1
- data/test/performance/outputs/saved_config/README.txt +0 -1
- data/test/performance/outputs/tables/README.txt +0 -1
- data/test/performance/outputs/tmp/README.txt +0 -1
- data/test/performance/procedures/checks.rb +0 -11
- data/test/performance/procedures/clear_util.rb +0 -7
- data/test/performance/procedures/collect.rb +0 -18
- data/test/performance/procedures/collect_util.rb +0 -14
- data/test/performance/procedures/cosmos_api_test.rb +0 -293
- data/test/performance/procedures/disconnect.rb +0 -29
- data/test/performance/procedures/example_test.rb +0 -182
- data/test/performance/procedures/plot_test.rb +0 -8
- data/test/performance/procedures/procedure.rb +0 -3
- data/test/performance/procedures/run_example_test.rb +0 -3
- data/test/performance/procedures/test.rb +0 -51
- data/test/performance/tools/CmdExtractor +0 -14
- data/test/performance/tools/CmdExtractor.bat +0 -59
- data/test/performance/tools/CmdSender +0 -14
- data/test/performance/tools/CmdSender.bat +0 -59
- data/test/performance/tools/CmdTlmServer +0 -16
- data/test/performance/tools/CmdTlmServer.bat +0 -59
- data/test/performance/tools/CmdTlmServerMemProf +0 -20
- data/test/performance/tools/CmdTlmServerMemProf.bat +0 -59
- data/test/performance/tools/DataViewer +0 -14
- data/test/performance/tools/DataViewer.bat +0 -59
- data/test/performance/tools/HandbookCreator +0 -14
- data/test/performance/tools/HandbookCreator.bat +0 -61
- data/test/performance/tools/Launcher +0 -14
- data/test/performance/tools/Launcher.bat +0 -59
- data/test/performance/tools/LimitsMonitor +0 -14
- data/test/performance/tools/LimitsMonitor.bat +0 -59
- data/test/performance/tools/OpenGLBuilder +0 -14
- data/test/performance/tools/OpenGLBuilder.bat +0 -59
- data/test/performance/tools/PacketTarget +0 -14
- data/test/performance/tools/PacketTarget.bat +0 -59
- data/test/performance/tools/PacketViewer +0 -14
- data/test/performance/tools/PacketViewer.bat +0 -59
- data/test/performance/tools/Replay +0 -14
- data/test/performance/tools/Replay.bat +0 -59
- data/test/performance/tools/ScpiTarget +0 -14
- data/test/performance/tools/ScpiTarget.bat +0 -59
- data/test/performance/tools/ScriptRunner +0 -14
- data/test/performance/tools/ScriptRunner.bat +0 -59
- data/test/performance/tools/TableManager +0 -14
- data/test/performance/tools/TableManager.bat +0 -59
- data/test/performance/tools/TestRunner +0 -14
- data/test/performance/tools/TestRunner.bat +0 -59
- data/test/performance/tools/ThreadTarget +0 -14
- data/test/performance/tools/ThreadTarget.bat +0 -59
- data/test/performance/tools/TlmExtractor +0 -14
- data/test/performance/tools/TlmExtractor.bat +0 -59
- data/test/performance/tools/TlmGrapher +0 -14
- data/test/performance/tools/TlmGrapher.bat +0 -59
- data/test/performance/tools/TlmGrapherMemProf +0 -19
- data/test/performance/tools/TlmGrapherMemProf.bat +0 -59
- data/test/performance/tools/TlmViewer +0 -14
- data/test/performance/tools/TlmViewer.bat +0 -59
- data/test/performance/tools/TlmViewerMemProf +0 -19
- data/test/performance/tools/TlmViewerMemProf.bat +0 -59
- data/test/performance/tools/identify_performance.rb +0 -82
- data/test/performance/tools/mac/CmdExtractor.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/CmdExtractor.rb +0 -15
- data/test/performance/tools/mac/CmdExtractor.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/CmdExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/CmdSender.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/CmdSender.rb +0 -15
- data/test/performance/tools/mac/CmdSender.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/CmdSender.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/CmdTlmServer.rb +0 -15
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/CmdTlmServer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/DataViewer.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/DataViewer.rb +0 -15
- data/test/performance/tools/mac/DataViewer.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/DataViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/HandbookCreator.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/HandbookCreator.rb +0 -15
- data/test/performance/tools/mac/HandbookCreator.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/HandbookCreator.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/Launcher.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/Launcher.app/Contents/MacOS/Launcher.rb +0 -15
- data/test/performance/tools/mac/Launcher.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/Launcher.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/LimitsMonitor.rb +0 -15
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/LimitsMonitor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/OpenGLBuilder.rb +0 -15
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/OpenGLBuilder.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/PacketViewer.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/PacketViewer.rb +0 -15
- data/test/performance/tools/mac/PacketViewer.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/PacketViewer.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/Replay.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/Replay.app/Contents/MacOS/Replay.rb +0 -15
- data/test/performance/tools/mac/Replay.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/Replay.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/ScriptRunner.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/ScriptRunner.rb +0 -15
- data/test/performance/tools/mac/ScriptRunner.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/ScriptRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TableManager.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/TableManager.app/Contents/MacOS/TableManager.rb +0 -15
- data/test/performance/tools/mac/TableManager.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/TableManager.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TestRunner.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/TestRunner.rb +0 -15
- data/test/performance/tools/mac/TestRunner.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/TestRunner.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmExtractor.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/TlmExtractor.rb +0 -15
- data/test/performance/tools/mac/TlmExtractor.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/TlmExtractor.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmGrapher.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/TlmGrapher.rb +0 -15
- data/test/performance/tools/mac/TlmGrapher.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/TlmGrapher.app/Contents/Resources/appIcon.icns +0 -0
- data/test/performance/tools/mac/TlmViewer.app/Contents/Info.plist +0 -38
- data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/TlmViewer.rb +0 -15
- data/test/performance/tools/mac/TlmViewer.app/Contents/MacOS/main.sh +0 -6
- data/test/performance/tools/mac/TlmViewer.app/Contents/Resources/appIcon.icns +0 -0
@@ -1,2006 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* Bootstrap v3.0.3 (http://getbootstrap.com)
|
3
|
-
* Copyright 2013 Twitter, Inc.
|
4
|
-
* Licensed under http://www.apache.org/licenses/LICENSE-2.0
|
5
|
-
*/
|
6
|
-
|
7
|
-
if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }
|
8
|
-
|
9
|
-
/* ========================================================================
|
10
|
-
* Bootstrap: transition.js v3.0.3
|
11
|
-
* http://getbootstrap.com/javascript/#transitions
|
12
|
-
* ========================================================================
|
13
|
-
* Copyright 2013 Twitter, Inc.
|
14
|
-
*
|
15
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
16
|
-
* you may not use this file except in compliance with the License.
|
17
|
-
* You may obtain a copy of the License at
|
18
|
-
*
|
19
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
20
|
-
*
|
21
|
-
* Unless required by applicable law or agreed to in writing, software
|
22
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
23
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
24
|
-
* See the License for the specific language governing permissions and
|
25
|
-
* limitations under the License.
|
26
|
-
* ======================================================================== */
|
27
|
-
|
28
|
-
|
29
|
-
+function ($) { "use strict";
|
30
|
-
|
31
|
-
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
32
|
-
// ============================================================
|
33
|
-
|
34
|
-
function transitionEnd() {
|
35
|
-
var el = document.createElement('bootstrap')
|
36
|
-
|
37
|
-
var transEndEventNames = {
|
38
|
-
'WebkitTransition' : 'webkitTransitionEnd'
|
39
|
-
, 'MozTransition' : 'transitionend'
|
40
|
-
, 'OTransition' : 'oTransitionEnd otransitionend'
|
41
|
-
, 'transition' : 'transitionend'
|
42
|
-
}
|
43
|
-
|
44
|
-
for (var name in transEndEventNames) {
|
45
|
-
if (el.style[name] !== undefined) {
|
46
|
-
return { end: transEndEventNames[name] }
|
47
|
-
}
|
48
|
-
}
|
49
|
-
}
|
50
|
-
|
51
|
-
// http://blog.alexmaccaw.com/css-transitions
|
52
|
-
$.fn.emulateTransitionEnd = function (duration) {
|
53
|
-
var called = false, $el = this
|
54
|
-
$(this).one($.support.transition.end, function () { called = true })
|
55
|
-
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
56
|
-
setTimeout(callback, duration)
|
57
|
-
return this
|
58
|
-
}
|
59
|
-
|
60
|
-
$(function () {
|
61
|
-
$.support.transition = transitionEnd()
|
62
|
-
})
|
63
|
-
|
64
|
-
}(jQuery);
|
65
|
-
|
66
|
-
/* ========================================================================
|
67
|
-
* Bootstrap: alert.js v3.0.3
|
68
|
-
* http://getbootstrap.com/javascript/#alerts
|
69
|
-
* ========================================================================
|
70
|
-
* Copyright 2013 Twitter, Inc.
|
71
|
-
*
|
72
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
73
|
-
* you may not use this file except in compliance with the License.
|
74
|
-
* You may obtain a copy of the License at
|
75
|
-
*
|
76
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
77
|
-
*
|
78
|
-
* Unless required by applicable law or agreed to in writing, software
|
79
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
80
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
81
|
-
* See the License for the specific language governing permissions and
|
82
|
-
* limitations under the License.
|
83
|
-
* ======================================================================== */
|
84
|
-
|
85
|
-
|
86
|
-
+function ($) { "use strict";
|
87
|
-
|
88
|
-
// ALERT CLASS DEFINITION
|
89
|
-
// ======================
|
90
|
-
|
91
|
-
var dismiss = '[data-dismiss="alert"]'
|
92
|
-
var Alert = function (el) {
|
93
|
-
$(el).on('click', dismiss, this.close)
|
94
|
-
}
|
95
|
-
|
96
|
-
Alert.prototype.close = function (e) {
|
97
|
-
var $this = $(this)
|
98
|
-
var selector = $this.attr('data-target')
|
99
|
-
|
100
|
-
if (!selector) {
|
101
|
-
selector = $this.attr('href')
|
102
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
103
|
-
}
|
104
|
-
|
105
|
-
var $parent = $(selector)
|
106
|
-
|
107
|
-
if (e) e.preventDefault()
|
108
|
-
|
109
|
-
if (!$parent.length) {
|
110
|
-
$parent = $this.hasClass('alert') ? $this : $this.parent()
|
111
|
-
}
|
112
|
-
|
113
|
-
$parent.trigger(e = $.Event('close.bs.alert'))
|
114
|
-
|
115
|
-
if (e.isDefaultPrevented()) return
|
116
|
-
|
117
|
-
$parent.removeClass('in')
|
118
|
-
|
119
|
-
function removeElement() {
|
120
|
-
$parent.trigger('closed.bs.alert').remove()
|
121
|
-
}
|
122
|
-
|
123
|
-
$.support.transition && $parent.hasClass('fade') ?
|
124
|
-
$parent
|
125
|
-
.one($.support.transition.end, removeElement)
|
126
|
-
.emulateTransitionEnd(150) :
|
127
|
-
removeElement()
|
128
|
-
}
|
129
|
-
|
130
|
-
|
131
|
-
// ALERT PLUGIN DEFINITION
|
132
|
-
// =======================
|
133
|
-
|
134
|
-
var old = $.fn.alert
|
135
|
-
|
136
|
-
$.fn.alert = function (option) {
|
137
|
-
return this.each(function () {
|
138
|
-
var $this = $(this)
|
139
|
-
var data = $this.data('bs.alert')
|
140
|
-
|
141
|
-
if (!data) $this.data('bs.alert', (data = new Alert(this)))
|
142
|
-
if (typeof option == 'string') data[option].call($this)
|
143
|
-
})
|
144
|
-
}
|
145
|
-
|
146
|
-
$.fn.alert.Constructor = Alert
|
147
|
-
|
148
|
-
|
149
|
-
// ALERT NO CONFLICT
|
150
|
-
// =================
|
151
|
-
|
152
|
-
$.fn.alert.noConflict = function () {
|
153
|
-
$.fn.alert = old
|
154
|
-
return this
|
155
|
-
}
|
156
|
-
|
157
|
-
|
158
|
-
// ALERT DATA-API
|
159
|
-
// ==============
|
160
|
-
|
161
|
-
$(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
|
162
|
-
|
163
|
-
}(jQuery);
|
164
|
-
|
165
|
-
/* ========================================================================
|
166
|
-
* Bootstrap: button.js v3.0.3
|
167
|
-
* http://getbootstrap.com/javascript/#buttons
|
168
|
-
* ========================================================================
|
169
|
-
* Copyright 2013 Twitter, Inc.
|
170
|
-
*
|
171
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
172
|
-
* you may not use this file except in compliance with the License.
|
173
|
-
* You may obtain a copy of the License at
|
174
|
-
*
|
175
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
176
|
-
*
|
177
|
-
* Unless required by applicable law or agreed to in writing, software
|
178
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
179
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
180
|
-
* See the License for the specific language governing permissions and
|
181
|
-
* limitations under the License.
|
182
|
-
* ======================================================================== */
|
183
|
-
|
184
|
-
|
185
|
-
+function ($) { "use strict";
|
186
|
-
|
187
|
-
// BUTTON PUBLIC CLASS DEFINITION
|
188
|
-
// ==============================
|
189
|
-
|
190
|
-
var Button = function (element, options) {
|
191
|
-
this.$element = $(element)
|
192
|
-
this.options = $.extend({}, Button.DEFAULTS, options)
|
193
|
-
}
|
194
|
-
|
195
|
-
Button.DEFAULTS = {
|
196
|
-
loadingText: 'loading...'
|
197
|
-
}
|
198
|
-
|
199
|
-
Button.prototype.setState = function (state) {
|
200
|
-
var d = 'disabled'
|
201
|
-
var $el = this.$element
|
202
|
-
var val = $el.is('input') ? 'val' : 'html'
|
203
|
-
var data = $el.data()
|
204
|
-
|
205
|
-
state = state + 'Text'
|
206
|
-
|
207
|
-
if (!data.resetText) $el.data('resetText', $el[val]())
|
208
|
-
|
209
|
-
$el[val](data[state] || this.options[state])
|
210
|
-
|
211
|
-
// push to event loop to allow forms to submit
|
212
|
-
setTimeout(function () {
|
213
|
-
state == 'loadingText' ?
|
214
|
-
$el.addClass(d).attr(d, d) :
|
215
|
-
$el.removeClass(d).removeAttr(d);
|
216
|
-
}, 0)
|
217
|
-
}
|
218
|
-
|
219
|
-
Button.prototype.toggle = function () {
|
220
|
-
var $parent = this.$element.closest('[data-toggle="buttons"]')
|
221
|
-
var changed = true
|
222
|
-
|
223
|
-
if ($parent.length) {
|
224
|
-
var $input = this.$element.find('input')
|
225
|
-
if ($input.prop('type') === 'radio') {
|
226
|
-
// see if clicking on current one
|
227
|
-
if ($input.prop('checked') && this.$element.hasClass('active'))
|
228
|
-
changed = false
|
229
|
-
else
|
230
|
-
$parent.find('.active').removeClass('active')
|
231
|
-
}
|
232
|
-
if (changed) $input.prop('checked', !this.$element.hasClass('active')).trigger('change')
|
233
|
-
}
|
234
|
-
|
235
|
-
if (changed) this.$element.toggleClass('active')
|
236
|
-
}
|
237
|
-
|
238
|
-
|
239
|
-
// BUTTON PLUGIN DEFINITION
|
240
|
-
// ========================
|
241
|
-
|
242
|
-
var old = $.fn.button
|
243
|
-
|
244
|
-
$.fn.button = function (option) {
|
245
|
-
return this.each(function () {
|
246
|
-
var $this = $(this)
|
247
|
-
var data = $this.data('bs.button')
|
248
|
-
var options = typeof option == 'object' && option
|
249
|
-
|
250
|
-
if (!data) $this.data('bs.button', (data = new Button(this, options)))
|
251
|
-
|
252
|
-
if (option == 'toggle') data.toggle()
|
253
|
-
else if (option) data.setState(option)
|
254
|
-
})
|
255
|
-
}
|
256
|
-
|
257
|
-
$.fn.button.Constructor = Button
|
258
|
-
|
259
|
-
|
260
|
-
// BUTTON NO CONFLICT
|
261
|
-
// ==================
|
262
|
-
|
263
|
-
$.fn.button.noConflict = function () {
|
264
|
-
$.fn.button = old
|
265
|
-
return this
|
266
|
-
}
|
267
|
-
|
268
|
-
|
269
|
-
// BUTTON DATA-API
|
270
|
-
// ===============
|
271
|
-
|
272
|
-
$(document).on('click.bs.button.data-api', '[data-toggle^=button]', function (e) {
|
273
|
-
var $btn = $(e.target)
|
274
|
-
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
275
|
-
$btn.button('toggle')
|
276
|
-
e.preventDefault()
|
277
|
-
})
|
278
|
-
|
279
|
-
}(jQuery);
|
280
|
-
|
281
|
-
/* ========================================================================
|
282
|
-
* Bootstrap: carousel.js v3.0.3
|
283
|
-
* http://getbootstrap.com/javascript/#carousel
|
284
|
-
* ========================================================================
|
285
|
-
* Copyright 2013 Twitter, Inc.
|
286
|
-
*
|
287
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
288
|
-
* you may not use this file except in compliance with the License.
|
289
|
-
* You may obtain a copy of the License at
|
290
|
-
*
|
291
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
292
|
-
*
|
293
|
-
* Unless required by applicable law or agreed to in writing, software
|
294
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
295
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
296
|
-
* See the License for the specific language governing permissions and
|
297
|
-
* limitations under the License.
|
298
|
-
* ======================================================================== */
|
299
|
-
|
300
|
-
|
301
|
-
+function ($) { "use strict";
|
302
|
-
|
303
|
-
// CAROUSEL CLASS DEFINITION
|
304
|
-
// =========================
|
305
|
-
|
306
|
-
var Carousel = function (element, options) {
|
307
|
-
this.$element = $(element)
|
308
|
-
this.$indicators = this.$element.find('.carousel-indicators')
|
309
|
-
this.options = options
|
310
|
-
this.paused =
|
311
|
-
this.sliding =
|
312
|
-
this.interval =
|
313
|
-
this.$active =
|
314
|
-
this.$items = null
|
315
|
-
|
316
|
-
this.options.pause == 'hover' && this.$element
|
317
|
-
.on('mouseenter', $.proxy(this.pause, this))
|
318
|
-
.on('mouseleave', $.proxy(this.cycle, this))
|
319
|
-
}
|
320
|
-
|
321
|
-
Carousel.DEFAULTS = {
|
322
|
-
interval: 5000
|
323
|
-
, pause: 'hover'
|
324
|
-
, wrap: true
|
325
|
-
}
|
326
|
-
|
327
|
-
Carousel.prototype.cycle = function (e) {
|
328
|
-
e || (this.paused = false)
|
329
|
-
|
330
|
-
this.interval && clearInterval(this.interval)
|
331
|
-
|
332
|
-
this.options.interval
|
333
|
-
&& !this.paused
|
334
|
-
&& (this.interval = setInterval($.proxy(this.next, this), this.options.interval))
|
335
|
-
|
336
|
-
return this
|
337
|
-
}
|
338
|
-
|
339
|
-
Carousel.prototype.getActiveIndex = function () {
|
340
|
-
this.$active = this.$element.find('.item.active')
|
341
|
-
this.$items = this.$active.parent().children()
|
342
|
-
|
343
|
-
return this.$items.index(this.$active)
|
344
|
-
}
|
345
|
-
|
346
|
-
Carousel.prototype.to = function (pos) {
|
347
|
-
var that = this
|
348
|
-
var activeIndex = this.getActiveIndex()
|
349
|
-
|
350
|
-
if (pos > (this.$items.length - 1) || pos < 0) return
|
351
|
-
|
352
|
-
if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) })
|
353
|
-
if (activeIndex == pos) return this.pause().cycle()
|
354
|
-
|
355
|
-
return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
|
356
|
-
}
|
357
|
-
|
358
|
-
Carousel.prototype.pause = function (e) {
|
359
|
-
e || (this.paused = true)
|
360
|
-
|
361
|
-
if (this.$element.find('.next, .prev').length && $.support.transition.end) {
|
362
|
-
this.$element.trigger($.support.transition.end)
|
363
|
-
this.cycle(true)
|
364
|
-
}
|
365
|
-
|
366
|
-
this.interval = clearInterval(this.interval)
|
367
|
-
|
368
|
-
return this
|
369
|
-
}
|
370
|
-
|
371
|
-
Carousel.prototype.next = function () {
|
372
|
-
if (this.sliding) return
|
373
|
-
return this.slide('next')
|
374
|
-
}
|
375
|
-
|
376
|
-
Carousel.prototype.prev = function () {
|
377
|
-
if (this.sliding) return
|
378
|
-
return this.slide('prev')
|
379
|
-
}
|
380
|
-
|
381
|
-
Carousel.prototype.slide = function (type, next) {
|
382
|
-
var $active = this.$element.find('.item.active')
|
383
|
-
var $next = next || $active[type]()
|
384
|
-
var isCycling = this.interval
|
385
|
-
var direction = type == 'next' ? 'left' : 'right'
|
386
|
-
var fallback = type == 'next' ? 'first' : 'last'
|
387
|
-
var that = this
|
388
|
-
|
389
|
-
if (!$next.length) {
|
390
|
-
if (!this.options.wrap) return
|
391
|
-
$next = this.$element.find('.item')[fallback]()
|
392
|
-
}
|
393
|
-
|
394
|
-
this.sliding = true
|
395
|
-
|
396
|
-
isCycling && this.pause()
|
397
|
-
|
398
|
-
var e = $.Event('slide.bs.carousel', { relatedTarget: $next[0], direction: direction })
|
399
|
-
|
400
|
-
if ($next.hasClass('active')) return
|
401
|
-
|
402
|
-
if (this.$indicators.length) {
|
403
|
-
this.$indicators.find('.active').removeClass('active')
|
404
|
-
this.$element.one('slid.bs.carousel', function () {
|
405
|
-
var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])
|
406
|
-
$nextIndicator && $nextIndicator.addClass('active')
|
407
|
-
})
|
408
|
-
}
|
409
|
-
|
410
|
-
if ($.support.transition && this.$element.hasClass('slide')) {
|
411
|
-
this.$element.trigger(e)
|
412
|
-
if (e.isDefaultPrevented()) return
|
413
|
-
$next.addClass(type)
|
414
|
-
$next[0].offsetWidth // force reflow
|
415
|
-
$active.addClass(direction)
|
416
|
-
$next.addClass(direction)
|
417
|
-
$active
|
418
|
-
.one($.support.transition.end, function () {
|
419
|
-
$next.removeClass([type, direction].join(' ')).addClass('active')
|
420
|
-
$active.removeClass(['active', direction].join(' '))
|
421
|
-
that.sliding = false
|
422
|
-
setTimeout(function () { that.$element.trigger('slid.bs.carousel') }, 0)
|
423
|
-
})
|
424
|
-
.emulateTransitionEnd(600)
|
425
|
-
} else {
|
426
|
-
this.$element.trigger(e)
|
427
|
-
if (e.isDefaultPrevented()) return
|
428
|
-
$active.removeClass('active')
|
429
|
-
$next.addClass('active')
|
430
|
-
this.sliding = false
|
431
|
-
this.$element.trigger('slid.bs.carousel')
|
432
|
-
}
|
433
|
-
|
434
|
-
isCycling && this.cycle()
|
435
|
-
|
436
|
-
return this
|
437
|
-
}
|
438
|
-
|
439
|
-
|
440
|
-
// CAROUSEL PLUGIN DEFINITION
|
441
|
-
// ==========================
|
442
|
-
|
443
|
-
var old = $.fn.carousel
|
444
|
-
|
445
|
-
$.fn.carousel = function (option) {
|
446
|
-
return this.each(function () {
|
447
|
-
var $this = $(this)
|
448
|
-
var data = $this.data('bs.carousel')
|
449
|
-
var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
450
|
-
var action = typeof option == 'string' ? option : options.slide
|
451
|
-
|
452
|
-
if (!data) $this.data('bs.carousel', (data = new Carousel(this, options)))
|
453
|
-
if (typeof option == 'number') data.to(option)
|
454
|
-
else if (action) data[action]()
|
455
|
-
else if (options.interval) data.pause().cycle()
|
456
|
-
})
|
457
|
-
}
|
458
|
-
|
459
|
-
$.fn.carousel.Constructor = Carousel
|
460
|
-
|
461
|
-
|
462
|
-
// CAROUSEL NO CONFLICT
|
463
|
-
// ====================
|
464
|
-
|
465
|
-
$.fn.carousel.noConflict = function () {
|
466
|
-
$.fn.carousel = old
|
467
|
-
return this
|
468
|
-
}
|
469
|
-
|
470
|
-
|
471
|
-
// CAROUSEL DATA-API
|
472
|
-
// =================
|
473
|
-
|
474
|
-
$(document).on('click.bs.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {
|
475
|
-
var $this = $(this), href
|
476
|
-
var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
477
|
-
var options = $.extend({}, $target.data(), $this.data())
|
478
|
-
var slideIndex = $this.attr('data-slide-to')
|
479
|
-
if (slideIndex) options.interval = false
|
480
|
-
|
481
|
-
$target.carousel(options)
|
482
|
-
|
483
|
-
if (slideIndex = $this.attr('data-slide-to')) {
|
484
|
-
$target.data('bs.carousel').to(slideIndex)
|
485
|
-
}
|
486
|
-
|
487
|
-
e.preventDefault()
|
488
|
-
})
|
489
|
-
|
490
|
-
$(window).on('load', function () {
|
491
|
-
$('[data-ride="carousel"]').each(function () {
|
492
|
-
var $carousel = $(this)
|
493
|
-
$carousel.carousel($carousel.data())
|
494
|
-
})
|
495
|
-
})
|
496
|
-
|
497
|
-
}(jQuery);
|
498
|
-
|
499
|
-
/* ========================================================================
|
500
|
-
* Bootstrap: collapse.js v3.0.3
|
501
|
-
* http://getbootstrap.com/javascript/#collapse
|
502
|
-
* ========================================================================
|
503
|
-
* Copyright 2013 Twitter, Inc.
|
504
|
-
*
|
505
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
506
|
-
* you may not use this file except in compliance with the License.
|
507
|
-
* You may obtain a copy of the License at
|
508
|
-
*
|
509
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
510
|
-
*
|
511
|
-
* Unless required by applicable law or agreed to in writing, software
|
512
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
513
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
514
|
-
* See the License for the specific language governing permissions and
|
515
|
-
* limitations under the License.
|
516
|
-
* ======================================================================== */
|
517
|
-
|
518
|
-
|
519
|
-
+function ($) { "use strict";
|
520
|
-
|
521
|
-
// COLLAPSE PUBLIC CLASS DEFINITION
|
522
|
-
// ================================
|
523
|
-
|
524
|
-
var Collapse = function (element, options) {
|
525
|
-
this.$element = $(element)
|
526
|
-
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
527
|
-
this.transitioning = null
|
528
|
-
|
529
|
-
if (this.options.parent) this.$parent = $(this.options.parent)
|
530
|
-
if (this.options.toggle) this.toggle()
|
531
|
-
}
|
532
|
-
|
533
|
-
Collapse.DEFAULTS = {
|
534
|
-
toggle: true
|
535
|
-
}
|
536
|
-
|
537
|
-
Collapse.prototype.dimension = function () {
|
538
|
-
var hasWidth = this.$element.hasClass('width')
|
539
|
-
return hasWidth ? 'width' : 'height'
|
540
|
-
}
|
541
|
-
|
542
|
-
Collapse.prototype.show = function () {
|
543
|
-
if (this.transitioning || this.$element.hasClass('in')) return
|
544
|
-
|
545
|
-
var startEvent = $.Event('show.bs.collapse')
|
546
|
-
this.$element.trigger(startEvent)
|
547
|
-
if (startEvent.isDefaultPrevented()) return
|
548
|
-
|
549
|
-
var actives = this.$parent && this.$parent.find('> .panel > .in')
|
550
|
-
|
551
|
-
if (actives && actives.length) {
|
552
|
-
var hasData = actives.data('bs.collapse')
|
553
|
-
if (hasData && hasData.transitioning) return
|
554
|
-
actives.collapse('hide')
|
555
|
-
hasData || actives.data('bs.collapse', null)
|
556
|
-
}
|
557
|
-
|
558
|
-
var dimension = this.dimension()
|
559
|
-
|
560
|
-
this.$element
|
561
|
-
.removeClass('collapse')
|
562
|
-
.addClass('collapsing')
|
563
|
-
[dimension](0)
|
564
|
-
|
565
|
-
this.transitioning = 1
|
566
|
-
|
567
|
-
var complete = function () {
|
568
|
-
this.$element
|
569
|
-
.removeClass('collapsing')
|
570
|
-
.addClass('in')
|
571
|
-
[dimension]('auto')
|
572
|
-
this.transitioning = 0
|
573
|
-
this.$element.trigger('shown.bs.collapse')
|
574
|
-
}
|
575
|
-
|
576
|
-
if (!$.support.transition) return complete.call(this)
|
577
|
-
|
578
|
-
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
579
|
-
|
580
|
-
this.$element
|
581
|
-
.one($.support.transition.end, $.proxy(complete, this))
|
582
|
-
.emulateTransitionEnd(350)
|
583
|
-
[dimension](this.$element[0][scrollSize])
|
584
|
-
}
|
585
|
-
|
586
|
-
Collapse.prototype.hide = function () {
|
587
|
-
if (this.transitioning || !this.$element.hasClass('in')) return
|
588
|
-
|
589
|
-
var startEvent = $.Event('hide.bs.collapse')
|
590
|
-
this.$element.trigger(startEvent)
|
591
|
-
if (startEvent.isDefaultPrevented()) return
|
592
|
-
|
593
|
-
var dimension = this.dimension()
|
594
|
-
|
595
|
-
this.$element
|
596
|
-
[dimension](this.$element[dimension]())
|
597
|
-
[0].offsetHeight
|
598
|
-
|
599
|
-
this.$element
|
600
|
-
.addClass('collapsing')
|
601
|
-
.removeClass('collapse')
|
602
|
-
.removeClass('in')
|
603
|
-
|
604
|
-
this.transitioning = 1
|
605
|
-
|
606
|
-
var complete = function () {
|
607
|
-
this.transitioning = 0
|
608
|
-
this.$element
|
609
|
-
.trigger('hidden.bs.collapse')
|
610
|
-
.removeClass('collapsing')
|
611
|
-
.addClass('collapse')
|
612
|
-
}
|
613
|
-
|
614
|
-
if (!$.support.transition) return complete.call(this)
|
615
|
-
|
616
|
-
this.$element
|
617
|
-
[dimension](0)
|
618
|
-
.one($.support.transition.end, $.proxy(complete, this))
|
619
|
-
.emulateTransitionEnd(350)
|
620
|
-
}
|
621
|
-
|
622
|
-
Collapse.prototype.toggle = function () {
|
623
|
-
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
624
|
-
}
|
625
|
-
|
626
|
-
|
627
|
-
// COLLAPSE PLUGIN DEFINITION
|
628
|
-
// ==========================
|
629
|
-
|
630
|
-
var old = $.fn.collapse
|
631
|
-
|
632
|
-
$.fn.collapse = function (option) {
|
633
|
-
return this.each(function () {
|
634
|
-
var $this = $(this)
|
635
|
-
var data = $this.data('bs.collapse')
|
636
|
-
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
637
|
-
|
638
|
-
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
639
|
-
if (typeof option == 'string') data[option]()
|
640
|
-
})
|
641
|
-
}
|
642
|
-
|
643
|
-
$.fn.collapse.Constructor = Collapse
|
644
|
-
|
645
|
-
|
646
|
-
// COLLAPSE NO CONFLICT
|
647
|
-
// ====================
|
648
|
-
|
649
|
-
$.fn.collapse.noConflict = function () {
|
650
|
-
$.fn.collapse = old
|
651
|
-
return this
|
652
|
-
}
|
653
|
-
|
654
|
-
|
655
|
-
// COLLAPSE DATA-API
|
656
|
-
// =================
|
657
|
-
|
658
|
-
$(document).on('click.bs.collapse.data-api', '[data-toggle=collapse]', function (e) {
|
659
|
-
var $this = $(this), href
|
660
|
-
var target = $this.attr('data-target')
|
661
|
-
|| e.preventDefault()
|
662
|
-
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
663
|
-
var $target = $(target)
|
664
|
-
var data = $target.data('bs.collapse')
|
665
|
-
var option = data ? 'toggle' : $this.data()
|
666
|
-
var parent = $this.attr('data-parent')
|
667
|
-
var $parent = parent && $(parent)
|
668
|
-
|
669
|
-
if (!data || !data.transitioning) {
|
670
|
-
if ($parent) $parent.find('[data-toggle=collapse][data-parent="' + parent + '"]').not($this).addClass('collapsed')
|
671
|
-
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
672
|
-
}
|
673
|
-
|
674
|
-
$target.collapse(option)
|
675
|
-
})
|
676
|
-
|
677
|
-
}(jQuery);
|
678
|
-
|
679
|
-
/* ========================================================================
|
680
|
-
* Bootstrap: dropdown.js v3.0.3
|
681
|
-
* http://getbootstrap.com/javascript/#dropdowns
|
682
|
-
* ========================================================================
|
683
|
-
* Copyright 2013 Twitter, Inc.
|
684
|
-
*
|
685
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
686
|
-
* you may not use this file except in compliance with the License.
|
687
|
-
* You may obtain a copy of the License at
|
688
|
-
*
|
689
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
690
|
-
*
|
691
|
-
* Unless required by applicable law or agreed to in writing, software
|
692
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
693
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
694
|
-
* See the License for the specific language governing permissions and
|
695
|
-
* limitations under the License.
|
696
|
-
* ======================================================================== */
|
697
|
-
|
698
|
-
|
699
|
-
+function ($) { "use strict";
|
700
|
-
|
701
|
-
// DROPDOWN CLASS DEFINITION
|
702
|
-
// =========================
|
703
|
-
|
704
|
-
var backdrop = '.dropdown-backdrop'
|
705
|
-
var toggle = '[data-toggle=dropdown]'
|
706
|
-
var Dropdown = function (element) {
|
707
|
-
$(element).on('click.bs.dropdown', this.toggle)
|
708
|
-
}
|
709
|
-
|
710
|
-
Dropdown.prototype.toggle = function (e) {
|
711
|
-
var $this = $(this)
|
712
|
-
|
713
|
-
if ($this.is('.disabled, :disabled')) return
|
714
|
-
|
715
|
-
var $parent = getParent($this)
|
716
|
-
var isActive = $parent.hasClass('open')
|
717
|
-
|
718
|
-
clearMenus()
|
719
|
-
|
720
|
-
if (!isActive) {
|
721
|
-
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
722
|
-
// if mobile we use a backdrop because click events don't delegate
|
723
|
-
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
724
|
-
}
|
725
|
-
|
726
|
-
$parent.trigger(e = $.Event('show.bs.dropdown'))
|
727
|
-
|
728
|
-
if (e.isDefaultPrevented()) return
|
729
|
-
|
730
|
-
$parent
|
731
|
-
.toggleClass('open')
|
732
|
-
.trigger('shown.bs.dropdown')
|
733
|
-
|
734
|
-
$this.focus()
|
735
|
-
}
|
736
|
-
|
737
|
-
return false
|
738
|
-
}
|
739
|
-
|
740
|
-
Dropdown.prototype.keydown = function (e) {
|
741
|
-
if (!/(38|40|27)/.test(e.keyCode)) return
|
742
|
-
|
743
|
-
var $this = $(this)
|
744
|
-
|
745
|
-
e.preventDefault()
|
746
|
-
e.stopPropagation()
|
747
|
-
|
748
|
-
if ($this.is('.disabled, :disabled')) return
|
749
|
-
|
750
|
-
var $parent = getParent($this)
|
751
|
-
var isActive = $parent.hasClass('open')
|
752
|
-
|
753
|
-
if (!isActive || (isActive && e.keyCode == 27)) {
|
754
|
-
if (e.which == 27) $parent.find(toggle).focus()
|
755
|
-
return $this.click()
|
756
|
-
}
|
757
|
-
|
758
|
-
var $items = $('[role=menu] li:not(.divider):visible a', $parent)
|
759
|
-
|
760
|
-
if (!$items.length) return
|
761
|
-
|
762
|
-
var index = $items.index($items.filter(':focus'))
|
763
|
-
|
764
|
-
if (e.keyCode == 38 && index > 0) index-- // up
|
765
|
-
if (e.keyCode == 40 && index < $items.length - 1) index++ // down
|
766
|
-
if (!~index) index=0
|
767
|
-
|
768
|
-
$items.eq(index).focus()
|
769
|
-
}
|
770
|
-
|
771
|
-
function clearMenus() {
|
772
|
-
$(backdrop).remove()
|
773
|
-
$(toggle).each(function (e) {
|
774
|
-
var $parent = getParent($(this))
|
775
|
-
if (!$parent.hasClass('open')) return
|
776
|
-
$parent.trigger(e = $.Event('hide.bs.dropdown'))
|
777
|
-
if (e.isDefaultPrevented()) return
|
778
|
-
$parent.removeClass('open').trigger('hidden.bs.dropdown')
|
779
|
-
})
|
780
|
-
}
|
781
|
-
|
782
|
-
function getParent($this) {
|
783
|
-
var selector = $this.attr('data-target')
|
784
|
-
|
785
|
-
if (!selector) {
|
786
|
-
selector = $this.attr('href')
|
787
|
-
selector = selector && /#/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
788
|
-
}
|
789
|
-
|
790
|
-
var $parent = selector && $(selector)
|
791
|
-
|
792
|
-
return $parent && $parent.length ? $parent : $this.parent()
|
793
|
-
}
|
794
|
-
|
795
|
-
|
796
|
-
// DROPDOWN PLUGIN DEFINITION
|
797
|
-
// ==========================
|
798
|
-
|
799
|
-
var old = $.fn.dropdown
|
800
|
-
|
801
|
-
$.fn.dropdown = function (option) {
|
802
|
-
return this.each(function () {
|
803
|
-
var $this = $(this)
|
804
|
-
var data = $this.data('bs.dropdown')
|
805
|
-
|
806
|
-
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
807
|
-
if (typeof option == 'string') data[option].call($this)
|
808
|
-
})
|
809
|
-
}
|
810
|
-
|
811
|
-
$.fn.dropdown.Constructor = Dropdown
|
812
|
-
|
813
|
-
|
814
|
-
// DROPDOWN NO CONFLICT
|
815
|
-
// ====================
|
816
|
-
|
817
|
-
$.fn.dropdown.noConflict = function () {
|
818
|
-
$.fn.dropdown = old
|
819
|
-
return this
|
820
|
-
}
|
821
|
-
|
822
|
-
|
823
|
-
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
824
|
-
// ===================================
|
825
|
-
|
826
|
-
$(document)
|
827
|
-
.on('click.bs.dropdown.data-api', clearMenus)
|
828
|
-
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
829
|
-
.on('click.bs.dropdown.data-api' , toggle, Dropdown.prototype.toggle)
|
830
|
-
.on('keydown.bs.dropdown.data-api', toggle + ', [role=menu]' , Dropdown.prototype.keydown)
|
831
|
-
|
832
|
-
}(jQuery);
|
833
|
-
|
834
|
-
/* ========================================================================
|
835
|
-
* Bootstrap: modal.js v3.0.3
|
836
|
-
* http://getbootstrap.com/javascript/#modals
|
837
|
-
* ========================================================================
|
838
|
-
* Copyright 2013 Twitter, Inc.
|
839
|
-
*
|
840
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
841
|
-
* you may not use this file except in compliance with the License.
|
842
|
-
* You may obtain a copy of the License at
|
843
|
-
*
|
844
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
845
|
-
*
|
846
|
-
* Unless required by applicable law or agreed to in writing, software
|
847
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
848
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
849
|
-
* See the License for the specific language governing permissions and
|
850
|
-
* limitations under the License.
|
851
|
-
* ======================================================================== */
|
852
|
-
|
853
|
-
|
854
|
-
+function ($) { "use strict";
|
855
|
-
|
856
|
-
// MODAL CLASS DEFINITION
|
857
|
-
// ======================
|
858
|
-
|
859
|
-
var Modal = function (element, options) {
|
860
|
-
this.options = options
|
861
|
-
this.$element = $(element)
|
862
|
-
this.$backdrop =
|
863
|
-
this.isShown = null
|
864
|
-
|
865
|
-
if (this.options.remote) this.$element.load(this.options.remote)
|
866
|
-
}
|
867
|
-
|
868
|
-
Modal.DEFAULTS = {
|
869
|
-
backdrop: true
|
870
|
-
, keyboard: true
|
871
|
-
, show: true
|
872
|
-
}
|
873
|
-
|
874
|
-
Modal.prototype.toggle = function (_relatedTarget) {
|
875
|
-
return this[!this.isShown ? 'show' : 'hide'](_relatedTarget)
|
876
|
-
}
|
877
|
-
|
878
|
-
Modal.prototype.show = function (_relatedTarget) {
|
879
|
-
var that = this
|
880
|
-
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
881
|
-
|
882
|
-
this.$element.trigger(e)
|
883
|
-
|
884
|
-
if (this.isShown || e.isDefaultPrevented()) return
|
885
|
-
|
886
|
-
this.isShown = true
|
887
|
-
|
888
|
-
this.escape()
|
889
|
-
|
890
|
-
this.$element.on('click.dismiss.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
891
|
-
|
892
|
-
this.backdrop(function () {
|
893
|
-
var transition = $.support.transition && that.$element.hasClass('fade')
|
894
|
-
|
895
|
-
if (!that.$element.parent().length) {
|
896
|
-
that.$element.appendTo(document.body) // don't move modals dom position
|
897
|
-
}
|
898
|
-
|
899
|
-
that.$element.show()
|
900
|
-
|
901
|
-
if (transition) {
|
902
|
-
that.$element[0].offsetWidth // force reflow
|
903
|
-
}
|
904
|
-
|
905
|
-
that.$element
|
906
|
-
.addClass('in')
|
907
|
-
.attr('aria-hidden', false)
|
908
|
-
|
909
|
-
that.enforceFocus()
|
910
|
-
|
911
|
-
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
912
|
-
|
913
|
-
transition ?
|
914
|
-
that.$element.find('.modal-dialog') // wait for modal to slide in
|
915
|
-
.one($.support.transition.end, function () {
|
916
|
-
that.$element.focus().trigger(e)
|
917
|
-
})
|
918
|
-
.emulateTransitionEnd(300) :
|
919
|
-
that.$element.focus().trigger(e)
|
920
|
-
})
|
921
|
-
}
|
922
|
-
|
923
|
-
Modal.prototype.hide = function (e) {
|
924
|
-
if (e) e.preventDefault()
|
925
|
-
|
926
|
-
e = $.Event('hide.bs.modal')
|
927
|
-
|
928
|
-
this.$element.trigger(e)
|
929
|
-
|
930
|
-
if (!this.isShown || e.isDefaultPrevented()) return
|
931
|
-
|
932
|
-
this.isShown = false
|
933
|
-
|
934
|
-
this.escape()
|
935
|
-
|
936
|
-
$(document).off('focusin.bs.modal')
|
937
|
-
|
938
|
-
this.$element
|
939
|
-
.removeClass('in')
|
940
|
-
.attr('aria-hidden', true)
|
941
|
-
.off('click.dismiss.modal')
|
942
|
-
|
943
|
-
$.support.transition && this.$element.hasClass('fade') ?
|
944
|
-
this.$element
|
945
|
-
.one($.support.transition.end, $.proxy(this.hideModal, this))
|
946
|
-
.emulateTransitionEnd(300) :
|
947
|
-
this.hideModal()
|
948
|
-
}
|
949
|
-
|
950
|
-
Modal.prototype.enforceFocus = function () {
|
951
|
-
$(document)
|
952
|
-
.off('focusin.bs.modal') // guard against infinite focus loop
|
953
|
-
.on('focusin.bs.modal', $.proxy(function (e) {
|
954
|
-
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
955
|
-
this.$element.focus()
|
956
|
-
}
|
957
|
-
}, this))
|
958
|
-
}
|
959
|
-
|
960
|
-
Modal.prototype.escape = function () {
|
961
|
-
if (this.isShown && this.options.keyboard) {
|
962
|
-
this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
|
963
|
-
e.which == 27 && this.hide()
|
964
|
-
}, this))
|
965
|
-
} else if (!this.isShown) {
|
966
|
-
this.$element.off('keyup.dismiss.bs.modal')
|
967
|
-
}
|
968
|
-
}
|
969
|
-
|
970
|
-
Modal.prototype.hideModal = function () {
|
971
|
-
var that = this
|
972
|
-
this.$element.hide()
|
973
|
-
this.backdrop(function () {
|
974
|
-
that.removeBackdrop()
|
975
|
-
that.$element.trigger('hidden.bs.modal')
|
976
|
-
})
|
977
|
-
}
|
978
|
-
|
979
|
-
Modal.prototype.removeBackdrop = function () {
|
980
|
-
this.$backdrop && this.$backdrop.remove()
|
981
|
-
this.$backdrop = null
|
982
|
-
}
|
983
|
-
|
984
|
-
Modal.prototype.backdrop = function (callback) {
|
985
|
-
var that = this
|
986
|
-
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
987
|
-
|
988
|
-
if (this.isShown && this.options.backdrop) {
|
989
|
-
var doAnimate = $.support.transition && animate
|
990
|
-
|
991
|
-
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
992
|
-
.appendTo(document.body)
|
993
|
-
|
994
|
-
this.$element.on('click.dismiss.modal', $.proxy(function (e) {
|
995
|
-
if (e.target !== e.currentTarget) return
|
996
|
-
this.options.backdrop == 'static'
|
997
|
-
? this.$element[0].focus.call(this.$element[0])
|
998
|
-
: this.hide.call(this)
|
999
|
-
}, this))
|
1000
|
-
|
1001
|
-
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
1002
|
-
|
1003
|
-
this.$backdrop.addClass('in')
|
1004
|
-
|
1005
|
-
if (!callback) return
|
1006
|
-
|
1007
|
-
doAnimate ?
|
1008
|
-
this.$backdrop
|
1009
|
-
.one($.support.transition.end, callback)
|
1010
|
-
.emulateTransitionEnd(150) :
|
1011
|
-
callback()
|
1012
|
-
|
1013
|
-
} else if (!this.isShown && this.$backdrop) {
|
1014
|
-
this.$backdrop.removeClass('in')
|
1015
|
-
|
1016
|
-
$.support.transition && this.$element.hasClass('fade')?
|
1017
|
-
this.$backdrop
|
1018
|
-
.one($.support.transition.end, callback)
|
1019
|
-
.emulateTransitionEnd(150) :
|
1020
|
-
callback()
|
1021
|
-
|
1022
|
-
} else if (callback) {
|
1023
|
-
callback()
|
1024
|
-
}
|
1025
|
-
}
|
1026
|
-
|
1027
|
-
|
1028
|
-
// MODAL PLUGIN DEFINITION
|
1029
|
-
// =======================
|
1030
|
-
|
1031
|
-
var old = $.fn.modal
|
1032
|
-
|
1033
|
-
$.fn.modal = function (option, _relatedTarget) {
|
1034
|
-
return this.each(function () {
|
1035
|
-
var $this = $(this)
|
1036
|
-
var data = $this.data('bs.modal')
|
1037
|
-
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
1038
|
-
|
1039
|
-
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
1040
|
-
if (typeof option == 'string') data[option](_relatedTarget)
|
1041
|
-
else if (options.show) data.show(_relatedTarget)
|
1042
|
-
})
|
1043
|
-
}
|
1044
|
-
|
1045
|
-
$.fn.modal.Constructor = Modal
|
1046
|
-
|
1047
|
-
|
1048
|
-
// MODAL NO CONFLICT
|
1049
|
-
// =================
|
1050
|
-
|
1051
|
-
$.fn.modal.noConflict = function () {
|
1052
|
-
$.fn.modal = old
|
1053
|
-
return this
|
1054
|
-
}
|
1055
|
-
|
1056
|
-
|
1057
|
-
// MODAL DATA-API
|
1058
|
-
// ==============
|
1059
|
-
|
1060
|
-
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
1061
|
-
var $this = $(this)
|
1062
|
-
var href = $this.attr('href')
|
1063
|
-
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) //strip for ie7
|
1064
|
-
var option = $target.data('modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
1065
|
-
|
1066
|
-
e.preventDefault()
|
1067
|
-
|
1068
|
-
$target
|
1069
|
-
.modal(option, this)
|
1070
|
-
.one('hide', function () {
|
1071
|
-
$this.is(':visible') && $this.focus()
|
1072
|
-
})
|
1073
|
-
})
|
1074
|
-
|
1075
|
-
$(document)
|
1076
|
-
.on('show.bs.modal', '.modal', function () { $(document.body).addClass('modal-open') })
|
1077
|
-
.on('hidden.bs.modal', '.modal', function () { $(document.body).removeClass('modal-open') })
|
1078
|
-
|
1079
|
-
}(jQuery);
|
1080
|
-
|
1081
|
-
/* ========================================================================
|
1082
|
-
* Bootstrap: tooltip.js v3.0.3
|
1083
|
-
* http://getbootstrap.com/javascript/#tooltip
|
1084
|
-
* Inspired by the original jQuery.tipsy by Jason Frame
|
1085
|
-
* ========================================================================
|
1086
|
-
* Copyright 2013 Twitter, Inc.
|
1087
|
-
*
|
1088
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1089
|
-
* you may not use this file except in compliance with the License.
|
1090
|
-
* You may obtain a copy of the License at
|
1091
|
-
*
|
1092
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1093
|
-
*
|
1094
|
-
* Unless required by applicable law or agreed to in writing, software
|
1095
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1096
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1097
|
-
* See the License for the specific language governing permissions and
|
1098
|
-
* limitations under the License.
|
1099
|
-
* ======================================================================== */
|
1100
|
-
|
1101
|
-
|
1102
|
-
+function ($) { "use strict";
|
1103
|
-
|
1104
|
-
// TOOLTIP PUBLIC CLASS DEFINITION
|
1105
|
-
// ===============================
|
1106
|
-
|
1107
|
-
var Tooltip = function (element, options) {
|
1108
|
-
this.type =
|
1109
|
-
this.options =
|
1110
|
-
this.enabled =
|
1111
|
-
this.timeout =
|
1112
|
-
this.hoverState =
|
1113
|
-
this.$element = null
|
1114
|
-
|
1115
|
-
this.init('tooltip', element, options)
|
1116
|
-
}
|
1117
|
-
|
1118
|
-
Tooltip.DEFAULTS = {
|
1119
|
-
animation: true
|
1120
|
-
, placement: 'top'
|
1121
|
-
, selector: false
|
1122
|
-
, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
|
1123
|
-
, trigger: 'hover focus'
|
1124
|
-
, title: ''
|
1125
|
-
, delay: 0
|
1126
|
-
, html: false
|
1127
|
-
, container: false
|
1128
|
-
}
|
1129
|
-
|
1130
|
-
Tooltip.prototype.init = function (type, element, options) {
|
1131
|
-
this.enabled = true
|
1132
|
-
this.type = type
|
1133
|
-
this.$element = $(element)
|
1134
|
-
this.options = this.getOptions(options)
|
1135
|
-
|
1136
|
-
var triggers = this.options.trigger.split(' ')
|
1137
|
-
|
1138
|
-
for (var i = triggers.length; i--;) {
|
1139
|
-
var trigger = triggers[i]
|
1140
|
-
|
1141
|
-
if (trigger == 'click') {
|
1142
|
-
this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this))
|
1143
|
-
} else if (trigger != 'manual') {
|
1144
|
-
var eventIn = trigger == 'hover' ? 'mouseenter' : 'focus'
|
1145
|
-
var eventOut = trigger == 'hover' ? 'mouseleave' : 'blur'
|
1146
|
-
|
1147
|
-
this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this))
|
1148
|
-
this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this))
|
1149
|
-
}
|
1150
|
-
}
|
1151
|
-
|
1152
|
-
this.options.selector ?
|
1153
|
-
(this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) :
|
1154
|
-
this.fixTitle()
|
1155
|
-
}
|
1156
|
-
|
1157
|
-
Tooltip.prototype.getDefaults = function () {
|
1158
|
-
return Tooltip.DEFAULTS
|
1159
|
-
}
|
1160
|
-
|
1161
|
-
Tooltip.prototype.getOptions = function (options) {
|
1162
|
-
options = $.extend({}, this.getDefaults(), this.$element.data(), options)
|
1163
|
-
|
1164
|
-
if (options.delay && typeof options.delay == 'number') {
|
1165
|
-
options.delay = {
|
1166
|
-
show: options.delay
|
1167
|
-
, hide: options.delay
|
1168
|
-
}
|
1169
|
-
}
|
1170
|
-
|
1171
|
-
return options
|
1172
|
-
}
|
1173
|
-
|
1174
|
-
Tooltip.prototype.getDelegateOptions = function () {
|
1175
|
-
var options = {}
|
1176
|
-
var defaults = this.getDefaults()
|
1177
|
-
|
1178
|
-
this._options && $.each(this._options, function (key, value) {
|
1179
|
-
if (defaults[key] != value) options[key] = value
|
1180
|
-
})
|
1181
|
-
|
1182
|
-
return options
|
1183
|
-
}
|
1184
|
-
|
1185
|
-
Tooltip.prototype.enter = function (obj) {
|
1186
|
-
var self = obj instanceof this.constructor ?
|
1187
|
-
obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
|
1188
|
-
|
1189
|
-
clearTimeout(self.timeout)
|
1190
|
-
|
1191
|
-
self.hoverState = 'in'
|
1192
|
-
|
1193
|
-
if (!self.options.delay || !self.options.delay.show) return self.show()
|
1194
|
-
|
1195
|
-
self.timeout = setTimeout(function () {
|
1196
|
-
if (self.hoverState == 'in') self.show()
|
1197
|
-
}, self.options.delay.show)
|
1198
|
-
}
|
1199
|
-
|
1200
|
-
Tooltip.prototype.leave = function (obj) {
|
1201
|
-
var self = obj instanceof this.constructor ?
|
1202
|
-
obj : $(obj.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type)
|
1203
|
-
|
1204
|
-
clearTimeout(self.timeout)
|
1205
|
-
|
1206
|
-
self.hoverState = 'out'
|
1207
|
-
|
1208
|
-
if (!self.options.delay || !self.options.delay.hide) return self.hide()
|
1209
|
-
|
1210
|
-
self.timeout = setTimeout(function () {
|
1211
|
-
if (self.hoverState == 'out') self.hide()
|
1212
|
-
}, self.options.delay.hide)
|
1213
|
-
}
|
1214
|
-
|
1215
|
-
Tooltip.prototype.show = function () {
|
1216
|
-
var e = $.Event('show.bs.'+ this.type)
|
1217
|
-
|
1218
|
-
if (this.hasContent() && this.enabled) {
|
1219
|
-
this.$element.trigger(e)
|
1220
|
-
|
1221
|
-
if (e.isDefaultPrevented()) return
|
1222
|
-
|
1223
|
-
var $tip = this.tip()
|
1224
|
-
|
1225
|
-
this.setContent()
|
1226
|
-
|
1227
|
-
if (this.options.animation) $tip.addClass('fade')
|
1228
|
-
|
1229
|
-
var placement = typeof this.options.placement == 'function' ?
|
1230
|
-
this.options.placement.call(this, $tip[0], this.$element[0]) :
|
1231
|
-
this.options.placement
|
1232
|
-
|
1233
|
-
var autoToken = /\s?auto?\s?/i
|
1234
|
-
var autoPlace = autoToken.test(placement)
|
1235
|
-
if (autoPlace) placement = placement.replace(autoToken, '') || 'top'
|
1236
|
-
|
1237
|
-
$tip
|
1238
|
-
.detach()
|
1239
|
-
.css({ top: 0, left: 0, display: 'block' })
|
1240
|
-
.addClass(placement)
|
1241
|
-
|
1242
|
-
this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element)
|
1243
|
-
|
1244
|
-
var pos = this.getPosition()
|
1245
|
-
var actualWidth = $tip[0].offsetWidth
|
1246
|
-
var actualHeight = $tip[0].offsetHeight
|
1247
|
-
|
1248
|
-
if (autoPlace) {
|
1249
|
-
var $parent = this.$element.parent()
|
1250
|
-
|
1251
|
-
var orgPlacement = placement
|
1252
|
-
var docScroll = document.documentElement.scrollTop || document.body.scrollTop
|
1253
|
-
var parentWidth = this.options.container == 'body' ? window.innerWidth : $parent.outerWidth()
|
1254
|
-
var parentHeight = this.options.container == 'body' ? window.innerHeight : $parent.outerHeight()
|
1255
|
-
var parentLeft = this.options.container == 'body' ? 0 : $parent.offset().left
|
1256
|
-
|
1257
|
-
placement = placement == 'bottom' && pos.top + pos.height + actualHeight - docScroll > parentHeight ? 'top' :
|
1258
|
-
placement == 'top' && pos.top - docScroll - actualHeight < 0 ? 'bottom' :
|
1259
|
-
placement == 'right' && pos.right + actualWidth > parentWidth ? 'left' :
|
1260
|
-
placement == 'left' && pos.left - actualWidth < parentLeft ? 'right' :
|
1261
|
-
placement
|
1262
|
-
|
1263
|
-
$tip
|
1264
|
-
.removeClass(orgPlacement)
|
1265
|
-
.addClass(placement)
|
1266
|
-
}
|
1267
|
-
|
1268
|
-
var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight)
|
1269
|
-
|
1270
|
-
this.applyPlacement(calculatedOffset, placement)
|
1271
|
-
this.$element.trigger('shown.bs.' + this.type)
|
1272
|
-
}
|
1273
|
-
}
|
1274
|
-
|
1275
|
-
Tooltip.prototype.applyPlacement = function(offset, placement) {
|
1276
|
-
var replace
|
1277
|
-
var $tip = this.tip()
|
1278
|
-
var width = $tip[0].offsetWidth
|
1279
|
-
var height = $tip[0].offsetHeight
|
1280
|
-
|
1281
|
-
// manually read margins because getBoundingClientRect includes difference
|
1282
|
-
var marginTop = parseInt($tip.css('margin-top'), 10)
|
1283
|
-
var marginLeft = parseInt($tip.css('margin-left'), 10)
|
1284
|
-
|
1285
|
-
// we must check for NaN for ie 8/9
|
1286
|
-
if (isNaN(marginTop)) marginTop = 0
|
1287
|
-
if (isNaN(marginLeft)) marginLeft = 0
|
1288
|
-
|
1289
|
-
offset.top = offset.top + marginTop
|
1290
|
-
offset.left = offset.left + marginLeft
|
1291
|
-
|
1292
|
-
$tip
|
1293
|
-
.offset(offset)
|
1294
|
-
.addClass('in')
|
1295
|
-
|
1296
|
-
// check to see if placing tip in new offset caused the tip to resize itself
|
1297
|
-
var actualWidth = $tip[0].offsetWidth
|
1298
|
-
var actualHeight = $tip[0].offsetHeight
|
1299
|
-
|
1300
|
-
if (placement == 'top' && actualHeight != height) {
|
1301
|
-
replace = true
|
1302
|
-
offset.top = offset.top + height - actualHeight
|
1303
|
-
}
|
1304
|
-
|
1305
|
-
if (/bottom|top/.test(placement)) {
|
1306
|
-
var delta = 0
|
1307
|
-
|
1308
|
-
if (offset.left < 0) {
|
1309
|
-
delta = offset.left * -2
|
1310
|
-
offset.left = 0
|
1311
|
-
|
1312
|
-
$tip.offset(offset)
|
1313
|
-
|
1314
|
-
actualWidth = $tip[0].offsetWidth
|
1315
|
-
actualHeight = $tip[0].offsetHeight
|
1316
|
-
}
|
1317
|
-
|
1318
|
-
this.replaceArrow(delta - width + actualWidth, actualWidth, 'left')
|
1319
|
-
} else {
|
1320
|
-
this.replaceArrow(actualHeight - height, actualHeight, 'top')
|
1321
|
-
}
|
1322
|
-
|
1323
|
-
if (replace) $tip.offset(offset)
|
1324
|
-
}
|
1325
|
-
|
1326
|
-
Tooltip.prototype.replaceArrow = function(delta, dimension, position) {
|
1327
|
-
this.arrow().css(position, delta ? (50 * (1 - delta / dimension) + "%") : '')
|
1328
|
-
}
|
1329
|
-
|
1330
|
-
Tooltip.prototype.setContent = function () {
|
1331
|
-
var $tip = this.tip()
|
1332
|
-
var title = this.getTitle()
|
1333
|
-
|
1334
|
-
$tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title)
|
1335
|
-
$tip.removeClass('fade in top bottom left right')
|
1336
|
-
}
|
1337
|
-
|
1338
|
-
Tooltip.prototype.hide = function () {
|
1339
|
-
var that = this
|
1340
|
-
var $tip = this.tip()
|
1341
|
-
var e = $.Event('hide.bs.' + this.type)
|
1342
|
-
|
1343
|
-
function complete() {
|
1344
|
-
if (that.hoverState != 'in') $tip.detach()
|
1345
|
-
}
|
1346
|
-
|
1347
|
-
this.$element.trigger(e)
|
1348
|
-
|
1349
|
-
if (e.isDefaultPrevented()) return
|
1350
|
-
|
1351
|
-
$tip.removeClass('in')
|
1352
|
-
|
1353
|
-
$.support.transition && this.$tip.hasClass('fade') ?
|
1354
|
-
$tip
|
1355
|
-
.one($.support.transition.end, complete)
|
1356
|
-
.emulateTransitionEnd(150) :
|
1357
|
-
complete()
|
1358
|
-
|
1359
|
-
this.$element.trigger('hidden.bs.' + this.type)
|
1360
|
-
|
1361
|
-
return this
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
Tooltip.prototype.fixTitle = function () {
|
1365
|
-
var $e = this.$element
|
1366
|
-
if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') {
|
1367
|
-
$e.attr('data-original-title', $e.attr('title') || '').attr('title', '')
|
1368
|
-
}
|
1369
|
-
}
|
1370
|
-
|
1371
|
-
Tooltip.prototype.hasContent = function () {
|
1372
|
-
return this.getTitle()
|
1373
|
-
}
|
1374
|
-
|
1375
|
-
Tooltip.prototype.getPosition = function () {
|
1376
|
-
var el = this.$element[0]
|
1377
|
-
return $.extend({}, (typeof el.getBoundingClientRect == 'function') ? el.getBoundingClientRect() : {
|
1378
|
-
width: el.offsetWidth
|
1379
|
-
, height: el.offsetHeight
|
1380
|
-
}, this.$element.offset())
|
1381
|
-
}
|
1382
|
-
|
1383
|
-
Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) {
|
1384
|
-
return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1385
|
-
placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } :
|
1386
|
-
placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } :
|
1387
|
-
/* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width }
|
1388
|
-
}
|
1389
|
-
|
1390
|
-
Tooltip.prototype.getTitle = function () {
|
1391
|
-
var title
|
1392
|
-
var $e = this.$element
|
1393
|
-
var o = this.options
|
1394
|
-
|
1395
|
-
title = $e.attr('data-original-title')
|
1396
|
-
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
|
1397
|
-
|
1398
|
-
return title
|
1399
|
-
}
|
1400
|
-
|
1401
|
-
Tooltip.prototype.tip = function () {
|
1402
|
-
return this.$tip = this.$tip || $(this.options.template)
|
1403
|
-
}
|
1404
|
-
|
1405
|
-
Tooltip.prototype.arrow = function () {
|
1406
|
-
return this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')
|
1407
|
-
}
|
1408
|
-
|
1409
|
-
Tooltip.prototype.validate = function () {
|
1410
|
-
if (!this.$element[0].parentNode) {
|
1411
|
-
this.hide()
|
1412
|
-
this.$element = null
|
1413
|
-
this.options = null
|
1414
|
-
}
|
1415
|
-
}
|
1416
|
-
|
1417
|
-
Tooltip.prototype.enable = function () {
|
1418
|
-
this.enabled = true
|
1419
|
-
}
|
1420
|
-
|
1421
|
-
Tooltip.prototype.disable = function () {
|
1422
|
-
this.enabled = false
|
1423
|
-
}
|
1424
|
-
|
1425
|
-
Tooltip.prototype.toggleEnabled = function () {
|
1426
|
-
this.enabled = !this.enabled
|
1427
|
-
}
|
1428
|
-
|
1429
|
-
Tooltip.prototype.toggle = function (e) {
|
1430
|
-
var self = e ? $(e.currentTarget)[this.type](this.getDelegateOptions()).data('bs.' + this.type) : this
|
1431
|
-
self.tip().hasClass('in') ? self.leave(self) : self.enter(self)
|
1432
|
-
}
|
1433
|
-
|
1434
|
-
Tooltip.prototype.destroy = function () {
|
1435
|
-
this.hide().$element.off('.' + this.type).removeData('bs.' + this.type)
|
1436
|
-
}
|
1437
|
-
|
1438
|
-
|
1439
|
-
// TOOLTIP PLUGIN DEFINITION
|
1440
|
-
// =========================
|
1441
|
-
|
1442
|
-
var old = $.fn.tooltip
|
1443
|
-
|
1444
|
-
$.fn.tooltip = function (option) {
|
1445
|
-
return this.each(function () {
|
1446
|
-
var $this = $(this)
|
1447
|
-
var data = $this.data('bs.tooltip')
|
1448
|
-
var options = typeof option == 'object' && option
|
1449
|
-
|
1450
|
-
if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
|
1451
|
-
if (typeof option == 'string') data[option]()
|
1452
|
-
})
|
1453
|
-
}
|
1454
|
-
|
1455
|
-
$.fn.tooltip.Constructor = Tooltip
|
1456
|
-
|
1457
|
-
|
1458
|
-
// TOOLTIP NO CONFLICT
|
1459
|
-
// ===================
|
1460
|
-
|
1461
|
-
$.fn.tooltip.noConflict = function () {
|
1462
|
-
$.fn.tooltip = old
|
1463
|
-
return this
|
1464
|
-
}
|
1465
|
-
|
1466
|
-
}(jQuery);
|
1467
|
-
|
1468
|
-
/* ========================================================================
|
1469
|
-
* Bootstrap: popover.js v3.0.3
|
1470
|
-
* http://getbootstrap.com/javascript/#popovers
|
1471
|
-
* ========================================================================
|
1472
|
-
* Copyright 2013 Twitter, Inc.
|
1473
|
-
*
|
1474
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1475
|
-
* you may not use this file except in compliance with the License.
|
1476
|
-
* You may obtain a copy of the License at
|
1477
|
-
*
|
1478
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1479
|
-
*
|
1480
|
-
* Unless required by applicable law or agreed to in writing, software
|
1481
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1482
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1483
|
-
* See the License for the specific language governing permissions and
|
1484
|
-
* limitations under the License.
|
1485
|
-
* ======================================================================== */
|
1486
|
-
|
1487
|
-
|
1488
|
-
+function ($) { "use strict";
|
1489
|
-
|
1490
|
-
// POPOVER PUBLIC CLASS DEFINITION
|
1491
|
-
// ===============================
|
1492
|
-
|
1493
|
-
var Popover = function (element, options) {
|
1494
|
-
this.init('popover', element, options)
|
1495
|
-
}
|
1496
|
-
|
1497
|
-
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
1498
|
-
|
1499
|
-
Popover.DEFAULTS = $.extend({} , $.fn.tooltip.Constructor.DEFAULTS, {
|
1500
|
-
placement: 'right'
|
1501
|
-
, trigger: 'click'
|
1502
|
-
, content: ''
|
1503
|
-
, template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
1504
|
-
})
|
1505
|
-
|
1506
|
-
|
1507
|
-
// NOTE: POPOVER EXTENDS tooltip.js
|
1508
|
-
// ================================
|
1509
|
-
|
1510
|
-
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
1511
|
-
|
1512
|
-
Popover.prototype.constructor = Popover
|
1513
|
-
|
1514
|
-
Popover.prototype.getDefaults = function () {
|
1515
|
-
return Popover.DEFAULTS
|
1516
|
-
}
|
1517
|
-
|
1518
|
-
Popover.prototype.setContent = function () {
|
1519
|
-
var $tip = this.tip()
|
1520
|
-
var title = this.getTitle()
|
1521
|
-
var content = this.getContent()
|
1522
|
-
|
1523
|
-
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
1524
|
-
$tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content)
|
1525
|
-
|
1526
|
-
$tip.removeClass('fade top bottom left right in')
|
1527
|
-
|
1528
|
-
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
|
1529
|
-
// this manually by checking the contents.
|
1530
|
-
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
1531
|
-
}
|
1532
|
-
|
1533
|
-
Popover.prototype.hasContent = function () {
|
1534
|
-
return this.getTitle() || this.getContent()
|
1535
|
-
}
|
1536
|
-
|
1537
|
-
Popover.prototype.getContent = function () {
|
1538
|
-
var $e = this.$element
|
1539
|
-
var o = this.options
|
1540
|
-
|
1541
|
-
return $e.attr('data-content')
|
1542
|
-
|| (typeof o.content == 'function' ?
|
1543
|
-
o.content.call($e[0]) :
|
1544
|
-
o.content)
|
1545
|
-
}
|
1546
|
-
|
1547
|
-
Popover.prototype.arrow = function () {
|
1548
|
-
return this.$arrow = this.$arrow || this.tip().find('.arrow')
|
1549
|
-
}
|
1550
|
-
|
1551
|
-
Popover.prototype.tip = function () {
|
1552
|
-
if (!this.$tip) this.$tip = $(this.options.template)
|
1553
|
-
return this.$tip
|
1554
|
-
}
|
1555
|
-
|
1556
|
-
|
1557
|
-
// POPOVER PLUGIN DEFINITION
|
1558
|
-
// =========================
|
1559
|
-
|
1560
|
-
var old = $.fn.popover
|
1561
|
-
|
1562
|
-
$.fn.popover = function (option) {
|
1563
|
-
return this.each(function () {
|
1564
|
-
var $this = $(this)
|
1565
|
-
var data = $this.data('bs.popover')
|
1566
|
-
var options = typeof option == 'object' && option
|
1567
|
-
|
1568
|
-
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
1569
|
-
if (typeof option == 'string') data[option]()
|
1570
|
-
})
|
1571
|
-
}
|
1572
|
-
|
1573
|
-
$.fn.popover.Constructor = Popover
|
1574
|
-
|
1575
|
-
|
1576
|
-
// POPOVER NO CONFLICT
|
1577
|
-
// ===================
|
1578
|
-
|
1579
|
-
$.fn.popover.noConflict = function () {
|
1580
|
-
$.fn.popover = old
|
1581
|
-
return this
|
1582
|
-
}
|
1583
|
-
|
1584
|
-
}(jQuery);
|
1585
|
-
|
1586
|
-
/* ========================================================================
|
1587
|
-
* Bootstrap: scrollspy.js v3.0.3
|
1588
|
-
* http://getbootstrap.com/javascript/#scrollspy
|
1589
|
-
* ========================================================================
|
1590
|
-
* Copyright 2013 Twitter, Inc.
|
1591
|
-
*
|
1592
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1593
|
-
* you may not use this file except in compliance with the License.
|
1594
|
-
* You may obtain a copy of the License at
|
1595
|
-
*
|
1596
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1597
|
-
*
|
1598
|
-
* Unless required by applicable law or agreed to in writing, software
|
1599
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1600
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1601
|
-
* See the License for the specific language governing permissions and
|
1602
|
-
* limitations under the License.
|
1603
|
-
* ======================================================================== */
|
1604
|
-
|
1605
|
-
|
1606
|
-
+function ($) { "use strict";
|
1607
|
-
|
1608
|
-
// SCROLLSPY CLASS DEFINITION
|
1609
|
-
// ==========================
|
1610
|
-
|
1611
|
-
function ScrollSpy(element, options) {
|
1612
|
-
var href
|
1613
|
-
var process = $.proxy(this.process, this)
|
1614
|
-
|
1615
|
-
this.$element = $(element).is('body') ? $(window) : $(element)
|
1616
|
-
this.$body = $('body')
|
1617
|
-
this.$scrollElement = this.$element.on('scroll.bs.scroll-spy.data-api', process)
|
1618
|
-
this.options = $.extend({}, ScrollSpy.DEFAULTS, options)
|
1619
|
-
this.selector = (this.options.target
|
1620
|
-
|| ((href = $(element).attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
1621
|
-
|| '') + ' .nav li > a'
|
1622
|
-
this.offsets = $([])
|
1623
|
-
this.targets = $([])
|
1624
|
-
this.activeTarget = null
|
1625
|
-
|
1626
|
-
this.refresh()
|
1627
|
-
this.process()
|
1628
|
-
}
|
1629
|
-
|
1630
|
-
ScrollSpy.DEFAULTS = {
|
1631
|
-
offset: 10
|
1632
|
-
}
|
1633
|
-
|
1634
|
-
ScrollSpy.prototype.refresh = function () {
|
1635
|
-
var offsetMethod = this.$element[0] == window ? 'offset' : 'position'
|
1636
|
-
|
1637
|
-
this.offsets = $([])
|
1638
|
-
this.targets = $([])
|
1639
|
-
|
1640
|
-
var self = this
|
1641
|
-
var $targets = this.$body
|
1642
|
-
.find(this.selector)
|
1643
|
-
.map(function () {
|
1644
|
-
var $el = $(this)
|
1645
|
-
var href = $el.data('target') || $el.attr('href')
|
1646
|
-
var $href = /^#\w/.test(href) && $(href)
|
1647
|
-
|
1648
|
-
return ($href
|
1649
|
-
&& $href.length
|
1650
|
-
&& [[ $href[offsetMethod]().top + (!$.isWindow(self.$scrollElement.get(0)) && self.$scrollElement.scrollTop()), href ]]) || null
|
1651
|
-
})
|
1652
|
-
.sort(function (a, b) { return a[0] - b[0] })
|
1653
|
-
.each(function () {
|
1654
|
-
self.offsets.push(this[0])
|
1655
|
-
self.targets.push(this[1])
|
1656
|
-
})
|
1657
|
-
}
|
1658
|
-
|
1659
|
-
ScrollSpy.prototype.process = function () {
|
1660
|
-
var scrollTop = this.$scrollElement.scrollTop() + this.options.offset
|
1661
|
-
var scrollHeight = this.$scrollElement[0].scrollHeight || this.$body[0].scrollHeight
|
1662
|
-
var maxScroll = scrollHeight - this.$scrollElement.height()
|
1663
|
-
var offsets = this.offsets
|
1664
|
-
var targets = this.targets
|
1665
|
-
var activeTarget = this.activeTarget
|
1666
|
-
var i
|
1667
|
-
|
1668
|
-
if (scrollTop >= maxScroll) {
|
1669
|
-
return activeTarget != (i = targets.last()[0]) && this.activate(i)
|
1670
|
-
}
|
1671
|
-
|
1672
|
-
for (i = offsets.length; i--;) {
|
1673
|
-
activeTarget != targets[i]
|
1674
|
-
&& scrollTop >= offsets[i]
|
1675
|
-
&& (!offsets[i + 1] || scrollTop <= offsets[i + 1])
|
1676
|
-
&& this.activate( targets[i] )
|
1677
|
-
}
|
1678
|
-
}
|
1679
|
-
|
1680
|
-
ScrollSpy.prototype.activate = function (target) {
|
1681
|
-
this.activeTarget = target
|
1682
|
-
|
1683
|
-
$(this.selector)
|
1684
|
-
.parents('.active')
|
1685
|
-
.removeClass('active')
|
1686
|
-
|
1687
|
-
var selector = this.selector
|
1688
|
-
+ '[data-target="' + target + '"],'
|
1689
|
-
+ this.selector + '[href="' + target + '"]'
|
1690
|
-
|
1691
|
-
var active = $(selector)
|
1692
|
-
.parents('li')
|
1693
|
-
.addClass('active')
|
1694
|
-
|
1695
|
-
if (active.parent('.dropdown-menu').length) {
|
1696
|
-
active = active
|
1697
|
-
.closest('li.dropdown')
|
1698
|
-
.addClass('active')
|
1699
|
-
}
|
1700
|
-
|
1701
|
-
active.trigger('activate.bs.scrollspy')
|
1702
|
-
}
|
1703
|
-
|
1704
|
-
|
1705
|
-
// SCROLLSPY PLUGIN DEFINITION
|
1706
|
-
// ===========================
|
1707
|
-
|
1708
|
-
var old = $.fn.scrollspy
|
1709
|
-
|
1710
|
-
$.fn.scrollspy = function (option) {
|
1711
|
-
return this.each(function () {
|
1712
|
-
var $this = $(this)
|
1713
|
-
var data = $this.data('bs.scrollspy')
|
1714
|
-
var options = typeof option == 'object' && option
|
1715
|
-
|
1716
|
-
if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options)))
|
1717
|
-
if (typeof option == 'string') data[option]()
|
1718
|
-
})
|
1719
|
-
}
|
1720
|
-
|
1721
|
-
$.fn.scrollspy.Constructor = ScrollSpy
|
1722
|
-
|
1723
|
-
|
1724
|
-
// SCROLLSPY NO CONFLICT
|
1725
|
-
// =====================
|
1726
|
-
|
1727
|
-
$.fn.scrollspy.noConflict = function () {
|
1728
|
-
$.fn.scrollspy = old
|
1729
|
-
return this
|
1730
|
-
}
|
1731
|
-
|
1732
|
-
|
1733
|
-
// SCROLLSPY DATA-API
|
1734
|
-
// ==================
|
1735
|
-
|
1736
|
-
$(window).on('load', function () {
|
1737
|
-
$('[data-spy="scroll"]').each(function () {
|
1738
|
-
var $spy = $(this)
|
1739
|
-
$spy.scrollspy($spy.data())
|
1740
|
-
})
|
1741
|
-
})
|
1742
|
-
|
1743
|
-
}(jQuery);
|
1744
|
-
|
1745
|
-
/* ========================================================================
|
1746
|
-
* Bootstrap: tab.js v3.0.3
|
1747
|
-
* http://getbootstrap.com/javascript/#tabs
|
1748
|
-
* ========================================================================
|
1749
|
-
* Copyright 2013 Twitter, Inc.
|
1750
|
-
*
|
1751
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1752
|
-
* you may not use this file except in compliance with the License.
|
1753
|
-
* You may obtain a copy of the License at
|
1754
|
-
*
|
1755
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1756
|
-
*
|
1757
|
-
* Unless required by applicable law or agreed to in writing, software
|
1758
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1759
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1760
|
-
* See the License for the specific language governing permissions and
|
1761
|
-
* limitations under the License.
|
1762
|
-
* ======================================================================== */
|
1763
|
-
|
1764
|
-
|
1765
|
-
+function ($) { "use strict";
|
1766
|
-
|
1767
|
-
// TAB CLASS DEFINITION
|
1768
|
-
// ====================
|
1769
|
-
|
1770
|
-
var Tab = function (element) {
|
1771
|
-
this.element = $(element)
|
1772
|
-
}
|
1773
|
-
|
1774
|
-
Tab.prototype.show = function () {
|
1775
|
-
var $this = this.element
|
1776
|
-
var $ul = $this.closest('ul:not(.dropdown-menu)')
|
1777
|
-
var selector = $this.data('target')
|
1778
|
-
|
1779
|
-
if (!selector) {
|
1780
|
-
selector = $this.attr('href')
|
1781
|
-
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
1782
|
-
}
|
1783
|
-
|
1784
|
-
if ($this.parent('li').hasClass('active')) return
|
1785
|
-
|
1786
|
-
var previous = $ul.find('.active:last a')[0]
|
1787
|
-
var e = $.Event('show.bs.tab', {
|
1788
|
-
relatedTarget: previous
|
1789
|
-
})
|
1790
|
-
|
1791
|
-
$this.trigger(e)
|
1792
|
-
|
1793
|
-
if (e.isDefaultPrevented()) return
|
1794
|
-
|
1795
|
-
var $target = $(selector)
|
1796
|
-
|
1797
|
-
this.activate($this.parent('li'), $ul)
|
1798
|
-
this.activate($target, $target.parent(), function () {
|
1799
|
-
$this.trigger({
|
1800
|
-
type: 'shown.bs.tab'
|
1801
|
-
, relatedTarget: previous
|
1802
|
-
})
|
1803
|
-
})
|
1804
|
-
}
|
1805
|
-
|
1806
|
-
Tab.prototype.activate = function (element, container, callback) {
|
1807
|
-
var $active = container.find('> .active')
|
1808
|
-
var transition = callback
|
1809
|
-
&& $.support.transition
|
1810
|
-
&& $active.hasClass('fade')
|
1811
|
-
|
1812
|
-
function next() {
|
1813
|
-
$active
|
1814
|
-
.removeClass('active')
|
1815
|
-
.find('> .dropdown-menu > .active')
|
1816
|
-
.removeClass('active')
|
1817
|
-
|
1818
|
-
element.addClass('active')
|
1819
|
-
|
1820
|
-
if (transition) {
|
1821
|
-
element[0].offsetWidth // reflow for transition
|
1822
|
-
element.addClass('in')
|
1823
|
-
} else {
|
1824
|
-
element.removeClass('fade')
|
1825
|
-
}
|
1826
|
-
|
1827
|
-
if (element.parent('.dropdown-menu')) {
|
1828
|
-
element.closest('li.dropdown').addClass('active')
|
1829
|
-
}
|
1830
|
-
|
1831
|
-
callback && callback()
|
1832
|
-
}
|
1833
|
-
|
1834
|
-
transition ?
|
1835
|
-
$active
|
1836
|
-
.one($.support.transition.end, next)
|
1837
|
-
.emulateTransitionEnd(150) :
|
1838
|
-
next()
|
1839
|
-
|
1840
|
-
$active.removeClass('in')
|
1841
|
-
}
|
1842
|
-
|
1843
|
-
|
1844
|
-
// TAB PLUGIN DEFINITION
|
1845
|
-
// =====================
|
1846
|
-
|
1847
|
-
var old = $.fn.tab
|
1848
|
-
|
1849
|
-
$.fn.tab = function ( option ) {
|
1850
|
-
return this.each(function () {
|
1851
|
-
var $this = $(this)
|
1852
|
-
var data = $this.data('bs.tab')
|
1853
|
-
|
1854
|
-
if (!data) $this.data('bs.tab', (data = new Tab(this)))
|
1855
|
-
if (typeof option == 'string') data[option]()
|
1856
|
-
})
|
1857
|
-
}
|
1858
|
-
|
1859
|
-
$.fn.tab.Constructor = Tab
|
1860
|
-
|
1861
|
-
|
1862
|
-
// TAB NO CONFLICT
|
1863
|
-
// ===============
|
1864
|
-
|
1865
|
-
$.fn.tab.noConflict = function () {
|
1866
|
-
$.fn.tab = old
|
1867
|
-
return this
|
1868
|
-
}
|
1869
|
-
|
1870
|
-
|
1871
|
-
// TAB DATA-API
|
1872
|
-
// ============
|
1873
|
-
|
1874
|
-
$(document).on('click.bs.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
1875
|
-
e.preventDefault()
|
1876
|
-
$(this).tab('show')
|
1877
|
-
})
|
1878
|
-
|
1879
|
-
}(jQuery);
|
1880
|
-
|
1881
|
-
/* ========================================================================
|
1882
|
-
* Bootstrap: affix.js v3.0.3
|
1883
|
-
* http://getbootstrap.com/javascript/#affix
|
1884
|
-
* ========================================================================
|
1885
|
-
* Copyright 2013 Twitter, Inc.
|
1886
|
-
*
|
1887
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
1888
|
-
* you may not use this file except in compliance with the License.
|
1889
|
-
* You may obtain a copy of the License at
|
1890
|
-
*
|
1891
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
1892
|
-
*
|
1893
|
-
* Unless required by applicable law or agreed to in writing, software
|
1894
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
1895
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
1896
|
-
* See the License for the specific language governing permissions and
|
1897
|
-
* limitations under the License.
|
1898
|
-
* ======================================================================== */
|
1899
|
-
|
1900
|
-
|
1901
|
-
+function ($) { "use strict";
|
1902
|
-
|
1903
|
-
// AFFIX CLASS DEFINITION
|
1904
|
-
// ======================
|
1905
|
-
|
1906
|
-
var Affix = function (element, options) {
|
1907
|
-
this.options = $.extend({}, Affix.DEFAULTS, options)
|
1908
|
-
this.$window = $(window)
|
1909
|
-
.on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this))
|
1910
|
-
.on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this))
|
1911
|
-
|
1912
|
-
this.$element = $(element)
|
1913
|
-
this.affixed =
|
1914
|
-
this.unpin = null
|
1915
|
-
|
1916
|
-
this.checkPosition()
|
1917
|
-
}
|
1918
|
-
|
1919
|
-
Affix.RESET = 'affix affix-top affix-bottom'
|
1920
|
-
|
1921
|
-
Affix.DEFAULTS = {
|
1922
|
-
offset: 0
|
1923
|
-
}
|
1924
|
-
|
1925
|
-
Affix.prototype.checkPositionWithEventLoop = function () {
|
1926
|
-
setTimeout($.proxy(this.checkPosition, this), 1)
|
1927
|
-
}
|
1928
|
-
|
1929
|
-
Affix.prototype.checkPosition = function () {
|
1930
|
-
if (!this.$element.is(':visible')) return
|
1931
|
-
|
1932
|
-
var scrollHeight = $(document).height()
|
1933
|
-
var scrollTop = this.$window.scrollTop()
|
1934
|
-
var position = this.$element.offset()
|
1935
|
-
var offset = this.options.offset
|
1936
|
-
var offsetTop = offset.top
|
1937
|
-
var offsetBottom = offset.bottom
|
1938
|
-
|
1939
|
-
if (typeof offset != 'object') offsetBottom = offsetTop = offset
|
1940
|
-
if (typeof offsetTop == 'function') offsetTop = offset.top()
|
1941
|
-
if (typeof offsetBottom == 'function') offsetBottom = offset.bottom()
|
1942
|
-
|
1943
|
-
var affix = this.unpin != null && (scrollTop + this.unpin <= position.top) ? false :
|
1944
|
-
offsetBottom != null && (position.top + this.$element.height() >= scrollHeight - offsetBottom) ? 'bottom' :
|
1945
|
-
offsetTop != null && (scrollTop <= offsetTop) ? 'top' : false
|
1946
|
-
|
1947
|
-
if (this.affixed === affix) return
|
1948
|
-
if (this.unpin) this.$element.css('top', '')
|
1949
|
-
|
1950
|
-
this.affixed = affix
|
1951
|
-
this.unpin = affix == 'bottom' ? position.top - scrollTop : null
|
1952
|
-
|
1953
|
-
this.$element.removeClass(Affix.RESET).addClass('affix' + (affix ? '-' + affix : ''))
|
1954
|
-
|
1955
|
-
if (affix == 'bottom') {
|
1956
|
-
this.$element.offset({ top: document.body.offsetHeight - offsetBottom - this.$element.height() })
|
1957
|
-
}
|
1958
|
-
}
|
1959
|
-
|
1960
|
-
|
1961
|
-
// AFFIX PLUGIN DEFINITION
|
1962
|
-
// =======================
|
1963
|
-
|
1964
|
-
var old = $.fn.affix
|
1965
|
-
|
1966
|
-
$.fn.affix = function (option) {
|
1967
|
-
return this.each(function () {
|
1968
|
-
var $this = $(this)
|
1969
|
-
var data = $this.data('bs.affix')
|
1970
|
-
var options = typeof option == 'object' && option
|
1971
|
-
|
1972
|
-
if (!data) $this.data('bs.affix', (data = new Affix(this, options)))
|
1973
|
-
if (typeof option == 'string') data[option]()
|
1974
|
-
})
|
1975
|
-
}
|
1976
|
-
|
1977
|
-
$.fn.affix.Constructor = Affix
|
1978
|
-
|
1979
|
-
|
1980
|
-
// AFFIX NO CONFLICT
|
1981
|
-
// =================
|
1982
|
-
|
1983
|
-
$.fn.affix.noConflict = function () {
|
1984
|
-
$.fn.affix = old
|
1985
|
-
return this
|
1986
|
-
}
|
1987
|
-
|
1988
|
-
|
1989
|
-
// AFFIX DATA-API
|
1990
|
-
// ==============
|
1991
|
-
|
1992
|
-
$(window).on('load', function () {
|
1993
|
-
$('[data-spy="affix"]').each(function () {
|
1994
|
-
var $spy = $(this)
|
1995
|
-
var data = $spy.data()
|
1996
|
-
|
1997
|
-
data.offset = data.offset || {}
|
1998
|
-
|
1999
|
-
if (data.offsetBottom) data.offset.bottom = data.offsetBottom
|
2000
|
-
if (data.offsetTop) data.offset.top = data.offsetTop
|
2001
|
-
|
2002
|
-
$spy.affix(data)
|
2003
|
-
})
|
2004
|
-
})
|
2005
|
-
|
2006
|
-
}(jQuery);
|