├── cp2 ├── ControlPanel │ ├── ControlPanel │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── templatetags │ │ │ └── filters.py │ │ ├── wsgi.py │ │ └── utils.py │ ├── static_cp │ │ ├── images │ │ │ ├── favicon.ico │ │ │ ├── logout.icns │ │ │ ├── logout.png │ │ │ ├── IPOL-header-logo.png │ │ │ ├── flecheblanchedroite.png │ │ │ ├── flecheblanchegauche.png │ │ │ └── non_viewable_inputs.png │ │ ├── admin │ │ │ ├── fonts │ │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ │ ├── Roboto-Light-webfont.woff │ │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ │ └── README.txt │ │ │ ├── js │ │ │ │ ├── cancel.js │ │ │ │ ├── prepopulate.min.js │ │ │ │ ├── jquery.init.js │ │ │ │ ├── prepopulate_init.js │ │ │ │ ├── popup_response.js │ │ │ │ ├── vendor │ │ │ │ │ ├── select2 │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ └── cs.js │ │ │ │ │ │ └── LICENSE-SELECT2.md │ │ │ │ │ ├── xregexp │ │ │ │ │ │ └── LICENSE-XREGEXP.txt │ │ │ │ │ └── jquery │ │ │ │ │ │ └── LICENSE-JQUERY.txt │ │ │ │ ├── change_form.js │ │ │ │ ├── collapse.js │ │ │ │ ├── autocomplete.js │ │ │ │ └── collapse.min.js │ │ │ ├── img │ │ │ │ ├── tooltag-arrowright.svg │ │ │ │ ├── README.txt │ │ │ │ ├── icon-addlink.svg │ │ │ │ ├── tooltag-add.svg │ │ │ │ ├── icon-changelink.svg │ │ │ │ ├── icon-deletelink.svg │ │ │ │ ├── icon-yes.svg │ │ │ │ ├── search.svg │ │ │ │ ├── icon-alert.svg │ │ │ │ ├── icon-no.svg │ │ │ │ ├── inline-delete.svg │ │ │ │ ├── icon-unknown.svg │ │ │ │ ├── icon-unknown-alt.svg │ │ │ │ ├── icon-clock.svg │ │ │ │ ├── gis │ │ │ │ │ ├── move_vertex_on.svg │ │ │ │ │ └── move_vertex_off.svg │ │ │ │ ├── icon-calendar.svg │ │ │ │ ├── calendar-icons.svg │ │ │ │ ├── LICENSE │ │ │ │ └── sorting-icons.svg │ │ │ └── css │ │ │ │ ├── fonts.css │ │ │ │ ├── dashboard.css │ │ │ │ ├── vendor │ │ │ │ └── select2 │ │ │ │ │ └── LICENSE-SELECT2.md │ │ │ │ └── login.css │ │ ├── js │ │ │ ├── archive.js │ │ │ └── ddl_history.js │ │ └── css │ │ │ ├── profile.css │ │ │ ├── reset.css │ │ │ └── archive.css │ ├── templates │ │ ├── empty.html │ │ ├── searchExperimentForm.html │ │ ├── signout.html │ │ ├── error.html │ │ ├── password │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_email.txt │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ └── password_reset.html │ │ ├── showExperiment.html │ │ ├── status.html │ │ ├── ddl_history.html │ │ ├── messages.html │ │ ├── header.html │ │ ├── login.html │ │ ├── detailsBlob.html │ │ ├── experiment.html │ │ ├── Templates.html │ │ └── createBlob.html │ └── manage.py ├── .gitignore ├── pyproject.toml └── gunicorn_start_cp2 ├── doc ├── info.txt ├── api │ ├── generate.sh │ └── api.tex ├── clientApp │ └── images │ │ ├── flow.pdf │ │ ├── execution_flow.pdf │ │ └── client_server_interaction.pdf ├── sysadmin │ ├── images │ │ ├── local.pdf │ │ └── prod_int.pdf │ └── resources │ │ ├── local.dia │ │ └── prod_int.dia ├── control_panel │ └── images │ │ ├── cp.png │ │ ├── admin.png │ │ ├── login.png │ │ └── ipol_webapp_project.png ├── ddl │ └── Images │ │ ├── label_example.png │ │ ├── text_example.png │ │ ├── checkbox_example.png │ │ ├── geojson_example.png │ │ ├── numeric_example.png │ │ ├── slider_examples.png │ │ ├── textarea_example.png │ │ ├── image_gallery_example.png │ │ ├── uploadwindow_capture.png │ │ ├── selection_radio_example.png │ │ └── selection_collapsed_example.png └── system │ ├── blobs │ └── images │ │ ├── blobs_database.pdf │ │ ├── blob_thumbnail_example.pdf │ │ ├── broken_representation.pdf │ │ └── visual_representation.pdf │ ├── proxy │ └── images │ │ └── reverse_proxy.pdf │ ├── demoinfo │ └── images │ │ └── demoinfo_model.pdf │ ├── resources │ ├── IPOL_diagram_class.dia │ ├── blobs │ │ └── blobs_database.dia │ ├── core │ │ └── core_dispatcher.dia │ ├── proxy │ │ └── reverse_proxy.dia │ ├── Example_Factory_Pattern.dia │ ├── graphviz.txt │ └── demo_info │ │ └── demoinfo_model.dot │ ├── architecture │ └── images │ │ └── architecture.pdf │ ├── dispatcher │ ├── images │ │ └── core_dispatcher.pdf │ └── .demo_dispatcher.tex.kate-swp │ ├── tools │ ├── tools.tex │ ├── ddl.tex │ └── demo_copy.tex │ ├── access_control │ └── access_control.tex │ └── user_scripts │ └── scripts.tex ├── sysadmin ├── systemd │ ├── .gitignore │ ├── Makefile │ ├── core │ │ ├── ipol-cp2.service │ │ ├── ipol-core.service │ │ ├── ipol-demorunner.service │ │ └── ipol-demorunner-docker.service │ ├── limule │ │ ├── ipol-sshfs-ipolcore.service │ │ ├── ipol-demorunner-docker.service │ │ └── ipol-demorunner-docker-gpu.service │ ├── integration │ │ ├── ipol-cp2.service │ │ ├── ipol-core.service │ │ ├── ipol-demorunner-docker.service │ │ └── ipol-demorunner.service │ └── green │ │ ├── ipol-demorunner.service │ │ └── ipol-sshfs-ipolcore.service ├── configs │ ├── crontab │ │ ├── integration_root.txt │ │ ├── core_root.txt │ │ ├── integration.txt │ │ └── core.txt │ ├── modules_local │ │ ├── core_local.conf │ │ └── demoinfo_local.conf │ ├── nginx │ │ ├── snippets │ │ │ ├── certificate.conf │ │ │ └── ssl-params.conf │ │ └── nginx.conf │ └── README.txt ├── check_shared_folder.sh ├── install_packages │ ├── Dockerfile │ ├── pip3-requirements.txt │ ├── install_dist_packages.sh │ ├── others.txt │ └── requirements.txt ├── cleanup.sh ├── backup │ ├── backup.sh │ └── backup_sync.sh ├── on_reboot.sh ├── doc │ └── purging_large_files_from_git.txt └── get_execs_statistics.py ├── ci_tests ├── ipolutils ├── requirements.txt ├── resources │ ├── test_image.png │ ├── test_video.mp4 │ └── test_demo_extras.tar.gz ├── published_codes_compilation_test.sh ├── pull.sh └── pdflatex.sh ├── ipol_demo ├── modules │ ├── core │ │ ├── ipolutils │ │ ├── blobs │ │ │ ├── ipolutils │ │ │ └── errors.py │ │ ├── conversion │ │ │ ├── ipolutils │ │ │ ├── errors.py │ │ │ └── router.py │ │ ├── tests │ │ │ └── pytest.ini │ │ ├── __init__.py │ │ ├── dispatcher │ │ │ ├── demorunnerinfo.py │ │ │ └── router.py │ │ ├── logger.py │ │ ├── app.py │ │ ├── pyproject.toml │ │ ├── demoinfo │ │ │ └── tools.py │ │ ├── archive │ │ │ └── db │ │ │ │ └── drop_create_db_schema.sql │ │ └── guards.py │ ├── demorunner │ │ ├── Tools │ │ │ ├── __init__.py │ │ │ └── PythonTools │ │ │ │ ├── frames_to_avi_huff.sh │ │ │ │ ├── website_mp4.sh │ │ │ │ ├── frames_to_mp4.sh │ │ │ │ └── get_video_fps.py │ │ ├── pyproject.toml │ │ └── Dockerfile │ ├── demorunner-docker │ │ ├── .gitignore │ │ ├── start.sh │ │ └── Rocket.toml │ └── config_common │ │ ├── authorized_patterns.conf.sample │ │ ├── emails.conf.sample │ │ └── envs │ │ ├── local0 │ │ ├── demorunners.xml │ │ └── modules.xml │ │ ├── local1 │ │ ├── demorunners.xml │ │ └── modules.xml │ │ ├── integration │ │ ├── demorunners.xml │ │ └── modules.xml │ │ └── prod │ │ └── modules.xml ├── lib │ └── ipolutils │ │ ├── __init__.py │ │ ├── video │ │ └── __init__.py │ │ ├── image │ │ └── __init__.py │ │ ├── evaluator │ │ └── __init__.py │ │ ├── errors.py │ │ └── read_text_file.py └── clientApp │ ├── assets │ ├── favicon.ico │ ├── Github-logo.png │ ├── information-icon.png │ ├── fontawesome-webfont.ttf │ ├── non_viewable_data.png │ ├── non_viewable_inputs.png │ ├── media-controls │ │ ├── play.svg │ │ ├── increase.svg │ │ ├── decrease.svg │ │ ├── pause.svg │ │ ├── stop.svg │ │ ├── loop.svg │ │ ├── step-forward-1.svg │ │ ├── step-forward-5.svg │ │ ├── step-backwards-5.svg │ │ └── step-backwards-1.svg │ └── file.svg │ ├── css │ ├── footer.css │ ├── tabs.css │ ├── reset.css │ ├── helpers.css │ └── inpainting.css │ ├── parameters.html │ ├── inpainting.html │ └── header.html ├── tools └── migrations │ └── rename_thumbnails.sh ├── .dockerignore ├── docker ├── migrations_cp.sh ├── Dockerfile ├── zsh_conf └── pkglist ├── pyproject.toml ├── README.md └── AUTHORS /cp2/ControlPanel/ControlPanel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/info.txt: -------------------------------------------------------------------------------- 1 | documentation directory 2 | -------------------------------------------------------------------------------- /sysadmin/systemd/.gitignore: -------------------------------------------------------------------------------- 1 | *.wants/ 2 | -------------------------------------------------------------------------------- /ci_tests/ipolutils: -------------------------------------------------------------------------------- 1 | ../ipol_demo/lib/ipolutils -------------------------------------------------------------------------------- /ipol_demo/modules/core/ipolutils: -------------------------------------------------------------------------------- 1 | ../../lib/ipolutils/ -------------------------------------------------------------------------------- /ipol_demo/modules/core/blobs/ipolutils: -------------------------------------------------------------------------------- 1 | ../../lib/ipolutils/ -------------------------------------------------------------------------------- /ci_tests/requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow==9.3.0 2 | requests==2.22.0 3 | -------------------------------------------------------------------------------- /ipol_demo/modules/core/conversion/ipolutils: -------------------------------------------------------------------------------- 1 | ../../../lib/ipolutils/ -------------------------------------------------------------------------------- /ipol_demo/modules/core/tests/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = .. -------------------------------------------------------------------------------- /ipol_demo/lib/ipolutils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | IPOL shared package. 3 | """ 4 | -------------------------------------------------------------------------------- /ipol_demo/modules/core/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | IPOL demo app module 3 | """ 4 | -------------------------------------------------------------------------------- /ipol_demo/lib/ipolutils/video/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | An IPOL video package 3 | """ 4 | -------------------------------------------------------------------------------- /ipol_demo/modules/demorunner/Tools/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | IPOL demorunner app module 3 | """ 4 | -------------------------------------------------------------------------------- /ipol_demo/lib/ipolutils/image/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | IPOL library, image conversions. 3 | """ 4 | -------------------------------------------------------------------------------- /doc/api/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | ./docstring_scanner.py > docstrings.tex 3 | pdflatex api.tex 4 | -------------------------------------------------------------------------------- /doc/clientApp/images/flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/clientApp/images/flow.pdf -------------------------------------------------------------------------------- /doc/sysadmin/images/local.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/sysadmin/images/local.pdf -------------------------------------------------------------------------------- /ipol_demo/lib/ipolutils/evaluator/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | IPOL library, evaluator of arithmetic expressions. 3 | """ 4 | -------------------------------------------------------------------------------- /doc/control_panel/images/cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/control_panel/images/cp.png -------------------------------------------------------------------------------- /doc/ddl/Images/label_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/label_example.png -------------------------------------------------------------------------------- /doc/ddl/Images/text_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/text_example.png -------------------------------------------------------------------------------- /doc/sysadmin/images/prod_int.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/sysadmin/images/prod_int.pdf -------------------------------------------------------------------------------- /doc/sysadmin/resources/local.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/sysadmin/resources/local.dia -------------------------------------------------------------------------------- /tools/migrations/rename_thumbnails.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | find . -name "thumbnail_*" -exec rename s/thumbnail_// * {} \; -------------------------------------------------------------------------------- /ci_tests/resources/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ci_tests/resources/test_image.png -------------------------------------------------------------------------------- /ci_tests/resources/test_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ci_tests/resources/test_video.mp4 -------------------------------------------------------------------------------- /cp2/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | share 4 | pyvenv.cfg 5 | lib 6 | lib64 7 | bin 8 | pip-selfcheck.json 9 | include -------------------------------------------------------------------------------- /doc/control_panel/images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/control_panel/images/admin.png -------------------------------------------------------------------------------- /doc/control_panel/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/control_panel/images/login.png -------------------------------------------------------------------------------- /doc/ddl/Images/checkbox_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/checkbox_example.png -------------------------------------------------------------------------------- /doc/ddl/Images/geojson_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/geojson_example.png -------------------------------------------------------------------------------- /doc/ddl/Images/numeric_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/numeric_example.png -------------------------------------------------------------------------------- /doc/ddl/Images/slider_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/slider_examples.png -------------------------------------------------------------------------------- /doc/ddl/Images/textarea_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/textarea_example.png -------------------------------------------------------------------------------- /doc/sysadmin/resources/prod_int.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/sysadmin/resources/prod_int.dia -------------------------------------------------------------------------------- /doc/clientApp/images/execution_flow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/clientApp/images/execution_flow.pdf -------------------------------------------------------------------------------- /doc/ddl/Images/image_gallery_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/image_gallery_example.png -------------------------------------------------------------------------------- /doc/ddl/Images/uploadwindow_capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/uploadwindow_capture.png -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/favicon.ico -------------------------------------------------------------------------------- /ci_tests/resources/test_demo_extras.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ci_tests/resources/test_demo_extras.tar.gz -------------------------------------------------------------------------------- /doc/ddl/Images/selection_radio_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/selection_radio_example.png -------------------------------------------------------------------------------- /doc/system/blobs/images/blobs_database.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/blobs/images/blobs_database.pdf -------------------------------------------------------------------------------- /doc/system/proxy/images/reverse_proxy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/proxy/images/reverse_proxy.pdf -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/Github-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/Github-logo.png -------------------------------------------------------------------------------- /sysadmin/configs/crontab/integration_root.txt: -------------------------------------------------------------------------------- 1 | # m h dom mon dow command 2 | 0 3 * * 1 /home/ipol/ipolDevel/sysadmin/backup/backup.sh 3 | -------------------------------------------------------------------------------- /sysadmin/configs/modules_local/core_local.conf: -------------------------------------------------------------------------------- 1 | # cherrypy configuration for a local server 2 | 3 | [global] 4 | 5 | env = 'production' 6 | -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/favicon.ico -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/logout.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/logout.icns -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/logout.png -------------------------------------------------------------------------------- /doc/system/demoinfo/images/demoinfo_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/demoinfo/images/demoinfo_model.pdf -------------------------------------------------------------------------------- /doc/system/resources/IPOL_diagram_class.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/resources/IPOL_diagram_class.dia -------------------------------------------------------------------------------- /doc/system/resources/blobs/blobs_database.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/resources/blobs/blobs_database.dia -------------------------------------------------------------------------------- /doc/system/resources/core/core_dispatcher.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/resources/core/core_dispatcher.dia -------------------------------------------------------------------------------- /doc/system/resources/proxy/reverse_proxy.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/resources/proxy/reverse_proxy.dia -------------------------------------------------------------------------------- /sysadmin/configs/modules_local/demoinfo_local.conf: -------------------------------------------------------------------------------- 1 | # cherrypy configuration for a local server 2 | 3 | [global] 4 | 5 | env = 'production' 6 | -------------------------------------------------------------------------------- /doc/ddl/Images/selection_collapsed_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/ddl/Images/selection_collapsed_example.png -------------------------------------------------------------------------------- /doc/system/architecture/images/architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/architecture/images/architecture.pdf -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/information-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/information-icon.png -------------------------------------------------------------------------------- /doc/clientApp/images/client_server_interaction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/clientApp/images/client_server_interaction.pdf -------------------------------------------------------------------------------- /doc/control_panel/images/ipol_webapp_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/control_panel/images/ipol_webapp_project.png -------------------------------------------------------------------------------- /doc/system/blobs/images/blob_thumbnail_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/blobs/images/blob_thumbnail_example.pdf -------------------------------------------------------------------------------- /doc/system/blobs/images/broken_representation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/blobs/images/broken_representation.pdf -------------------------------------------------------------------------------- /doc/system/blobs/images/visual_representation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/blobs/images/visual_representation.pdf -------------------------------------------------------------------------------- /doc/system/dispatcher/images/core_dispatcher.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/dispatcher/images/core_dispatcher.pdf -------------------------------------------------------------------------------- /doc/system/resources/Example_Factory_Pattern.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/resources/Example_Factory_Pattern.dia -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/non_viewable_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/non_viewable_data.png -------------------------------------------------------------------------------- /ipol_demo/clientApp/assets/non_viewable_inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/ipol_demo/clientApp/assets/non_viewable_inputs.png -------------------------------------------------------------------------------- /sysadmin/configs/crontab/core_root.txt: -------------------------------------------------------------------------------- 1 | 0 3 * * 1 /home/ipol/ipolDevel/sysadmin/backup/backup.sh 2 | @reboot /home/ipol/ipolDevel/sysadmin/on_reboot.sh 3 | -------------------------------------------------------------------------------- /sysadmin/configs/nginx/snippets/certificate.conf: -------------------------------------------------------------------------------- 1 | ssl_certificate /etc/ssl/certs/ssl-bundle.crt; 2 | ssl_certificate_key /etc/ssl/private/server.key; 3 | 4 | -------------------------------------------------------------------------------- /doc/system/dispatcher/.demo_dispatcher.tex.kate-swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/doc/system/dispatcher/.demo_dispatcher.tex.kate-swp -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/IPOL-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/IPOL-header-logo.png -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/flecheblanchedroite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/flecheblanchedroite.png -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/flecheblanchegauche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/flecheblanchegauche.png -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/images/non_viewable_inputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/images/non_viewable_inputs.png -------------------------------------------------------------------------------- /ipol_demo/modules/demorunner-docker/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | target 3 | .crates.toml 4 | .crates2.json 5 | 6 | logs 7 | compilation 8 | id_ed25519 9 | id_ed25519.pub 10 | -------------------------------------------------------------------------------- /ipol_demo/modules/config_common/authorized_patterns.conf.sample: -------------------------------------------------------------------------------- 1 | [Patterns] 2 | local = 127.*.*.* 3 | lan = 192.168.*.* 4 | integration = 99.99.99.* 5 | production = 123.123.123.* 6 | -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /cp2/ControlPanel/static_cp/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ipol-journal/ipolDevel/HEAD/cp2/ControlPanel/static_cp/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /cp2/ControlPanel/templates/empty.html: -------------------------------------------------------------------------------- 1 |
10 |
11 | Your password has been set. You may go ahead an log in now.
13 | Login 14 |
10 |
11 |
10 |
11 | We've sent you an instructions to reset your password to the email specified in the previous step.
13 |If you don't receive said email please try again or reach us. Please conside checking your email spam folder.
14 |
11 |
12 | Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one.
14 | 19 || Name | 15 |Workload | 16 |Status | 17 |
|---|
4 | {{parameter}}: {{value}}
14 | {% endfor %} 15 | {% endif %} 16 |Execution: {{experiment.execution}}
19 | {% endif %} 20 |
6 |
7 |
8 | IPOL Journal · Image Processing On Line
9 |
10 |
26 | In order to upload new blobs you may use any of the following methods:
14 |Then click on the upload button.
19 |When dropping multiple files, it will autofill their names.
20 |