├── .dockerignore ├── .gitignore ├── LICENSE ├── README.md ├── WechatIMG176.jpeg ├── applications ├── __init__.py ├── flow │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── constants.py │ ├── end_event_expand.py │ ├── filters.py │ ├── handlers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_nodetemplate.py │ │ ├── 0003_auto_20220210_1737.py │ │ ├── 0004_auto_20220226_1202.py │ │ ├── 0005_subnoderun_subprocessrun.py │ │ ├── 0006_auto_20220616_1616.py │ │ ├── 0007_auto_20220921_1325.py │ │ ├── 0008_nodetemplate_coding.py │ │ ├── 0009_nodetemplate_create_by.py │ │ ├── 0010_processrun_state.py │ │ ├── 0011_auto_20221028_0949.py │ │ ├── 0012_noderun_inputs_component.py │ │ ├── 0013_node_inputs_component.py │ │ ├── 0014_subnoderun_inputs_component.py │ │ ├── 0015_auto_20230224_1401.py │ │ ├── 0016_processrun_task_id.py │ │ └── __init__.py │ ├── models.py │ ├── plugin_code │ │ ├── __init__.py │ │ └── plugin_29.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── task │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── filters.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20220921_1120.py │ │ ├── 0003_auto_20220921_1312.py │ │ ├── 0004_auto_20220921_1556.py │ │ ├── 0005_auto_20220921_1605.py │ │ ├── 0006_auto_20220921_1657.py │ │ ├── 0007_auto_20220921_1659.py │ │ ├── 0008_auto_20220922_0952.py │ │ ├── 0009_task_log_converge.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── services │ │ ├── __init__.py │ │ ├── base.py │ │ ├── clock_task.py │ │ └── cycle_task.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── user │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── utils │ ├── __init__.py │ ├── dag_helper.py │ ├── json_helper.py │ ├── notify_way.py │ ├── timer.py │ ├── uuid_helper.py │ └── var_helper.py ├── component ├── __init__.py ├── drf │ ├── __init__.py │ ├── authentication.py │ ├── constants.py │ ├── filters.py │ ├── generics.py │ ├── mapping.py │ ├── middleware.py │ ├── mixins.py │ ├── pagination.py │ ├── permissions.py │ ├── renderers.py │ └── viewsets.py ├── mysql_pool │ └── __init__.py └── utils │ ├── __init__.py │ ├── basic.py │ ├── drf.py │ └── exceptions.py ├── compose └── local │ └── django │ ├── Dockerfile │ ├── celery │ ├── beat │ │ └── start │ ├── flower │ │ └── start │ └── worker │ │ └── start │ └── start ├── custom_plugins ├── __init__.py ├── apps.py ├── components │ ├── __init__.py │ └── collections │ │ ├── __init__.py │ │ ├── base.py │ │ ├── custom_plugin.py │ │ ├── email_plugin.py │ │ ├── http_plugin.py │ │ ├── redis_plugin.py │ │ ├── shell_plugin.py │ │ ├── sleep_plugin.py │ │ └── sql_plugin.py ├── migrations │ └── __init__.py ├── static │ └── custom_plugins │ │ └── plugins.js └── tests │ ├── __init__.py │ └── components │ ├── __init__.py │ └── collections │ ├── __init__.py │ └── plugins_test │ └── __init__.py ├── dev.md ├── dj_flow ├── __init__.py ├── celery_app.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── editor.worker.js ├── editor.worker.js.gz ├── img.png ├── img_1.png ├── img_2.png ├── img_3.png ├── img_4.png ├── json.worker.js ├── json.worker.js.gz ├── lib ├── bamboo_engine │ ├── __init__.py │ ├── __version__.py │ ├── api.py │ ├── builder │ │ ├── __init__.py │ │ ├── builder.py │ │ └── flow │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── base.py │ │ │ ├── data.py │ │ │ ├── event.py │ │ │ └── gateway.py │ ├── config.py │ ├── context.py │ ├── engine.py │ ├── eri │ │ ├── __init__.py │ │ ├── interfaces.py │ │ └── models.py │ ├── exceptions.py │ ├── handler.py │ ├── handlers │ │ ├── __init__.py │ │ ├── conditional_parallel_gateway.py │ │ ├── converge_gateway.py │ │ ├── empty_end_event.py │ │ ├── empty_start_event.py │ │ ├── exclusive_gateway.py │ │ ├── executable_end_event.py │ │ ├── parallel_gateway.py │ │ ├── service_activity.py │ │ └── subprocess.py │ ├── local.py │ ├── metrics.py │ ├── states.py │ ├── template │ │ ├── __init__.py │ │ ├── sandbox.py │ │ └── template.py │ ├── utils │ │ ├── __init__.py │ │ ├── boolrule │ │ │ ├── __init__.py │ │ │ └── boolrule.py │ │ ├── collections.py │ │ ├── constants.py │ │ ├── graph.py │ │ ├── host.py │ │ ├── mako_safety.py │ │ ├── mako_utils │ │ │ ├── __init__.py │ │ │ ├── checker.py │ │ │ ├── code_extract.py │ │ │ ├── exceptions.py │ │ │ └── visitors.py │ │ ├── object.py │ │ └── string.py │ └── validator │ │ ├── __init__.py │ │ ├── api.py │ │ ├── connection.py │ │ ├── gateway.py │ │ ├── rules.py │ │ └── utils.py ├── pipeline │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── builder │ │ ├── __init__.py │ │ ├── builder.py │ │ └── flow │ │ │ ├── __init__.py │ │ │ ├── activity.py │ │ │ ├── base.py │ │ │ ├── data.py │ │ │ ├── event.py │ │ │ └── gateway.py │ ├── celery │ │ ├── __init__.py │ │ ├── queues.py │ │ └── settings.py │ ├── component_framework │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── base.py │ │ ├── component.py │ │ ├── constant.py │ │ ├── constants.py │ │ ├── context.py │ │ ├── library.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── run_component.py │ │ │ │ └── update_component_models.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_delete_componentmodel.py │ │ │ ├── 0003_componentmodel.py │ │ │ ├── 0004_auto_20180413_1800.py │ │ │ ├── 0005_auto_20190723_1806.py │ │ │ ├── 0006_auto_20200213_0743.py │ │ │ ├── 0007_auto_20201112_2244.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── runner.py │ │ └── test.py │ ├── components │ │ ├── __init__.py │ │ └── collections │ │ │ ├── __init__.py │ │ │ └── examples.py │ ├── conf │ │ ├── __init__.py │ │ └── default_settings.py │ ├── constants.py │ ├── contrib │ │ ├── __init__.py │ │ ├── external_plugins │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── exceptions.py │ │ │ ├── loader.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_s3source_source_dir.py │ │ │ │ └── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── fields.py │ │ │ │ ├── forms.py │ │ │ │ └── source.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── importer │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── fs.py │ │ │ │ ├── git.py │ │ │ │ ├── s3.py │ │ │ │ └── utils.py │ │ │ │ └── requirement.py │ │ ├── periodic_task │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── context.py │ │ │ ├── djcelery │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── db.py │ │ │ │ ├── managers.py │ │ │ │ ├── migrate.py │ │ │ │ ├── models.py │ │ │ │ ├── tzcrontab.py │ │ │ │ └── utils.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_auto_20190103_1918.py │ │ │ │ ├── 0003_auto_20191213_0819.py │ │ │ │ ├── 0004_auto_20191213_0828.py │ │ │ │ ├── 0005_migrate_task.py │ │ │ │ ├── 0006_change_task_ref_table.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── signals │ │ │ │ └── __init__.py │ │ │ ├── tasks.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ └── statistics │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── apps.py │ │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20180817_1212.py │ │ │ ├── 0003_auto_20180821_2015.py │ │ │ ├── 0004_instanceinpipeline_templateinpipeline.py │ │ │ ├── 0005_init_pipeline_data.py │ │ │ ├── 0006_auto_20181115_1208.py │ │ │ ├── 0007_init_pipeline_data.py │ │ │ ├── 0008_auto_20181116_1448.py │ │ │ ├── 0009_auto_20181116_1627.py │ │ │ ├── 0010_auto_20190304_1747.py │ │ │ ├── 0011_auto_20200217_0822.py │ │ │ ├── 0012_auto_20201123_1552.py │ │ │ ├── 0013_auto_20201201_1506.py │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── signals │ │ │ ├── __init__.py │ │ │ └── handlers.py │ │ │ ├── tasks.py │ │ │ └── utils.py │ ├── core │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── context.py │ │ │ ├── converter.py │ │ │ ├── expression.py │ │ │ ├── hydration.py │ │ │ ├── library.py │ │ │ ├── mako_safety.py │ │ │ ├── sandbox.py │ │ │ ├── schemas.py │ │ │ └── var.py │ │ ├── flow │ │ │ ├── __init__.py │ │ │ ├── activity │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── service_activity.py │ │ │ │ └── subprocess.py │ │ │ ├── base.py │ │ │ ├── event.py │ │ │ ├── gateway.py │ │ │ ├── io.py │ │ │ └── signals.py │ │ ├── pipeline.py │ │ └── signals │ │ │ └── __init__.py │ ├── django_signal_valve │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ └── valve.py │ ├── engine │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api.py │ │ ├── apps.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ └── function_switch.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── context.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── base_backend.py │ │ │ │ ├── mysql_backend.py │ │ │ │ └── redis_backend.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── conditional_parallel.py │ │ │ │ ├── converge_gateway.py │ │ │ │ ├── empty_start_event.py │ │ │ │ ├── endevent │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── empty_end_event.py │ │ │ │ │ └── executable_end_event.py │ │ │ │ ├── exclusive_gateway.py │ │ │ │ ├── parallel_gateway.py │ │ │ │ ├── service_activity.py │ │ │ │ └── subprocess.py │ │ │ ├── runtime.py │ │ │ └── schedule.py │ │ ├── exceptions.py │ │ ├── health │ │ │ ├── __init__.py │ │ │ └── zombie │ │ │ │ ├── __init__.py │ │ │ │ ├── doctors.py │ │ │ │ └── heal.py │ │ ├── logging.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20180109_1825.py │ │ │ ├── 0003_auto_20180717_1148.py │ │ │ ├── 0004_auto_20180717_1411.py │ │ │ ├── 0005_auto_20180717_1433.py │ │ │ ├── 0006_auto_20180717_1543.py │ │ │ ├── 0007_auto_20180717_2022.py │ │ │ ├── 0008_schedulecelerytask.py │ │ │ ├── 0009_status_error_ignorable.py │ │ │ ├── 0010_auto_20180830_1203.py │ │ │ ├── 0010_nodecelerytask.py │ │ │ ├── 0011_auto_20180830_1205.py │ │ │ ├── 0015_datasnapshot.py │ │ │ ├── 0016_auto_20181228_0345.py │ │ │ ├── 0017_auto_20190719_1010.py │ │ │ ├── 0018_auto_20190729_1041.py │ │ │ ├── 0019_auto_20190729_1044.py │ │ │ ├── 0020_pipelinemodel_priority.py │ │ │ ├── 0021_auto_20191213_0725.py │ │ │ ├── 0022_scheduleservice_multi_callback_enabled.py │ │ │ ├── 0023_status_state_refresh_at.py │ │ │ ├── 0024_auto_20200224_0308.py │ │ │ ├── 0025_multicallbackdata.py │ │ │ ├── 0026_auto_20200610_1442.py │ │ │ ├── 0027_sendfailedcelerytask.py │ │ │ ├── 0028_auto_20210812_0906.py │ │ │ └── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── data.py │ │ │ ├── fields.py │ │ │ ├── function.py │ │ │ └── nr_pickle.py │ │ ├── signals │ │ │ ├── __init__.py │ │ │ ├── dispatch.py │ │ │ └── handlers.py │ │ ├── states.py │ │ ├── tasks.py │ │ └── utils.py │ ├── eri │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── celery │ │ │ ├── __init__.py │ │ │ ├── queues.py │ │ │ ├── step.py │ │ │ └── tasks.py │ │ ├── codec.py │ │ ├── imp │ │ │ ├── __init__.py │ │ │ ├── context.py │ │ │ ├── data.py │ │ │ ├── executable_event.py │ │ │ ├── execution_history.py │ │ │ ├── hooks.py │ │ │ ├── node.py │ │ │ ├── plugin_manager.py │ │ │ ├── process.py │ │ │ ├── schedule.py │ │ │ ├── serializer.py │ │ │ ├── service.py │ │ │ ├── state.py │ │ │ ├── task.py │ │ │ └── variable.py │ │ ├── log.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20210322_0233.py │ │ │ ├── 0003_logentry_version.py │ │ │ ├── 0004_state_inner_loop_.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── runtime.py │ │ └── signals.py │ ├── exceptions.py │ ├── log │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── handlers.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ ├── 0002_auto_20180810_1054.py │ │ │ ├── 0003_logentry_history_id.py │ │ │ ├── 0004_auto_20180814_1555.py │ │ │ ├── 0005_auto_20190729_1041.py │ │ │ ├── 0006_auto_20201201_1638.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tasks.py │ │ └── views.py │ ├── logging.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── app.py │ │ │ ├── base.py │ │ │ ├── celery.py │ │ │ ├── celerybeat.py │ │ │ ├── create_atoms_app.py │ │ │ ├── create_plugins_app.py │ │ │ └── generate_config.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180109_1825.py │ │ ├── 0003_auto_20180206_1955.py │ │ ├── 0004_auto_20180516_1708.py │ │ ├── 0005_pipelineinstance_tree_info.py │ │ ├── 0006_auto_20180814_1622.py │ │ ├── 0007_templaterelationship.py │ │ ├── 0007_templateversion.py │ │ ├── 0008_auto_20180824_1115.py │ │ ├── 0011_auto_20180906_1045.py │ │ ├── 0012_templatecurrentversion.py │ │ ├── 0013_old_template_process.py │ │ ├── 0014_auto_20181127_1053.py │ │ ├── 0015_auto_20181214_1453.py │ │ ├── 0016_auto_20181220_0958.py │ │ ├── 0017_pipelinetemplate_has_subprocess.py │ │ ├── 0018_set_has_subprocess.py │ │ ├── 0019_delete_variablemodel.py │ │ ├── 0020_auto_20190906_1119.py │ │ ├── 0021_auto_20190906_1143.py │ │ ├── 0022_pipelineinstance_is_revoked.py │ │ ├── 0023_set_is_revoked.py │ │ ├── 0024_auto_20200213_0738.py │ │ ├── 0025_auto_20200813_1216.py │ │ ├── 0026_auto_20201028_1049.py │ │ ├── 0027_auto_20201123_1552.py │ │ ├── 0028_auto_20201227_1952.py │ │ ├── 0029_templaterelationship_always_use_latest.py │ │ ├── 0030_auto_20210607_1210.py │ │ ├── 0031_auto_20210624_2317.py │ │ ├── 0032_templatescheme_subprocess_scheme_relation.py │ │ ├── 0033_logentry_signal.py │ │ └── __init__.py │ ├── models.py │ ├── parser │ │ ├── __init__.py │ │ ├── context.py │ │ ├── pipeline_parser.py │ │ ├── schemas.py │ │ └── utils.py │ ├── service │ │ ├── __init__.py │ │ ├── pipeline_engine_adapter │ │ │ ├── __init__.py │ │ │ └── adapter_api.py │ │ └── task_service.py │ ├── signals │ │ ├── __init__.py │ │ └── handlers.py │ ├── templates │ │ ├── __init__.py │ │ └── create_plugins_app │ │ │ ├── __init__.py │ │ │ ├── js_file.py │ │ │ ├── plugins.py │ │ │ └── py_file.py │ ├── utils │ │ ├── __init__.py │ │ ├── boolrule │ │ │ ├── __init__.py │ │ │ └── boolrule.py │ │ ├── collections.py │ │ ├── crypt.py │ │ ├── dj.py │ │ ├── env.py │ │ ├── graph.py │ │ ├── http.py │ │ ├── imoports.py │ │ ├── mako_utils │ │ │ ├── __init__.py │ │ │ ├── checker.py │ │ │ ├── code_extract.py │ │ │ ├── exceptions.py │ │ │ └── visitors.py │ │ ├── register.py │ │ ├── uniqid.py │ │ └── utils.py │ ├── validators │ │ ├── __init__.py │ │ ├── base.py │ │ ├── connection.py │ │ ├── gateway.py │ │ ├── handlers.py │ │ ├── rules.py │ │ └── utils.py │ └── variable_framework │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── context.py │ │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── update_variable_models.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ └── signals │ │ ├── __init__.py │ │ └── handlers.py └── xadmin │ ├── .tx │ └── config │ ├── __init__.py │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── forms.py │ ├── layout.py │ ├── locale │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── id_ID │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ ├── django.po │ │ │ ├── djangojs.mo │ │ │ └── djangojs.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ ├── django.po │ │ ├── djangojs.mo │ │ └── djangojs.po │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_log.py │ ├── 0003_auto_20160715_0100.py │ └── __init__.py │ ├── models.py │ ├── plugins │ ├── __init__.py │ ├── actions.py │ ├── aggregation.py │ ├── ajax.py │ ├── auth.py │ ├── batch.py │ ├── bookmark.py │ ├── chart.py │ ├── comments.py │ ├── details.py │ ├── editable.py │ ├── export.py │ ├── filters.py │ ├── images.py │ ├── importexport.py │ ├── inline.py │ ├── language.py │ ├── layout.py │ ├── mobile.py │ ├── multiselect.py │ ├── passwords.py │ ├── portal.py │ ├── quickfilter.py │ ├── quickform.py │ ├── refresh.py │ ├── relate.py │ ├── relfield.py │ ├── sitemenu.py │ ├── sortablelist.py │ ├── themes.py │ ├── topnav.py │ ├── utils.py │ ├── wizard.py │ └── xversion.py │ ├── sites.py │ ├── static │ └── xadmin │ │ ├── component.json │ │ ├── css │ │ ├── themes │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap-xadmin.css │ │ ├── xadmin.form.css │ │ ├── xadmin.main.css │ │ ├── xadmin.mobile.css │ │ ├── xadmin.page.dashboard.css │ │ ├── xadmin.plugin.aggregation.css │ │ ├── xadmin.plugin.formset.css │ │ ├── xadmin.plugin.importexport.css │ │ ├── xadmin.plugin.quickfilter.css │ │ ├── xadmin.plugins.css │ │ ├── xadmin.responsive.css │ │ ├── xadmin.widget.editable.css │ │ └── xadmin.widget.select-transfer.css │ │ ├── js │ │ ├── xadmin.main.js │ │ ├── xadmin.page.dashboard.js │ │ ├── xadmin.page.form.js │ │ ├── xadmin.page.list.js │ │ ├── xadmin.plugin.actions.js │ │ ├── xadmin.plugin.batch.js │ │ ├── xadmin.plugin.bookmark.js │ │ ├── xadmin.plugin.charts.js │ │ ├── xadmin.plugin.details.js │ │ ├── xadmin.plugin.editable.js │ │ ├── xadmin.plugin.filters.js │ │ ├── xadmin.plugin.formset.js │ │ ├── xadmin.plugin.importexport.js │ │ ├── xadmin.plugin.portal.js │ │ ├── xadmin.plugin.quick-form.js │ │ ├── xadmin.plugin.quickfilter.js │ │ ├── xadmin.plugin.refresh.js │ │ ├── xadmin.plugin.revision.js │ │ ├── xadmin.plugin.sortablelist.js │ │ ├── xadmin.plugin.themes.js │ │ ├── xadmin.responsive.js │ │ ├── xadmin.widget.datetime.js │ │ ├── xadmin.widget.multiselect.js │ │ ├── xadmin.widget.select-transfer.js │ │ └── xadmin.widget.select.js │ │ └── vendor │ │ ├── autotype │ │ └── index.js │ │ ├── bootstrap-clockpicker │ │ ├── bootstrap-clockpicker.css │ │ ├── bootstrap-clockpicker.js │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── bootstrap-datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ └── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── bootstrap-image-gallery │ │ ├── css │ │ │ ├── bootstrap-image-gallery.css │ │ │ └── bootstrap-image-gallery.min.css │ │ ├── img │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-image-gallery.js │ │ │ └── bootstrap-image-gallery.min.js │ │ ├── bootstrap-modal │ │ ├── css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ └── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── bootstrap-multiselect │ │ ├── css │ │ │ └── bootstrap-multiselect.css │ │ └── js │ │ │ └── bootstrap-multiselect.js │ │ ├── bootstrap-timepicker │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ └── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── flot │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.aggregate.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.flot.time.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-ui │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.effect.js │ │ ├── jquery.ui.effect.min.js │ │ ├── jquery.ui.mouse.js │ │ ├── jquery.ui.mouse.min.js │ │ ├── jquery.ui.sortable.js │ │ ├── jquery.ui.sortable.min.js │ │ ├── jquery.ui.widget.js │ │ └── jquery.ui.widget.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── load-image │ │ ├── load-image.js │ │ └── load-image.min.js │ │ ├── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_de.js │ │ ├── select2_locale_en.js │ │ ├── select2_locale_es.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-hans.js │ │ └── select2x2.png │ │ ├── selectize │ │ ├── selectize.bootstrap2.css │ │ ├── selectize.bootstrap3.css │ │ ├── selectize.css │ │ ├── selectize.default.css │ │ ├── selectize.js │ │ ├── selectize.legacy.css │ │ └── selectize.min.js │ │ └── snapjs │ │ ├── snap.css │ │ ├── snap.js │ │ └── snap.min.js │ ├── templates │ └── xadmin │ │ ├── 404.html │ │ ├── 500.html │ │ ├── auth │ │ ├── password_reset │ │ │ ├── complete.html │ │ │ ├── confirm.html │ │ │ ├── done.html │ │ │ ├── email.html │ │ │ └── form.html │ │ └── user │ │ │ ├── add_form.html │ │ │ └── change_password.html │ │ ├── base.html │ │ ├── base_site.html │ │ ├── blocks │ │ ├── comm.top.setlang.html │ │ ├── comm.top.theme.html │ │ ├── comm.top.topnav.html │ │ ├── modal_list.left_navbar.quickfilter.html │ │ ├── model_form.before_fieldsets.wizard.html │ │ ├── model_form.submit_line.wizard.html │ │ ├── model_list.nav_form.search_form.html │ │ ├── model_list.nav_menu.bookmarks.html │ │ ├── model_list.nav_menu.filters.html │ │ ├── model_list.results_bottom.actions.html │ │ ├── model_list.results_top.charts.html │ │ ├── model_list.results_top.date_hierarchy.html │ │ ├── model_list.top_toolbar.exports.html │ │ ├── model_list.top_toolbar.importexport.export.html │ │ ├── model_list.top_toolbar.importexport.import.html │ │ ├── model_list.top_toolbar.layouts.html │ │ ├── model_list.top_toolbar.refresh.html │ │ └── model_list.top_toolbar.saveorder.html │ │ ├── edit_inline │ │ ├── accordion.html │ │ ├── base.html │ │ ├── blank.html │ │ ├── one.html │ │ ├── stacked.html │ │ ├── tab.html │ │ └── tabular.html │ │ ├── filters │ │ ├── char.html │ │ ├── checklist.html │ │ ├── date.html │ │ ├── fk_search.html │ │ ├── list.html │ │ ├── number.html │ │ ├── quickfilter.html │ │ └── rel.html │ │ ├── forms │ │ └── transfer.html │ │ ├── grids │ │ └── thumbnails.html │ │ ├── import_export │ │ ├── export_action.html │ │ └── import.html │ │ ├── includes │ │ ├── box.html │ │ ├── pagination.html │ │ ├── sitemenu_accordion.html │ │ ├── sitemenu_default.html │ │ ├── submit_line.html │ │ ├── toggle_back.html │ │ └── toggle_menu.html │ │ ├── layout │ │ ├── field_value.html │ │ ├── field_value_td.html │ │ ├── fieldset.html │ │ ├── input_group.html │ │ └── td-field.html │ │ ├── views │ │ ├── app_index.html │ │ ├── batch_change_form.html │ │ ├── dashboard.html │ │ ├── form.html │ │ ├── invalid_setup.html │ │ ├── logged_out.html │ │ ├── login.html │ │ ├── model_dashboard.html │ │ ├── model_delete_confirm.html │ │ ├── model_delete_selected_confirm.html │ │ ├── model_detail.html │ │ ├── model_form.html │ │ ├── model_history.html │ │ ├── model_list.html │ │ ├── quick_detail.html │ │ ├── quick_form.html │ │ ├── recover_form.html │ │ ├── recover_list.html │ │ ├── revision_diff.html │ │ └── revision_form.html │ │ └── widgets │ │ ├── addform.html │ │ ├── base.html │ │ ├── chart.html │ │ ├── list.html │ │ └── qbutton.html │ ├── templatetags │ ├── __init__.py │ └── xadmin_tags.py │ ├── util.py │ ├── vendors.py │ ├── views │ ├── __init__.py │ ├── base.py │ ├── dashboard.py │ ├── delete.py │ ├── detail.py │ ├── edit.py │ ├── form.py │ ├── list.py │ └── website.py │ └── widgets.py ├── local.yml ├── logo.png ├── manage.py ├── requirements.txt ├── requirements ├── base.txt ├── local.txt └── prod.txt ├── static ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── custom_plugins │ └── plugins.js ├── dist │ ├── css │ │ ├── app.css │ │ └── app.css.gz │ ├── fonts │ │ ├── fontawesome-webfont.674f50d.eot │ │ ├── fontawesome-webfont.b06871f.ttf │ │ ├── fontawesome-webfont.fee66e7.woff │ │ ├── ionicons.143146f.woff2 │ │ ├── ionicons.99ac330.woff │ │ └── ionicons.d535a25.ttf │ ├── img │ │ ├── StreamStudio.png │ │ ├── execute.png │ │ ├── flow_1x.png │ │ ├── fontawesome-webfont.912ec66.svg │ │ ├── full_screen_16.png │ │ ├── iconcool.7d2a9d4.svg │ │ ├── ionicons.a2c4a26.svg │ │ ├── job.png │ │ ├── jobFlow.png │ │ ├── jobFlow_16.png │ │ ├── jobFlow_16_dark.png │ │ ├── jobFlow_22.png │ │ ├── jobFlow_22_dark.png │ │ ├── jobFlow_28.png │ │ ├── jobFlow_28_dark.png │ │ ├── jobFlow_32.png │ │ ├── jobFlow_32_dark.png │ │ ├── jobFlow_dark.png │ │ ├── job_2x.png │ │ ├── red_cross.png │ │ ├── system.png │ │ ├── system_16.png │ │ ├── system_16_dark.png │ │ ├── system_28.png │ │ ├── system_28_dark.png │ │ ├── system_blue.svg │ │ ├── system_design.png │ │ └── system_new.png │ ├── index.html │ └── js │ │ ├── 0.513c10360c0a1f63bab8.js │ │ ├── 0.513c10360c0a1f63bab8.js.gz │ │ ├── 1.af7873865f287b1243ee.js │ │ ├── 1.af7873865f287b1243ee.js.gz │ │ ├── 10.01f512e937034130808f.js │ │ ├── 10.01f512e937034130808f.js.gz │ │ ├── 11.a4241632e00f2ab31c29.js │ │ ├── 11.a4241632e00f2ab31c29.js.gz │ │ ├── 12.cafe98b40b52642abd7c.js │ │ ├── 12.cafe98b40b52642abd7c.js.gz │ │ ├── 13.8eed6bae9fd966051780.js │ │ ├── 14.509e639cec85ad3b26a4.js │ │ ├── 14.509e639cec85ad3b26a4.js.gz │ │ ├── 15.119038af311046ebba19.js │ │ ├── 16.e1bac3a635fbc54d3961.js │ │ ├── 16.e1bac3a635fbc54d3961.js.gz │ │ ├── 17.ad5c639841d760373cec.js │ │ ├── 18.f13f58c66a0c14788ad1.js │ │ ├── 19.b764bb2189e8229d37df.js │ │ ├── 19.b764bb2189e8229d37df.js.gz │ │ ├── 2.b01e0d90e7421ce28733.js │ │ ├── 2.b01e0d90e7421ce28733.js.gz │ │ ├── 20.e8131cd74ec6afd92599.js │ │ ├── 21.0cd4e6e0214e99a5f2da.js │ │ ├── 22.3e79522fbaee929e526a.js │ │ ├── 23.c3893f14408644dcf07b.js │ │ ├── 23.c3893f14408644dcf07b.js.gz │ │ ├── 24.729d9b1b369259ce8671.js │ │ ├── 25.b8e917f7cf7f7803fc6e.js │ │ ├── 26.bc2257317d09426ae87e.js │ │ ├── 27.df2fabb52d7a3412d6eb.js │ │ ├── 28.46099726ca4bbd9452e0.js │ │ ├── 29.59be91b2968a8093ea9d.js │ │ ├── 3.242c44ecdee370d87605.js │ │ ├── 3.242c44ecdee370d87605.js.gz │ │ ├── 30.cf505bd9a2c63f5a6e56.js │ │ ├── 31.13790fbb0887ee56b577.js │ │ ├── 32.9473f3bf4fc3dd40ecd6.js │ │ ├── 33.86f6b1b5634c3a68fd3f.js │ │ ├── 34.a82bcea5f12d06c67d3e.js │ │ ├── 35.67633ad1346983172a19.js │ │ ├── 36.a01e0e6a357cda8a91e5.js │ │ ├── 37.89cda460dd232990ad65.js │ │ ├── 38.35d603de29f51c86c8fc.js │ │ ├── 4.228bcd5490c08160d146.js │ │ ├── 4.228bcd5490c08160d146.js.gz │ │ ├── 41.6bcfad15eeb2cb8e1be3.js │ │ ├── 42.33bd7c0490db31ed3ee4.js │ │ ├── 43.0e141c76903b21943315.js │ │ ├── 44.974d8e199837c85b4ea8.js │ │ ├── 45.510e8421f54bec312429.js │ │ ├── 46.2a389b0a9e8783603ce2.js │ │ ├── 47.ad4079fff9355962752e.js │ │ ├── 48.b2824fd9a51fdb7a4e51.js │ │ ├── 48.b2824fd9a51fdb7a4e51.js.gz │ │ ├── 49.379837ba8d1ea4ee5331.js │ │ ├── 5.8ab29dfaf1544fc13366.js │ │ ├── 5.8ab29dfaf1544fc13366.js.gz │ │ ├── 50.670e2cde4be3d42aa2ee.js │ │ ├── 51.fb8ab24dde034b1dfe67.js │ │ ├── 52.8115f82b1553b759875e.js │ │ ├── 53.d35ddc215db83fa7f1a7.js │ │ ├── 6.1ea6d9f57e83cec049ee.js │ │ ├── 6.1ea6d9f57e83cec049ee.js.gz │ │ ├── 7.37d2158c73784b54bd15.js │ │ ├── 7.37d2158c73784b54bd15.js.gz │ │ ├── 8.7a9dcb211508aa89a983.js │ │ ├── 8.7a9dcb211508aa89a983.js.gz │ │ ├── 9.f901d80b116ef03d9c5f.js │ │ ├── 9.f901d80b116ef03d9c5f.js.gz │ │ ├── app.8f41a7ea25b8a23e5591.js │ │ ├── app.8f41a7ea25b8a23e5591.js.gz │ │ ├── manifest.12c4b3cb0a5b91353992.js │ │ ├── vendor.4dbbb785a82c8efeb5ae.js │ │ └── vendor.4dbbb785a82c8efeb5ae.js.gz ├── rest_framework │ ├── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-tweaks.css │ │ ├── bootstrap.min.css │ │ ├── default.css │ │ ├── font-awesome-4.0.3.css │ │ └── prettify.css │ ├── docs │ │ ├── css │ │ │ ├── base.css │ │ │ ├── highlight.css │ │ │ └── jquery.json-view.min.css │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── grid.png │ │ └── js │ │ │ ├── api.js │ │ │ ├── highlight.pack.js │ │ │ └── jquery.json-view.min.js │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── grid.png │ └── js │ │ ├── ajax-form.js │ │ ├── bootstrap.min.js │ │ ├── coreapi-0.1.1.js │ │ ├── csrf.js │ │ ├── default.js │ │ ├── jquery-3.3.1.min.js │ │ └── prettify-min.js └── xadmin │ ├── component.json │ ├── css │ ├── themes │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ └── bootstrap-xadmin.css │ ├── xadmin.form.css │ ├── xadmin.main.css │ ├── xadmin.mobile.css │ ├── xadmin.page.dashboard.css │ ├── xadmin.plugin.aggregation.css │ ├── xadmin.plugin.formset.css │ ├── xadmin.plugin.importexport.css │ ├── xadmin.plugin.quickfilter.css │ ├── xadmin.plugins.css │ ├── xadmin.responsive.css │ ├── xadmin.widget.editable.css │ └── xadmin.widget.select-transfer.css │ ├── js │ ├── xadmin.main.js │ ├── xadmin.page.dashboard.js │ ├── xadmin.page.form.js │ ├── xadmin.page.list.js │ ├── xadmin.plugin.actions.js │ ├── xadmin.plugin.batch.js │ ├── xadmin.plugin.bookmark.js │ ├── xadmin.plugin.charts.js │ ├── xadmin.plugin.details.js │ ├── xadmin.plugin.editable.js │ ├── xadmin.plugin.filters.js │ ├── xadmin.plugin.formset.js │ ├── xadmin.plugin.importexport.js │ ├── xadmin.plugin.portal.js │ ├── xadmin.plugin.quick-form.js │ ├── xadmin.plugin.quickfilter.js │ ├── xadmin.plugin.refresh.js │ ├── xadmin.plugin.revision.js │ ├── xadmin.plugin.sortablelist.js │ ├── xadmin.plugin.themes.js │ ├── xadmin.responsive.js │ ├── xadmin.widget.datetime.js │ ├── xadmin.widget.multiselect.js │ ├── xadmin.widget.select-transfer.js │ └── xadmin.widget.select.js │ └── vendor │ ├── autotype │ └── index.js │ ├── bootstrap-clockpicker │ ├── bootstrap-clockpicker.css │ ├── bootstrap-clockpicker.js │ ├── bootstrap-clockpicker.min.css │ └── bootstrap-clockpicker.min.js │ ├── bootstrap-datepicker │ ├── css │ │ └── datepicker.css │ └── js │ │ ├── bootstrap-datepicker.js │ │ └── locales │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.uk.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js │ ├── bootstrap-image-gallery │ ├── css │ │ ├── bootstrap-image-gallery.css │ │ └── bootstrap-image-gallery.min.css │ ├── img │ │ └── loading.gif │ └── js │ │ ├── bootstrap-image-gallery.js │ │ └── bootstrap-image-gallery.min.js │ ├── bootstrap-modal │ ├── css │ │ └── bootstrap-modal.css │ ├── img │ │ └── ajax-loader.gif │ └── js │ │ ├── bootstrap-modal.js │ │ └── bootstrap-modalmanager.js │ ├── bootstrap-multiselect │ ├── css │ │ └── bootstrap-multiselect.css │ └── js │ │ └── bootstrap-multiselect.js │ ├── bootstrap-timepicker │ ├── css │ │ ├── bootstrap-timepicker.css │ │ └── bootstrap-timepicker.min.css │ └── js │ │ ├── bootstrap-timepicker.js │ │ └── bootstrap-timepicker.min.js │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── flot │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.flot.aggregate.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ └── jquery.flot.time.js │ ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── jquery-ui │ ├── jquery.ui.core.js │ ├── jquery.ui.core.min.js │ ├── jquery.ui.effect.js │ ├── jquery.ui.effect.min.js │ ├── jquery.ui.mouse.js │ ├── jquery.ui.mouse.min.js │ ├── jquery.ui.sortable.js │ ├── jquery.ui.sortable.min.js │ ├── jquery.ui.widget.js │ └── jquery.ui.widget.min.js │ ├── jquery │ ├── jquery.js │ └── jquery.min.js │ ├── load-image │ ├── load-image.js │ └── load-image.min.js │ ├── select2 │ ├── select2-spinner.gif │ ├── select2.css │ ├── select2.js │ ├── select2.min.js │ ├── select2.png │ ├── select2_locale_de.js │ ├── select2_locale_en.js │ ├── select2_locale_es.js │ ├── select2_locale_eu.js │ ├── select2_locale_fr.js │ ├── select2_locale_hr.js │ ├── select2_locale_hu.js │ ├── select2_locale_it.js │ ├── select2_locale_nl.js │ ├── select2_locale_pt-BR.js │ ├── select2_locale_pt-PT.js │ ├── select2_locale_ro.js │ ├── select2_locale_ru.js │ ├── select2_locale_sk.js │ ├── select2_locale_sv.js │ ├── select2_locale_tr.js │ ├── select2_locale_ua.js │ ├── select2_locale_zh-CN.js │ ├── select2_locale_zh-hans.js │ └── select2x2.png │ ├── selectize │ ├── selectize.bootstrap2.css │ ├── selectize.bootstrap3.css │ ├── selectize.css │ ├── selectize.default.css │ ├── selectize.js │ ├── selectize.legacy.css │ └── selectize.min.js │ └── snapjs │ ├── snap.css │ ├── snap.js │ └── snap.min.js ├── supervisor.conf └── web ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── .stylelintrc.js ├── README.md ├── build ├── build.js ├── check-versions.js ├── logo.png ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── debug.log ├── docs ├── install.md └── use.md ├── index.html ├── index.template.html ├── package-lock.json ├── package.json ├── src ├── App.vue ├── api │ ├── apiUrl │ │ ├── history │ │ │ ├── node_history.js │ │ │ └── process_history.js │ │ ├── login │ │ │ └── login.js │ │ ├── monitor │ │ │ ├── node_run.js │ │ │ └── process_run.js │ │ ├── report │ │ │ └── process_report.js │ │ ├── system │ │ │ ├── alarm_center.js │ │ │ ├── audit_log.js │ │ │ ├── category.js │ │ │ ├── home.js │ │ │ ├── setting.js │ │ │ ├── show_table.js │ │ │ └── user.js │ │ ├── task │ │ │ └── task.js │ │ └── template │ │ │ ├── calendar.js │ │ │ ├── content.js │ │ │ ├── node.js │ │ │ ├── process.js │ │ │ ├── station.js │ │ │ ├── station_state.js │ │ │ └── var_table.js │ ├── axiosconfig │ │ ├── Interceptor.js │ │ └── axiosconfig.js │ └── index.js ├── assets │ ├── ECharts │ │ └── dataTool.min.js │ ├── base │ │ ├── css │ │ │ ├── base.scss │ │ │ ├── color.scss │ │ │ ├── headMenu.scss │ │ │ ├── leftMenu.scss │ │ │ ├── other.scss │ │ │ └── unify.scss │ │ ├── font │ │ │ └── bkicon │ │ │ │ ├── Read Me.txt │ │ │ │ ├── demo-files │ │ │ │ ├── demo.css │ │ │ │ └── demo.js │ │ │ │ ├── demo.html │ │ │ │ ├── fonts │ │ │ │ ├── icomoon.eot │ │ │ │ ├── icomoon.svg │ │ │ │ ├── icomoon.ttf │ │ │ │ └── icomoon.woff │ │ │ │ ├── selection.json │ │ │ │ └── style.css │ │ └── img │ │ │ ├── StreamStudio.png │ │ │ ├── StreamStudio2.png │ │ │ ├── back_forward_16.svg │ │ │ ├── base_information_32.svg │ │ │ ├── branch_28.svg │ │ │ ├── branch_32.svg │ │ │ ├── branch_40.svg │ │ │ ├── branch_48.svg │ │ │ ├── conditionCGW.png │ │ │ ├── conditionGW.png │ │ │ ├── conditionP.png │ │ │ ├── execute.png │ │ │ ├── flow_1x.png │ │ │ ├── full_screen_16.png │ │ │ ├── full_screen_16.svg │ │ │ ├── job.png │ │ │ ├── jobFlow.png │ │ │ ├── jobFlow_16.png │ │ │ ├── jobFlow_16.svg │ │ │ ├── jobFlow_16_dark.png │ │ │ ├── jobFlow_16_dark.svg │ │ │ ├── jobFlow_22.png │ │ │ ├── jobFlow_22.svg │ │ │ ├── jobFlow_22_dark.png │ │ │ ├── jobFlow_22_dark.svg │ │ │ ├── jobFlow_28.png │ │ │ ├── jobFlow_28_dark.png │ │ │ ├── jobFlow_32.png │ │ │ ├── jobFlow_32_dark.png │ │ │ ├── jobFlow_dark.png │ │ │ ├── job_2x.png │ │ │ ├── job_dark_16_new.svg │ │ │ ├── photo.jpg │ │ │ ├── red_cross.png │ │ │ ├── run-batch.png │ │ │ ├── save_16.svg │ │ │ ├── system.png │ │ │ ├── system_16.png │ │ │ ├── system_16.svg │ │ │ ├── system_16_dark.png │ │ │ ├── system_16_dark.svg │ │ │ ├── system_28.png │ │ │ ├── system_28.svg │ │ │ ├── system_28_dark.png │ │ │ ├── system_28_dark.svg │ │ │ ├── system_blue.svg │ │ │ ├── system_design.png │ │ │ ├── system_new.png │ │ │ ├── table.svg │ │ │ ├── task-example.png │ │ │ └── task_format_32.svg │ ├── custom │ │ └── css │ │ │ └── common.scss │ ├── custom_icon │ │ ├── demo.css │ │ ├── demo_index.html │ │ ├── iconfont.css │ │ ├── iconfont.js │ │ ├── iconfont.json │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── index.js │ └── js │ │ ├── convert-expression │ │ ├── asterisk-to-range-conversion.js │ │ ├── index.js │ │ ├── month-names-conversion.js │ │ ├── range-conversion.js │ │ ├── step-values-conversion.js │ │ └── week-day-names-conversion.js │ │ ├── cron-validator.js │ │ └── pattern-validation.js ├── common │ ├── date.js │ ├── form │ │ ├── ComponentExport.js │ │ ├── ComponentMinxins.js │ │ ├── ComponentsConfigExport.js │ │ ├── FormComponentConfig.vue │ │ ├── FormRender.vue │ │ ├── components │ │ │ ├── AmountInput.vue │ │ │ ├── DateTime.vue │ │ │ ├── DateTimeRange.vue │ │ │ ├── DeptPicker.vue │ │ │ ├── Description.vue │ │ │ ├── DictMap.vue │ │ │ ├── FileUpload.vue │ │ │ ├── ImageUpload.vue │ │ │ ├── Location.vue │ │ │ ├── MoneyInput.vue │ │ │ ├── MultipleSelect.vue │ │ │ ├── NumberInput.vue │ │ │ ├── SelectInput.vue │ │ │ ├── SignPannel.vue │ │ │ ├── SpanLayout.vue │ │ │ ├── TableList.vue │ │ │ ├── TextInput.vue │ │ │ ├── TextareaInput.vue │ │ │ └── UserPicker.vue │ │ └── config │ │ │ ├── AmountInputConfig.vue │ │ │ ├── DateTimeConfig.vue │ │ │ ├── DateTimeRangeConfig.vue │ │ │ ├── DescriptionConfig.vue │ │ │ ├── DictMapConfig.vue │ │ │ ├── FileUploadConfig.vue │ │ │ ├── ImageUploadConfig.vue │ │ │ ├── LocationConfig.vue │ │ │ ├── MoneyInputConfig.vue │ │ │ ├── MultipleSelectConfig.vue │ │ │ ├── NumberInputConfig.vue │ │ │ ├── OrgPickerConfig.vue │ │ │ ├── SelectInputConfig.vue │ │ │ ├── TableListConfig.vue │ │ │ ├── TextInputConfig.vue │ │ │ └── TextareaInputConfig.vue │ ├── message.js │ ├── store.js │ ├── util.js │ └── validate.js ├── components │ ├── FullYearCalendar │ │ ├── calendar.vue │ │ ├── css │ │ │ └── datePacker.css │ │ ├── js │ │ │ └── fullYearPicker.js │ │ ├── new_calendar.vue │ │ ├── old_calendar.vue │ │ └── work_holiday_compute.js │ ├── base │ │ └── magicMenu │ │ │ ├── container.vue │ │ │ ├── header.vue │ │ │ ├── index.vue │ │ │ └── leftMenu.vue │ ├── graph │ │ ├── behavior │ │ │ ├── active-edge.js │ │ │ ├── drag-node.js │ │ │ ├── exports.js │ │ │ ├── hover-edge.js │ │ │ ├── hover-node.js │ │ │ └── select-node.js │ │ ├── graph.js │ │ ├── register-factory.js │ │ └── shape │ │ │ ├── defaultStyle.js │ │ │ ├── edges │ │ │ ├── base-edge.js │ │ │ └── item-event.js │ │ │ ├── exports.js │ │ │ ├── items │ │ │ ├── anchor-event.js │ │ │ ├── base-node.js │ │ │ ├── colorList.js │ │ │ └── item-event.js │ │ │ └── node.js │ ├── index.js │ ├── iview │ │ ├── drawer.css │ │ ├── index.js │ │ └── magic-box.js │ ├── monacoEditor │ │ └── index.vue │ └── time_crontab │ │ └── crontab.vue ├── constants │ └── index.js ├── fiter │ ├── index.js │ └── validator │ │ └── validator.js ├── main.js ├── promission.js ├── router │ ├── _import_development.js │ ├── _import_production.js │ └── index.js ├── views │ ├── agent_mgmt │ │ ├── agent_dialog.vue │ │ ├── agent_list.vue │ │ └── agent_monitor.vue │ ├── alarm_center │ │ └── alarm_list.vue │ ├── home │ │ └── home.vue │ ├── job_flow_mgmt │ │ ├── add_calendar_mgmt.vue │ │ ├── calendar_mgmt.vue │ │ ├── import_file.vue │ │ ├── job_flow_list.vue │ │ ├── multiple_job_flow.vue │ │ ├── new_add_calendar_mgmt.vue │ │ ├── new_job_flow.vue │ │ ├── old_add_calendar_mgmt.vue │ │ ├── single_job_flow.vue │ │ ├── single_job_flow │ │ │ ├── addModeDialog.vue │ │ │ ├── baseInfo.vue │ │ │ ├── baseNode.js │ │ │ ├── edgeInfo.vue │ │ │ ├── headerPanel.vue │ │ │ ├── nodeInfo.vue │ │ │ ├── options.js │ │ │ ├── preFlowCanvas.vue │ │ │ ├── preFlowRunCanvas.vue │ │ │ ├── taskMake.vue │ │ │ └── varSlider.vue │ │ ├── variable_change.vue │ │ └── variable_mgmt.vue │ ├── job_mgmt │ │ ├── job_dialog.vue │ │ ├── job_list.vue │ │ ├── multiple_job.vue │ │ ├── new_job.vue │ │ ├── scan_file.vue │ │ └── single_job.vue │ ├── job_monitor │ │ ├── history │ │ │ ├── job_flow_detail.vue │ │ │ ├── job_flow_detail │ │ │ │ ├── nodeInfo.vue │ │ │ │ ├── statusList.js │ │ │ │ └── statusList.vue │ │ │ ├── job_flow_view_history.vue │ │ │ ├── job_history.vue │ │ │ ├── job_view_detail.vue │ │ │ └── job_view_history.vue │ │ └── monitor │ │ │ ├── job_detail.vue │ │ │ ├── job_flow_view.vue │ │ │ ├── job_flow_view_detail │ │ │ ├── nodeInfo.vue │ │ │ ├── statusList.js │ │ │ └── statusList.vue │ │ │ ├── job_monitor.vue │ │ │ ├── job_view.vue │ │ │ └── view_detail.vue │ ├── job_monitor_large_screen │ │ ├── FormDesignRender.vue │ │ ├── large_screen.vue │ │ ├── statusList.js │ │ ├── statusList.vue │ │ ├── topMenu.vue │ │ └── tree.vue │ ├── login │ │ └── login.vue │ ├── report │ │ ├── job_flow_view_report.vue │ │ ├── job_view_report.vue │ │ └── report.vue │ ├── system │ │ ├── log.vue │ │ ├── log_mange.vue │ │ ├── sys_setup.vue │ │ ├── system_class_manage.vue │ │ ├── system_class_manage │ │ │ └── systemDialog.vue │ │ ├── user_and_permissions.vue │ │ └── user_and_permissions │ │ │ ├── addUserDialog.vue │ │ │ └── userInfo.vue │ └── task_mgmt │ │ ├── task_create.vue │ │ └── task_list.vue └── vuex │ ├── actions.js │ ├── getters.js │ ├── index.js │ └── module │ ├── common.js │ ├── history.js │ ├── monitor.js │ └── permission.js └── static ├── css └── .gitkeep ├── img ├── .gitkeep ├── StreamStudio.png ├── execute.png ├── flow_1x.png ├── full_screen_16.png ├── job.png ├── jobFlow.png ├── jobFlow_16.png ├── jobFlow_16_dark.png ├── jobFlow_22.png ├── jobFlow_22_dark.png ├── jobFlow_28.png ├── jobFlow_28_dark.png ├── jobFlow_32.png ├── jobFlow_32_dark.png ├── jobFlow_dark.png ├── job_2x.png ├── red_cross.png ├── system.png ├── system_16.png ├── system_16_dark.png ├── system_28.png ├── system_28_dark.png ├── system_blue.svg ├── system_design.png └── system_new.png └── js └── .gitkeep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/README.md -------------------------------------------------------------------------------- /WechatIMG176.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/WechatIMG176.jpeg -------------------------------------------------------------------------------- /applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/__init__.py -------------------------------------------------------------------------------- /applications/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/__init__.py -------------------------------------------------------------------------------- /applications/flow/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/admin.py -------------------------------------------------------------------------------- /applications/flow/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/adminx.py -------------------------------------------------------------------------------- /applications/flow/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/apps.py -------------------------------------------------------------------------------- /applications/flow/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/constants.py -------------------------------------------------------------------------------- /applications/flow/end_event_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/end_event_expand.py -------------------------------------------------------------------------------- /applications/flow/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/filters.py -------------------------------------------------------------------------------- /applications/flow/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/handlers.py -------------------------------------------------------------------------------- /applications/flow/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/migrations/0001_initial.py -------------------------------------------------------------------------------- /applications/flow/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/flow/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/models.py -------------------------------------------------------------------------------- /applications/flow/plugin_code/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/flow/plugin_code/plugin_29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/plugin_code/plugin_29.py -------------------------------------------------------------------------------- /applications/flow/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/serializers.py -------------------------------------------------------------------------------- /applications/flow/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/tests.py -------------------------------------------------------------------------------- /applications/flow/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/urls.py -------------------------------------------------------------------------------- /applications/flow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/utils.py -------------------------------------------------------------------------------- /applications/flow/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/flow/views.py -------------------------------------------------------------------------------- /applications/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/admin.py -------------------------------------------------------------------------------- /applications/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/apps.py -------------------------------------------------------------------------------- /applications/home/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/models.py -------------------------------------------------------------------------------- /applications/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/tests.py -------------------------------------------------------------------------------- /applications/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/urls.py -------------------------------------------------------------------------------- /applications/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/home/views.py -------------------------------------------------------------------------------- /applications/task/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/task/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/admin.py -------------------------------------------------------------------------------- /applications/task/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/apps.py -------------------------------------------------------------------------------- /applications/task/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/filters.py -------------------------------------------------------------------------------- /applications/task/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/migrations/0001_initial.py -------------------------------------------------------------------------------- /applications/task/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/task/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/models.py -------------------------------------------------------------------------------- /applications/task/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/serializers.py -------------------------------------------------------------------------------- /applications/task/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/task/services/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/services/base.py -------------------------------------------------------------------------------- /applications/task/services/clock_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/services/clock_task.py -------------------------------------------------------------------------------- /applications/task/services/cycle_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/services/cycle_task.py -------------------------------------------------------------------------------- /applications/task/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/tasks.py -------------------------------------------------------------------------------- /applications/task/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/tests.py -------------------------------------------------------------------------------- /applications/task/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/urls.py -------------------------------------------------------------------------------- /applications/task/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/utils.py -------------------------------------------------------------------------------- /applications/task/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/task/views.py -------------------------------------------------------------------------------- /applications/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/admin.py -------------------------------------------------------------------------------- /applications/user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/apps.py -------------------------------------------------------------------------------- /applications/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/models.py -------------------------------------------------------------------------------- /applications/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/tests.py -------------------------------------------------------------------------------- /applications/user/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/urls.py -------------------------------------------------------------------------------- /applications/user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/user/views.py -------------------------------------------------------------------------------- /applications/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/utils/dag_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/dag_helper.py -------------------------------------------------------------------------------- /applications/utils/json_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/json_helper.py -------------------------------------------------------------------------------- /applications/utils/notify_way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/notify_way.py -------------------------------------------------------------------------------- /applications/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/timer.py -------------------------------------------------------------------------------- /applications/utils/uuid_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/uuid_helper.py -------------------------------------------------------------------------------- /applications/utils/var_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/applications/utils/var_helper.py -------------------------------------------------------------------------------- /component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /component/drf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /component/drf/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/authentication.py -------------------------------------------------------------------------------- /component/drf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/constants.py -------------------------------------------------------------------------------- /component/drf/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/filters.py -------------------------------------------------------------------------------- /component/drf/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/generics.py -------------------------------------------------------------------------------- /component/drf/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/mapping.py -------------------------------------------------------------------------------- /component/drf/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/middleware.py -------------------------------------------------------------------------------- /component/drf/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/mixins.py -------------------------------------------------------------------------------- /component/drf/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/pagination.py -------------------------------------------------------------------------------- /component/drf/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/permissions.py -------------------------------------------------------------------------------- /component/drf/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/renderers.py -------------------------------------------------------------------------------- /component/drf/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/drf/viewsets.py -------------------------------------------------------------------------------- /component/mysql_pool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/mysql_pool/__init__.py -------------------------------------------------------------------------------- /component/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/utils/__init__.py -------------------------------------------------------------------------------- /component/utils/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/utils/basic.py -------------------------------------------------------------------------------- /component/utils/drf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/utils/drf.py -------------------------------------------------------------------------------- /component/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/component/utils/exceptions.py -------------------------------------------------------------------------------- /compose/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/compose/local/django/Dockerfile -------------------------------------------------------------------------------- /compose/local/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/compose/local/django/celery/beat/start -------------------------------------------------------------------------------- /compose/local/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/compose/local/django/celery/flower/start -------------------------------------------------------------------------------- /compose/local/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/compose/local/django/celery/worker/start -------------------------------------------------------------------------------- /compose/local/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/compose/local/django/start -------------------------------------------------------------------------------- /custom_plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_plugins/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/custom_plugins/apps.py -------------------------------------------------------------------------------- /custom_plugins/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/custom_plugins/components/__init__.py -------------------------------------------------------------------------------- /custom_plugins/components/collections/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/custom_plugins/components/collections/base.py -------------------------------------------------------------------------------- /custom_plugins/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /custom_plugins/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/custom_plugins/tests/__init__.py -------------------------------------------------------------------------------- /custom_plugins/tests/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/custom_plugins/tests/components/__init__.py -------------------------------------------------------------------------------- /dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dev.md -------------------------------------------------------------------------------- /dj_flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/__init__.py -------------------------------------------------------------------------------- /dj_flow/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/celery_app.py -------------------------------------------------------------------------------- /dj_flow/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/settings.py -------------------------------------------------------------------------------- /dj_flow/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/urls.py -------------------------------------------------------------------------------- /dj_flow/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/views.py -------------------------------------------------------------------------------- /dj_flow/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/dj_flow/wsgi.py -------------------------------------------------------------------------------- /editor.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/editor.worker.js -------------------------------------------------------------------------------- /editor.worker.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/editor.worker.js.gz -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/img.png -------------------------------------------------------------------------------- /img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/img_1.png -------------------------------------------------------------------------------- /img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/img_2.png -------------------------------------------------------------------------------- /img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/img_3.png -------------------------------------------------------------------------------- /img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/img_4.png -------------------------------------------------------------------------------- /json.worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/json.worker.js -------------------------------------------------------------------------------- /json.worker.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/json.worker.js.gz -------------------------------------------------------------------------------- /lib/bamboo_engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/__version__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/api.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/builder.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/activity.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/base.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/data.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/event.py -------------------------------------------------------------------------------- /lib/bamboo_engine/builder/flow/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/builder/flow/gateway.py -------------------------------------------------------------------------------- /lib/bamboo_engine/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/config.py -------------------------------------------------------------------------------- /lib/bamboo_engine/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/context.py -------------------------------------------------------------------------------- /lib/bamboo_engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/engine.py -------------------------------------------------------------------------------- /lib/bamboo_engine/eri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/eri/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/eri/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/eri/interfaces.py -------------------------------------------------------------------------------- /lib/bamboo_engine/eri/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/eri/models.py -------------------------------------------------------------------------------- /lib/bamboo_engine/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/exceptions.py -------------------------------------------------------------------------------- /lib/bamboo_engine/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/handler.py -------------------------------------------------------------------------------- /lib/bamboo_engine/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/handlers/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/handlers/empty_end_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/handlers/empty_end_event.py -------------------------------------------------------------------------------- /lib/bamboo_engine/handlers/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/handlers/subprocess.py -------------------------------------------------------------------------------- /lib/bamboo_engine/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/local.py -------------------------------------------------------------------------------- /lib/bamboo_engine/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/metrics.py -------------------------------------------------------------------------------- /lib/bamboo_engine/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/states.py -------------------------------------------------------------------------------- /lib/bamboo_engine/template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/template/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/template/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/template/sandbox.py -------------------------------------------------------------------------------- /lib/bamboo_engine/template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/template/template.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/boolrule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/boolrule/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/boolrule/boolrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/boolrule/boolrule.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/collections.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/constants.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/graph.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/host.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/mako_safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/mako_safety.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/mako_utils/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/mako_utils/checker.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/object.py -------------------------------------------------------------------------------- /lib/bamboo_engine/utils/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/utils/string.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/__init__.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/api.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/connection.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/gateway.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/rules.py -------------------------------------------------------------------------------- /lib/bamboo_engine/validator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/bamboo_engine/validator/utils.py -------------------------------------------------------------------------------- /lib/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/admin.py -------------------------------------------------------------------------------- /lib/pipeline/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/apps.py -------------------------------------------------------------------------------- /lib/pipeline/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/builder/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/builder.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/activity.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/base.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/data.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/event.py -------------------------------------------------------------------------------- /lib/pipeline/builder/flow/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/builder/flow/gateway.py -------------------------------------------------------------------------------- /lib/pipeline/celery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/celery/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/celery/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/celery/queues.py -------------------------------------------------------------------------------- /lib/pipeline/celery/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/celery/settings.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/admin.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/apps.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/base.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/component.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/constant.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/constants.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/context.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/library.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/models.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/runner.py -------------------------------------------------------------------------------- /lib/pipeline/component_framework/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/component_framework/test.py -------------------------------------------------------------------------------- /lib/pipeline/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/components/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/conf/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/conf/default_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/conf/default_settings.py -------------------------------------------------------------------------------- /lib/pipeline/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/constants.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/external_plugins/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/external_plugins/apps.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/admin.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/apps.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/context.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/models.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/tasks.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/tests.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/periodic_task/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/periodic_task/views.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/admin.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/apps.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/models.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/tasks.py -------------------------------------------------------------------------------- /lib/pipeline/contrib/statistics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/contrib/statistics/utils.py -------------------------------------------------------------------------------- /lib/pipeline/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/core/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/constants.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/base.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/context.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/converter.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/expression.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/hydration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/hydration.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/library.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/mako_safety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/mako_safety.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/sandbox.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/schemas.py -------------------------------------------------------------------------------- /lib/pipeline/core/data/var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/data/var.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/activity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/activity/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/activity/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/activity/base.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/activity/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/activity/subprocess.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/base.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/event.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/gateway.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/io.py -------------------------------------------------------------------------------- /lib/pipeline/core/flow/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/flow/signals.py -------------------------------------------------------------------------------- /lib/pipeline/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/pipeline.py -------------------------------------------------------------------------------- /lib/pipeline/core/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/core/signals/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/django_signal_valve/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/django_signal_valve/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/django_signal_valve/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/django_signal_valve/admin.py -------------------------------------------------------------------------------- /lib/pipeline/django_signal_valve/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/django_signal_valve/models.py -------------------------------------------------------------------------------- /lib/pipeline/django_signal_valve/valve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/django_signal_valve/valve.py -------------------------------------------------------------------------------- /lib/pipeline/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/admin.py -------------------------------------------------------------------------------- /lib/pipeline/engine/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/api.py -------------------------------------------------------------------------------- /lib/pipeline/engine/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/apps.py -------------------------------------------------------------------------------- /lib/pipeline/engine/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/conf/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/api.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/context.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/data/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/data/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/data/api.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/handlers/base.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/runtime.py -------------------------------------------------------------------------------- /lib/pipeline/engine/core/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/core/schedule.py -------------------------------------------------------------------------------- /lib/pipeline/engine/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/exceptions.py -------------------------------------------------------------------------------- /lib/pipeline/engine/health/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/health/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/health/zombie/heal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/health/zombie/heal.py -------------------------------------------------------------------------------- /lib/pipeline/engine/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/logging.py -------------------------------------------------------------------------------- /lib/pipeline/engine/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/migrations/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/core.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/data.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/fields.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/function.py -------------------------------------------------------------------------------- /lib/pipeline/engine/models/nr_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/models/nr_pickle.py -------------------------------------------------------------------------------- /lib/pipeline/engine/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/signals/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/engine/signals/dispatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/signals/dispatch.py -------------------------------------------------------------------------------- /lib/pipeline/engine/signals/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/signals/handlers.py -------------------------------------------------------------------------------- /lib/pipeline/engine/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/states.py -------------------------------------------------------------------------------- /lib/pipeline/engine/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/tasks.py -------------------------------------------------------------------------------- /lib/pipeline/engine/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/engine/utils.py -------------------------------------------------------------------------------- /lib/pipeline/eri/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/eri/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/admin.py -------------------------------------------------------------------------------- /lib/pipeline/eri/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/apps.py -------------------------------------------------------------------------------- /lib/pipeline/eri/celery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/celery/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/eri/celery/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/celery/queues.py -------------------------------------------------------------------------------- /lib/pipeline/eri/celery/step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/celery/step.py -------------------------------------------------------------------------------- /lib/pipeline/eri/celery/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/celery/tasks.py -------------------------------------------------------------------------------- /lib/pipeline/eri/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/codec.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/context.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/data.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/executable_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/executable_event.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/execution_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/execution_history.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/hooks.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/node.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/plugin_manager.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/process.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/schedule.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/serializer.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/service.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/state.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/task.py -------------------------------------------------------------------------------- /lib/pipeline/eri/imp/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/imp/variable.py -------------------------------------------------------------------------------- /lib/pipeline/eri/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/log.py -------------------------------------------------------------------------------- /lib/pipeline/eri/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/pipeline/eri/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/models.py -------------------------------------------------------------------------------- /lib/pipeline/eri/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/runtime.py -------------------------------------------------------------------------------- /lib/pipeline/eri/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/eri/signals.py -------------------------------------------------------------------------------- /lib/pipeline/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/exceptions.py -------------------------------------------------------------------------------- /lib/pipeline/log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/log/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/admin.py -------------------------------------------------------------------------------- /lib/pipeline/log/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/apps.py -------------------------------------------------------------------------------- /lib/pipeline/log/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/handlers.py -------------------------------------------------------------------------------- /lib/pipeline/log/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/migrations/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/log/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/models.py -------------------------------------------------------------------------------- /lib/pipeline/log/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/tasks.py -------------------------------------------------------------------------------- /lib/pipeline/log/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/log/views.py -------------------------------------------------------------------------------- /lib/pipeline/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/logging.py -------------------------------------------------------------------------------- /lib/pipeline/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/management/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/management/commands/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/management/commands/app.py -------------------------------------------------------------------------------- /lib/pipeline/management/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/management/commands/base.py -------------------------------------------------------------------------------- /lib/pipeline/management/commands/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/management/commands/celery.py -------------------------------------------------------------------------------- /lib/pipeline/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/migrations/0001_initial.py -------------------------------------------------------------------------------- /lib/pipeline/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/migrations/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/models.py -------------------------------------------------------------------------------- /lib/pipeline/parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/parser/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/parser/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/parser/context.py -------------------------------------------------------------------------------- /lib/pipeline/parser/pipeline_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/parser/pipeline_parser.py -------------------------------------------------------------------------------- /lib/pipeline/parser/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/parser/schemas.py -------------------------------------------------------------------------------- /lib/pipeline/parser/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/parser/utils.py -------------------------------------------------------------------------------- /lib/pipeline/service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/service/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/service/task_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/service/task_service.py -------------------------------------------------------------------------------- /lib/pipeline/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/signals/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/signals/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/signals/handlers.py -------------------------------------------------------------------------------- /lib/pipeline/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/templates/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/utils/boolrule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/boolrule/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/utils/boolrule/boolrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/boolrule/boolrule.py -------------------------------------------------------------------------------- /lib/pipeline/utils/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/collections.py -------------------------------------------------------------------------------- /lib/pipeline/utils/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/crypt.py -------------------------------------------------------------------------------- /lib/pipeline/utils/dj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/dj.py -------------------------------------------------------------------------------- /lib/pipeline/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/env.py -------------------------------------------------------------------------------- /lib/pipeline/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/graph.py -------------------------------------------------------------------------------- /lib/pipeline/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/http.py -------------------------------------------------------------------------------- /lib/pipeline/utils/imoports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/imoports.py -------------------------------------------------------------------------------- /lib/pipeline/utils/mako_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/mako_utils/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/utils/mako_utils/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/mako_utils/checker.py -------------------------------------------------------------------------------- /lib/pipeline/utils/mako_utils/visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/mako_utils/visitors.py -------------------------------------------------------------------------------- /lib/pipeline/utils/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/register.py -------------------------------------------------------------------------------- /lib/pipeline/utils/uniqid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/uniqid.py -------------------------------------------------------------------------------- /lib/pipeline/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/utils/utils.py -------------------------------------------------------------------------------- /lib/pipeline/validators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/__init__.py -------------------------------------------------------------------------------- /lib/pipeline/validators/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/base.py -------------------------------------------------------------------------------- /lib/pipeline/validators/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/connection.py -------------------------------------------------------------------------------- /lib/pipeline/validators/gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/gateway.py -------------------------------------------------------------------------------- /lib/pipeline/validators/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/handlers.py -------------------------------------------------------------------------------- /lib/pipeline/validators/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/rules.py -------------------------------------------------------------------------------- /lib/pipeline/validators/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/validators/utils.py -------------------------------------------------------------------------------- /lib/pipeline/variable_framework/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/variable_framework/admin.py -------------------------------------------------------------------------------- /lib/pipeline/variable_framework/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/variable_framework/apps.py -------------------------------------------------------------------------------- /lib/pipeline/variable_framework/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/variable_framework/context.py -------------------------------------------------------------------------------- /lib/pipeline/variable_framework/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/pipeline/variable_framework/models.py -------------------------------------------------------------------------------- /lib/xadmin/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/.tx/config -------------------------------------------------------------------------------- /lib/xadmin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/__init__.py -------------------------------------------------------------------------------- /lib/xadmin/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/adminx.py -------------------------------------------------------------------------------- /lib/xadmin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/apps.py -------------------------------------------------------------------------------- /lib/xadmin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/filters.py -------------------------------------------------------------------------------- /lib/xadmin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/forms.py -------------------------------------------------------------------------------- /lib/xadmin/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/layout.py -------------------------------------------------------------------------------- /lib/xadmin/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lib/xadmin/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lib/xadmin/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lib/xadmin/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lib/xadmin/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lib/xadmin/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lib/xadmin/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lib/xadmin/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lib/xadmin/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /lib/xadmin/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /lib/xadmin/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/migrations/0001_initial.py -------------------------------------------------------------------------------- /lib/xadmin/migrations/0002_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/migrations/0002_log.py -------------------------------------------------------------------------------- /lib/xadmin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/xadmin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/models.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/__init__.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/actions.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/aggregation.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/ajax.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/auth.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/batch.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/bookmark.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/chart.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/comments.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/details.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/editable.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/export.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/filters.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/images.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/importexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/importexport.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/inline.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/language.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/layout.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/mobile.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/multiselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/multiselect.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/passwords.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/portal.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/quickfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/quickfilter.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/quickform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/quickform.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/refresh.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/relate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/relate.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/relfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/relfield.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/sitemenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/sitemenu.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/sortablelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/sortablelist.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/themes.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/topnav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/topnav.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/utils.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/wizard.py -------------------------------------------------------------------------------- /lib/xadmin/plugins/xversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/plugins/xversion.py -------------------------------------------------------------------------------- /lib/xadmin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/sites.py -------------------------------------------------------------------------------- /lib/xadmin/static/xadmin/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/static/xadmin/component.json -------------------------------------------------------------------------------- /lib/xadmin/static/xadmin/js/xadmin.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/static/xadmin/js/xadmin.main.js -------------------------------------------------------------------------------- /lib/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/xadmin/templates/xadmin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/templates/xadmin/404.html -------------------------------------------------------------------------------- /lib/xadmin/templates/xadmin/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/templates/xadmin/500.html -------------------------------------------------------------------------------- /lib/xadmin/templates/xadmin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/templates/xadmin/base.html -------------------------------------------------------------------------------- /lib/xadmin/templates/xadmin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/templates/xadmin/base_site.html -------------------------------------------------------------------------------- /lib/xadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/xadmin/templatetags/xadmin_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/templatetags/xadmin_tags.py -------------------------------------------------------------------------------- /lib/xadmin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/util.py -------------------------------------------------------------------------------- /lib/xadmin/vendors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/vendors.py -------------------------------------------------------------------------------- /lib/xadmin/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/__init__.py -------------------------------------------------------------------------------- /lib/xadmin/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/base.py -------------------------------------------------------------------------------- /lib/xadmin/views/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/dashboard.py -------------------------------------------------------------------------------- /lib/xadmin/views/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/delete.py -------------------------------------------------------------------------------- /lib/xadmin/views/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/detail.py -------------------------------------------------------------------------------- /lib/xadmin/views/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/edit.py -------------------------------------------------------------------------------- /lib/xadmin/views/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/form.py -------------------------------------------------------------------------------- /lib/xadmin/views/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/list.py -------------------------------------------------------------------------------- /lib/xadmin/views/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/views/website.py -------------------------------------------------------------------------------- /lib/xadmin/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/lib/xadmin/widgets.py -------------------------------------------------------------------------------- /local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/local.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/logo.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | flower==0.9.7 -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | gevent==22.10.2 3 | gunicorn==20.1.0 -------------------------------------------------------------------------------- /static/admin/css/autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/autocomplete.css -------------------------------------------------------------------------------- /static/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/base.css -------------------------------------------------------------------------------- /static/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/changelists.css -------------------------------------------------------------------------------- /static/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/dashboard.css -------------------------------------------------------------------------------- /static/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/fonts.css -------------------------------------------------------------------------------- /static/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/forms.css -------------------------------------------------------------------------------- /static/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/login.css -------------------------------------------------------------------------------- /static/admin/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/responsive.css -------------------------------------------------------------------------------- /static/admin/css/responsive_rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/responsive_rtl.css -------------------------------------------------------------------------------- /static/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/rtl.css -------------------------------------------------------------------------------- /static/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/css/widgets.css -------------------------------------------------------------------------------- /static/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/fonts/README.txt -------------------------------------------------------------------------------- /static/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/LICENSE -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/README.txt -------------------------------------------------------------------------------- /static/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-viewlink.svg -------------------------------------------------------------------------------- /static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/search.svg -------------------------------------------------------------------------------- /static/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/actions.js -------------------------------------------------------------------------------- /static/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/actions.min.js -------------------------------------------------------------------------------- /static/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static/admin/js/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/autocomplete.js -------------------------------------------------------------------------------- /static/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/calendar.js -------------------------------------------------------------------------------- /static/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/cancel.js -------------------------------------------------------------------------------- /static/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/change_form.js -------------------------------------------------------------------------------- /static/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/collapse.js -------------------------------------------------------------------------------- /static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/core.js -------------------------------------------------------------------------------- /static/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/inlines.js -------------------------------------------------------------------------------- /static/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/popup_response.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/timeparse.js -------------------------------------------------------------------------------- /static/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/urlify.js -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/jquery/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/LICENSE.md -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ar.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/az.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/bg.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ca.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/cs.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/da.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/de.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/el.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/en.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/es.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/et.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/eu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/fa.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/fi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/fr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/gl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/he.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/hi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/hr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/hu.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/id.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/is.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/it.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ja.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/km.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ko.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/lt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/lv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/mk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ms.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/nb.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/nl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/pl.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/pt.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ro.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/ru.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/sk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/sr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/sv.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/th.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/tr.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/uk.js -------------------------------------------------------------------------------- /static/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/select2/i18n/vi.js -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/xregexp/LICENSE.txt -------------------------------------------------------------------------------- /static/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static/custom_plugins/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/custom_plugins/plugins.js -------------------------------------------------------------------------------- /static/dist/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/css/app.css -------------------------------------------------------------------------------- /static/dist/css/app.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/css/app.css.gz -------------------------------------------------------------------------------- /static/dist/fonts/ionicons.143146f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/fonts/ionicons.143146f.woff2 -------------------------------------------------------------------------------- /static/dist/fonts/ionicons.99ac330.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/fonts/ionicons.99ac330.woff -------------------------------------------------------------------------------- /static/dist/fonts/ionicons.d535a25.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/fonts/ionicons.d535a25.ttf -------------------------------------------------------------------------------- /static/dist/img/StreamStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/StreamStudio.png -------------------------------------------------------------------------------- /static/dist/img/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/execute.png -------------------------------------------------------------------------------- /static/dist/img/flow_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/flow_1x.png -------------------------------------------------------------------------------- /static/dist/img/full_screen_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/full_screen_16.png -------------------------------------------------------------------------------- /static/dist/img/iconcool.7d2a9d4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/iconcool.7d2a9d4.svg -------------------------------------------------------------------------------- /static/dist/img/ionicons.a2c4a26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/ionicons.a2c4a26.svg -------------------------------------------------------------------------------- /static/dist/img/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/job.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_16.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_16_dark.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_22.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_22_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_22_dark.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_28.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_28_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_28_dark.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_32.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_32_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_32_dark.png -------------------------------------------------------------------------------- /static/dist/img/jobFlow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/jobFlow_dark.png -------------------------------------------------------------------------------- /static/dist/img/job_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/job_2x.png -------------------------------------------------------------------------------- /static/dist/img/red_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/red_cross.png -------------------------------------------------------------------------------- /static/dist/img/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system.png -------------------------------------------------------------------------------- /static/dist/img/system_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_16.png -------------------------------------------------------------------------------- /static/dist/img/system_16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_16_dark.png -------------------------------------------------------------------------------- /static/dist/img/system_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_28.png -------------------------------------------------------------------------------- /static/dist/img/system_28_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_28_dark.png -------------------------------------------------------------------------------- /static/dist/img/system_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_blue.svg -------------------------------------------------------------------------------- /static/dist/img/system_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_design.png -------------------------------------------------------------------------------- /static/dist/img/system_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/img/system_new.png -------------------------------------------------------------------------------- /static/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/index.html -------------------------------------------------------------------------------- /static/dist/js/0.513c10360c0a1f63bab8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/0.513c10360c0a1f63bab8.js -------------------------------------------------------------------------------- /static/dist/js/1.af7873865f287b1243ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/1.af7873865f287b1243ee.js -------------------------------------------------------------------------------- /static/dist/js/10.01f512e937034130808f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/10.01f512e937034130808f.js -------------------------------------------------------------------------------- /static/dist/js/11.a4241632e00f2ab31c29.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/11.a4241632e00f2ab31c29.js -------------------------------------------------------------------------------- /static/dist/js/12.cafe98b40b52642abd7c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/12.cafe98b40b52642abd7c.js -------------------------------------------------------------------------------- /static/dist/js/13.8eed6bae9fd966051780.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/13.8eed6bae9fd966051780.js -------------------------------------------------------------------------------- /static/dist/js/14.509e639cec85ad3b26a4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/14.509e639cec85ad3b26a4.js -------------------------------------------------------------------------------- /static/dist/js/15.119038af311046ebba19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/15.119038af311046ebba19.js -------------------------------------------------------------------------------- /static/dist/js/16.e1bac3a635fbc54d3961.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/16.e1bac3a635fbc54d3961.js -------------------------------------------------------------------------------- /static/dist/js/17.ad5c639841d760373cec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/17.ad5c639841d760373cec.js -------------------------------------------------------------------------------- /static/dist/js/18.f13f58c66a0c14788ad1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/18.f13f58c66a0c14788ad1.js -------------------------------------------------------------------------------- /static/dist/js/19.b764bb2189e8229d37df.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/19.b764bb2189e8229d37df.js -------------------------------------------------------------------------------- /static/dist/js/2.b01e0d90e7421ce28733.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/2.b01e0d90e7421ce28733.js -------------------------------------------------------------------------------- /static/dist/js/20.e8131cd74ec6afd92599.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/20.e8131cd74ec6afd92599.js -------------------------------------------------------------------------------- /static/dist/js/21.0cd4e6e0214e99a5f2da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/21.0cd4e6e0214e99a5f2da.js -------------------------------------------------------------------------------- /static/dist/js/22.3e79522fbaee929e526a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/22.3e79522fbaee929e526a.js -------------------------------------------------------------------------------- /static/dist/js/23.c3893f14408644dcf07b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/23.c3893f14408644dcf07b.js -------------------------------------------------------------------------------- /static/dist/js/24.729d9b1b369259ce8671.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/24.729d9b1b369259ce8671.js -------------------------------------------------------------------------------- /static/dist/js/25.b8e917f7cf7f7803fc6e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/25.b8e917f7cf7f7803fc6e.js -------------------------------------------------------------------------------- /static/dist/js/26.bc2257317d09426ae87e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/26.bc2257317d09426ae87e.js -------------------------------------------------------------------------------- /static/dist/js/27.df2fabb52d7a3412d6eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/27.df2fabb52d7a3412d6eb.js -------------------------------------------------------------------------------- /static/dist/js/28.46099726ca4bbd9452e0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/28.46099726ca4bbd9452e0.js -------------------------------------------------------------------------------- /static/dist/js/29.59be91b2968a8093ea9d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/29.59be91b2968a8093ea9d.js -------------------------------------------------------------------------------- /static/dist/js/3.242c44ecdee370d87605.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/3.242c44ecdee370d87605.js -------------------------------------------------------------------------------- /static/dist/js/30.cf505bd9a2c63f5a6e56.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/30.cf505bd9a2c63f5a6e56.js -------------------------------------------------------------------------------- /static/dist/js/31.13790fbb0887ee56b577.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/31.13790fbb0887ee56b577.js -------------------------------------------------------------------------------- /static/dist/js/32.9473f3bf4fc3dd40ecd6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/32.9473f3bf4fc3dd40ecd6.js -------------------------------------------------------------------------------- /static/dist/js/33.86f6b1b5634c3a68fd3f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/33.86f6b1b5634c3a68fd3f.js -------------------------------------------------------------------------------- /static/dist/js/34.a82bcea5f12d06c67d3e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/34.a82bcea5f12d06c67d3e.js -------------------------------------------------------------------------------- /static/dist/js/35.67633ad1346983172a19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/35.67633ad1346983172a19.js -------------------------------------------------------------------------------- /static/dist/js/36.a01e0e6a357cda8a91e5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/36.a01e0e6a357cda8a91e5.js -------------------------------------------------------------------------------- /static/dist/js/37.89cda460dd232990ad65.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/37.89cda460dd232990ad65.js -------------------------------------------------------------------------------- /static/dist/js/38.35d603de29f51c86c8fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/38.35d603de29f51c86c8fc.js -------------------------------------------------------------------------------- /static/dist/js/4.228bcd5490c08160d146.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/4.228bcd5490c08160d146.js -------------------------------------------------------------------------------- /static/dist/js/41.6bcfad15eeb2cb8e1be3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/41.6bcfad15eeb2cb8e1be3.js -------------------------------------------------------------------------------- /static/dist/js/42.33bd7c0490db31ed3ee4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/42.33bd7c0490db31ed3ee4.js -------------------------------------------------------------------------------- /static/dist/js/43.0e141c76903b21943315.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/43.0e141c76903b21943315.js -------------------------------------------------------------------------------- /static/dist/js/44.974d8e199837c85b4ea8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/44.974d8e199837c85b4ea8.js -------------------------------------------------------------------------------- /static/dist/js/45.510e8421f54bec312429.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/45.510e8421f54bec312429.js -------------------------------------------------------------------------------- /static/dist/js/46.2a389b0a9e8783603ce2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/46.2a389b0a9e8783603ce2.js -------------------------------------------------------------------------------- /static/dist/js/47.ad4079fff9355962752e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/47.ad4079fff9355962752e.js -------------------------------------------------------------------------------- /static/dist/js/48.b2824fd9a51fdb7a4e51.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/48.b2824fd9a51fdb7a4e51.js -------------------------------------------------------------------------------- /static/dist/js/49.379837ba8d1ea4ee5331.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/49.379837ba8d1ea4ee5331.js -------------------------------------------------------------------------------- /static/dist/js/5.8ab29dfaf1544fc13366.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/5.8ab29dfaf1544fc13366.js -------------------------------------------------------------------------------- /static/dist/js/50.670e2cde4be3d42aa2ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/50.670e2cde4be3d42aa2ee.js -------------------------------------------------------------------------------- /static/dist/js/51.fb8ab24dde034b1dfe67.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/51.fb8ab24dde034b1dfe67.js -------------------------------------------------------------------------------- /static/dist/js/52.8115f82b1553b759875e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/52.8115f82b1553b759875e.js -------------------------------------------------------------------------------- /static/dist/js/53.d35ddc215db83fa7f1a7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/53.d35ddc215db83fa7f1a7.js -------------------------------------------------------------------------------- /static/dist/js/6.1ea6d9f57e83cec049ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/6.1ea6d9f57e83cec049ee.js -------------------------------------------------------------------------------- /static/dist/js/7.37d2158c73784b54bd15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/7.37d2158c73784b54bd15.js -------------------------------------------------------------------------------- /static/dist/js/8.7a9dcb211508aa89a983.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/8.7a9dcb211508aa89a983.js -------------------------------------------------------------------------------- /static/dist/js/9.f901d80b116ef03d9c5f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/9.f901d80b116ef03d9c5f.js -------------------------------------------------------------------------------- /static/dist/js/app.8f41a7ea25b8a23e5591.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/dist/js/app.8f41a7ea25b8a23e5591.js -------------------------------------------------------------------------------- /static/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/css/default.css -------------------------------------------------------------------------------- /static/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /static/rest_framework/docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/docs/css/base.css -------------------------------------------------------------------------------- /static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /static/rest_framework/docs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/docs/js/api.js -------------------------------------------------------------------------------- /static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /static/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /static/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/rest_framework/js/coreapi-0.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/coreapi-0.1.1.js -------------------------------------------------------------------------------- /static/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /static/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/default.js -------------------------------------------------------------------------------- /static/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /static/xadmin/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/component.json -------------------------------------------------------------------------------- /static/xadmin/css/xadmin.form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/css/xadmin.form.css -------------------------------------------------------------------------------- /static/xadmin/css/xadmin.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/css/xadmin.main.css -------------------------------------------------------------------------------- /static/xadmin/css/xadmin.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/css/xadmin.mobile.css -------------------------------------------------------------------------------- /static/xadmin/css/xadmin.plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/css/xadmin.plugins.css -------------------------------------------------------------------------------- /static/xadmin/css/xadmin.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/css/xadmin.responsive.css -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.main.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.page.dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.page.dashboard.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.page.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.page.form.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.page.list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.page.list.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.actions.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.batch.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.bookmark.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.charts.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.details.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.editable.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.filters.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.formset.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.portal.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.refresh.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.revision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.revision.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.plugin.themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.plugin.themes.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.responsive.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.widget.datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.widget.datetime.js -------------------------------------------------------------------------------- /static/xadmin/js/xadmin.widget.select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/js/xadmin.widget.select.js -------------------------------------------------------------------------------- /static/xadmin/vendor/autotype/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/autotype/index.js -------------------------------------------------------------------------------- /static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/xadmin/vendor/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/flot/excanvas.js -------------------------------------------------------------------------------- /static/xadmin/vendor/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/flot/excanvas.min.js -------------------------------------------------------------------------------- /static/xadmin/vendor/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/flot/jquery.flot.js -------------------------------------------------------------------------------- /static/xadmin/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/xadmin/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/xadmin/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/select2/select2.css -------------------------------------------------------------------------------- /static/xadmin/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/select2/select2.js -------------------------------------------------------------------------------- /static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /static/xadmin/vendor/snapjs/snap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/snapjs/snap.css -------------------------------------------------------------------------------- /static/xadmin/vendor/snapjs/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/snapjs/snap.js -------------------------------------------------------------------------------- /static/xadmin/vendor/snapjs/snap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/static/xadmin/vendor/snapjs/snap.min.js -------------------------------------------------------------------------------- /supervisor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/supervisor.conf -------------------------------------------------------------------------------- /web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.babelrc -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.eslintignore -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.postcssrc.js -------------------------------------------------------------------------------- /web/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/.stylelintrc.js -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/README.md -------------------------------------------------------------------------------- /web/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/build.js -------------------------------------------------------------------------------- /web/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/check-versions.js -------------------------------------------------------------------------------- /web/build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/logo.png -------------------------------------------------------------------------------- /web/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/utils.js -------------------------------------------------------------------------------- /web/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/vue-loader.conf.js -------------------------------------------------------------------------------- /web/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/webpack.base.conf.js -------------------------------------------------------------------------------- /web/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /web/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /web/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/config/dev.env.js -------------------------------------------------------------------------------- /web/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/config/index.js -------------------------------------------------------------------------------- /web/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/config/prod.env.js -------------------------------------------------------------------------------- /web/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/debug.log -------------------------------------------------------------------------------- /web/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/docs/install.md -------------------------------------------------------------------------------- /web/docs/use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/docs/use.md -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/index.html -------------------------------------------------------------------------------- /web/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/index.template.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/api/apiUrl/history/node_history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/history/node_history.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/login/login.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/monitor/node_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/monitor/node_run.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/monitor/process_run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/monitor/process_run.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/alarm_center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/alarm_center.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/audit_log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/audit_log.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/category.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/home.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/setting.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/show_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/show_table.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/system/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/system/user.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/task/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/task/task.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/calendar.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/content.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/node.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/process.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/station.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/station.js -------------------------------------------------------------------------------- /web/src/api/apiUrl/template/var_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/apiUrl/template/var_table.js -------------------------------------------------------------------------------- /web/src/api/axiosconfig/Interceptor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/axiosconfig/Interceptor.js -------------------------------------------------------------------------------- /web/src/api/axiosconfig/axiosconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/axiosconfig/axiosconfig.js -------------------------------------------------------------------------------- /web/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/api/index.js -------------------------------------------------------------------------------- /web/src/assets/ECharts/dataTool.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/ECharts/dataTool.min.js -------------------------------------------------------------------------------- /web/src/assets/base/css/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/base.scss -------------------------------------------------------------------------------- /web/src/assets/base/css/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/color.scss -------------------------------------------------------------------------------- /web/src/assets/base/css/headMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/headMenu.scss -------------------------------------------------------------------------------- /web/src/assets/base/css/leftMenu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/leftMenu.scss -------------------------------------------------------------------------------- /web/src/assets/base/css/other.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/other.scss -------------------------------------------------------------------------------- /web/src/assets/base/css/unify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/css/unify.scss -------------------------------------------------------------------------------- /web/src/assets/base/font/bkicon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/font/bkicon/demo.html -------------------------------------------------------------------------------- /web/src/assets/base/font/bkicon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/font/bkicon/style.css -------------------------------------------------------------------------------- /web/src/assets/base/img/StreamStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/StreamStudio.png -------------------------------------------------------------------------------- /web/src/assets/base/img/StreamStudio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/StreamStudio2.png -------------------------------------------------------------------------------- /web/src/assets/base/img/branch_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/branch_28.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/branch_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/branch_32.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/branch_40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/branch_40.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/branch_48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/branch_48.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/conditionCGW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/conditionCGW.png -------------------------------------------------------------------------------- /web/src/assets/base/img/conditionGW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/conditionGW.png -------------------------------------------------------------------------------- /web/src/assets/base/img/conditionP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/conditionP.png -------------------------------------------------------------------------------- /web/src/assets/base/img/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/execute.png -------------------------------------------------------------------------------- /web/src/assets/base/img/flow_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/flow_1x.png -------------------------------------------------------------------------------- /web/src/assets/base/img/full_screen_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/full_screen_16.png -------------------------------------------------------------------------------- /web/src/assets/base/img/full_screen_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/full_screen_16.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/job.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_16.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_16.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_22.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_22.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_28.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_32.png -------------------------------------------------------------------------------- /web/src/assets/base/img/jobFlow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/jobFlow_dark.png -------------------------------------------------------------------------------- /web/src/assets/base/img/job_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/job_2x.png -------------------------------------------------------------------------------- /web/src/assets/base/img/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/photo.jpg -------------------------------------------------------------------------------- /web/src/assets/base/img/red_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/red_cross.png -------------------------------------------------------------------------------- /web/src/assets/base/img/run-batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/run-batch.png -------------------------------------------------------------------------------- /web/src/assets/base/img/save_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/save_16.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_16.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_16.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system_16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_16_dark.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_16_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_16_dark.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_28.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_28.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_28.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system_28_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_28_dark.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_28_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_28_dark.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_blue.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/system_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_design.png -------------------------------------------------------------------------------- /web/src/assets/base/img/system_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/system_new.png -------------------------------------------------------------------------------- /web/src/assets/base/img/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/table.svg -------------------------------------------------------------------------------- /web/src/assets/base/img/task-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/task-example.png -------------------------------------------------------------------------------- /web/src/assets/base/img/task_format_32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/base/img/task_format_32.svg -------------------------------------------------------------------------------- /web/src/assets/custom/css/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom/css/common.scss -------------------------------------------------------------------------------- /web/src/assets/custom_icon/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/demo.css -------------------------------------------------------------------------------- /web/src/assets/custom_icon/demo_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/demo_index.html -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.css -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.js -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.json -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.ttf -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.woff -------------------------------------------------------------------------------- /web/src/assets/custom_icon/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/custom_icon/iconfont.woff2 -------------------------------------------------------------------------------- /web/src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/index.js -------------------------------------------------------------------------------- /web/src/assets/js/cron-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/js/cron-validator.js -------------------------------------------------------------------------------- /web/src/assets/js/pattern-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/assets/js/pattern-validation.js -------------------------------------------------------------------------------- /web/src/common/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/date.js -------------------------------------------------------------------------------- /web/src/common/form/ComponentExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/form/ComponentExport.js -------------------------------------------------------------------------------- /web/src/common/form/ComponentMinxins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/form/ComponentMinxins.js -------------------------------------------------------------------------------- /web/src/common/form/FormRender.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/form/FormRender.vue -------------------------------------------------------------------------------- /web/src/common/form/components/DictMap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/form/components/DictMap.vue -------------------------------------------------------------------------------- /web/src/common/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/message.js -------------------------------------------------------------------------------- /web/src/common/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/store.js -------------------------------------------------------------------------------- /web/src/common/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/util.js -------------------------------------------------------------------------------- /web/src/common/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/common/validate.js -------------------------------------------------------------------------------- /web/src/components/graph/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/graph/graph.js -------------------------------------------------------------------------------- /web/src/components/graph/shape/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/graph/shape/exports.js -------------------------------------------------------------------------------- /web/src/components/graph/shape/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/graph/shape/node.js -------------------------------------------------------------------------------- /web/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/index.js -------------------------------------------------------------------------------- /web/src/components/iview/drawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/iview/drawer.css -------------------------------------------------------------------------------- /web/src/components/iview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/iview/index.js -------------------------------------------------------------------------------- /web/src/components/iview/magic-box.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/components/monacoEditor/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/components/monacoEditor/index.vue -------------------------------------------------------------------------------- /web/src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/constants/index.js -------------------------------------------------------------------------------- /web/src/fiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/fiter/index.js -------------------------------------------------------------------------------- /web/src/fiter/validator/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/fiter/validator/validator.js -------------------------------------------------------------------------------- /web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/main.js -------------------------------------------------------------------------------- /web/src/promission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/promission.js -------------------------------------------------------------------------------- /web/src/router/_import_development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/router/_import_development.js -------------------------------------------------------------------------------- /web/src/router/_import_production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/router/_import_production.js -------------------------------------------------------------------------------- /web/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/router/index.js -------------------------------------------------------------------------------- /web/src/views/agent_mgmt/agent_dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/agent_mgmt/agent_dialog.vue -------------------------------------------------------------------------------- /web/src/views/agent_mgmt/agent_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/agent_mgmt/agent_list.vue -------------------------------------------------------------------------------- /web/src/views/agent_mgmt/agent_monitor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/agent_mgmt/agent_monitor.vue -------------------------------------------------------------------------------- /web/src/views/alarm_center/alarm_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/alarm_center/alarm_list.vue -------------------------------------------------------------------------------- /web/src/views/home/home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/home/home.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/job_dialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/job_dialog.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/job_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/job_list.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/multiple_job.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/multiple_job.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/new_job.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/new_job.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/scan_file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/scan_file.vue -------------------------------------------------------------------------------- /web/src/views/job_mgmt/single_job.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/job_mgmt/single_job.vue -------------------------------------------------------------------------------- /web/src/views/login/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/login/login.vue -------------------------------------------------------------------------------- /web/src/views/report/job_view_report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/report/job_view_report.vue -------------------------------------------------------------------------------- /web/src/views/report/report.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/report/report.vue -------------------------------------------------------------------------------- /web/src/views/system/log.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/system/log.vue -------------------------------------------------------------------------------- /web/src/views/system/log_mange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/system/log_mange.vue -------------------------------------------------------------------------------- /web/src/views/system/sys_setup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/system/sys_setup.vue -------------------------------------------------------------------------------- /web/src/views/task_mgmt/task_create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/task_mgmt/task_create.vue -------------------------------------------------------------------------------- /web/src/views/task_mgmt/task_list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/views/task_mgmt/task_list.vue -------------------------------------------------------------------------------- /web/src/vuex/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/actions.js -------------------------------------------------------------------------------- /web/src/vuex/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/getters.js -------------------------------------------------------------------------------- /web/src/vuex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/index.js -------------------------------------------------------------------------------- /web/src/vuex/module/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/module/common.js -------------------------------------------------------------------------------- /web/src/vuex/module/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/module/history.js -------------------------------------------------------------------------------- /web/src/vuex/module/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/module/monitor.js -------------------------------------------------------------------------------- /web/src/vuex/module/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/src/vuex/module/permission.js -------------------------------------------------------------------------------- /web/static/css/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/css/.gitkeep -------------------------------------------------------------------------------- /web/static/img/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/.gitkeep -------------------------------------------------------------------------------- /web/static/img/StreamStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/StreamStudio.png -------------------------------------------------------------------------------- /web/static/img/execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/execute.png -------------------------------------------------------------------------------- /web/static/img/flow_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/flow_1x.png -------------------------------------------------------------------------------- /web/static/img/full_screen_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/full_screen_16.png -------------------------------------------------------------------------------- /web/static/img/job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/job.png -------------------------------------------------------------------------------- /web/static/img/jobFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_16.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_16_dark.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_22.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_22_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_22_dark.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_28.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_28_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_28_dark.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_32.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_32_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_32_dark.png -------------------------------------------------------------------------------- /web/static/img/jobFlow_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/jobFlow_dark.png -------------------------------------------------------------------------------- /web/static/img/job_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/job_2x.png -------------------------------------------------------------------------------- /web/static/img/red_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/red_cross.png -------------------------------------------------------------------------------- /web/static/img/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system.png -------------------------------------------------------------------------------- /web/static/img/system_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_16.png -------------------------------------------------------------------------------- /web/static/img/system_16_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_16_dark.png -------------------------------------------------------------------------------- /web/static/img/system_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_28.png -------------------------------------------------------------------------------- /web/static/img/system_28_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_28_dark.png -------------------------------------------------------------------------------- /web/static/img/system_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_blue.svg -------------------------------------------------------------------------------- /web/static/img/system_design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_design.png -------------------------------------------------------------------------------- /web/static/img/system_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/img/system_new.png -------------------------------------------------------------------------------- /web/static/js/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xhongc/streamflow/HEAD/web/static/js/.gitkeep --------------------------------------------------------------------------------