├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── CONTRIBUTING.md ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── README.md ├── TermsAndConditions ├── app ├── .flaskenv ├── .pylintrc ├── README.md ├── application.wsgi ├── bemserver │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── default_api_settings.py │ │ ├── extensions │ │ │ ├── __init__.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── jwt.py │ │ │ │ ├── saml.py │ │ │ │ └── tlsclient.py │ │ │ ├── database │ │ │ │ ├── __init__.py │ │ │ │ ├── accessor.py │ │ │ │ ├── exceptions.py │ │ │ │ └── security.py │ │ │ ├── limiter.py │ │ │ ├── logger.py │ │ │ ├── maintenance.py │ │ │ ├── marshmallow │ │ │ │ ├── __init__.py │ │ │ │ └── fields.py │ │ │ ├── relational_db.py │ │ │ └── rest_api │ │ │ │ ├── __init__.py │ │ │ │ ├── converters.py │ │ │ │ ├── custom_fields.py │ │ │ │ ├── doc_responses.py │ │ │ │ ├── hateoas.py │ │ │ │ ├── hateoas_apispec_plugin.py │ │ │ │ ├── pagination.py │ │ │ │ ├── query.py │ │ │ │ └── schemas.py │ │ └── views │ │ │ ├── __init__.py │ │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── demo_views.py │ │ │ ├── jwt │ │ │ │ ├── __init__.py │ │ │ │ ├── schemas.py │ │ │ │ └── views.py │ │ │ ├── saml │ │ │ │ ├── __init__.py │ │ │ │ ├── schemas.py │ │ │ │ └── views.py │ │ │ ├── schemas.py │ │ │ ├── tlsclient │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ └── views.py │ │ │ ├── buildings │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── comforts │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── events │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── facades │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── floors │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── geographical │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── ifc │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── filestorage.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── measures │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── occupant_users │ │ │ ├── __init__.py │ │ │ ├── auth_occupant_user.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── occupants │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── outputs │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── schemas.py │ │ │ ├── sensors │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── sites │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── slabs │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── spaces │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ ├── timeseries │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── schemas.py │ │ │ ├── tsio.py │ │ │ └── views.py │ │ │ ├── windows │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ │ │ └── zones │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ └── views.py │ ├── basicservices │ │ ├── __init__.py │ │ ├── bim │ │ │ ├── __init__.py │ │ │ ├── ifc_converter.py │ │ │ └── ifc_import.py │ │ └── timeseries.py │ ├── database │ │ ├── __init__.py │ │ ├── abs_dbthing.py │ │ ├── db_building.py │ │ ├── db_enums.py │ │ ├── db_floor.py │ │ ├── db_measure.py │ │ ├── db_mock.py │ │ ├── db_model.py │ │ ├── db_output.py │ │ ├── db_quantity.py │ │ ├── db_sensor.py │ │ ├── db_service.py │ │ ├── db_site.py │ │ ├── db_slab.py │ │ ├── db_space.py │ │ ├── db_wall.py │ │ ├── db_window.py │ │ ├── db_zone.py │ │ ├── dbaccessor.py │ │ ├── exceptions.py │ │ ├── filestorage │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── filestore.py │ │ ├── ontology │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ ├── generic.py │ │ │ └── manager.py │ │ ├── relational │ │ │ └── __init__.py │ │ ├── schemas │ │ │ ├── __init__.py │ │ │ ├── schemas.py │ │ │ ├── service_schemas.py │ │ │ └── system_schemas.py │ │ ├── security │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── security_manager.py │ │ ├── timeseries │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── hdfstore.py │ │ └── utils.py │ ├── models │ │ ├── __init__.py │ │ ├── building.py │ │ ├── energy.py │ │ ├── events.py │ │ ├── exceptions.py │ │ ├── facade.py │ │ ├── floor.py │ │ ├── geography.py │ │ ├── ifc_file.py │ │ ├── modules.py │ │ ├── monitoring.py │ │ ├── occupancy.py │ │ ├── quantity.py │ │ ├── site.py │ │ ├── slab.py │ │ ├── space.py │ │ ├── spatial.py │ │ ├── system.py │ │ ├── thing.py │ │ ├── timeseries │ │ │ ├── __init__.py │ │ │ ├── exceptions.py │ │ │ └── timeseries.py │ │ ├── tree.py │ │ ├── user.py │ │ ├── window.py │ │ └── zone.py │ └── tools │ │ ├── __init__.py │ │ ├── account_generator.py │ │ ├── common.py │ │ ├── crypto.py │ │ ├── custom_enum.py │ │ ├── geo_location.py │ │ └── units.py ├── dev-requirements.txt ├── migrations │ ├── README │ ├── alembic.ini │ ├── env.py │ ├── script.py.mako │ └── versions │ │ ├── 0_database_creation.py │ │ └── 1_events_replace_device_with_sensor.py ├── pytest.ini ├── requirements.txt ├── setup.py ├── tests │ ├── __init__.py │ ├── api │ │ ├── extensions │ │ │ ├── conftest.py │ │ │ ├── test_extensions_logger.py │ │ │ ├── test_extensions_marshmallow.py │ │ │ ├── test_extensions_restapi_custom_fields.py │ │ │ ├── test_extensions_restapi_doc_responses.py │ │ │ ├── test_extensions_restapi_hateoas.py │ │ │ ├── test_extensions_restapi_query.py │ │ │ └── test_extensions_restapi_schemas.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ └── api_response.py │ │ └── views │ │ │ ├── conftest.py │ │ │ ├── test_maintenance.py │ │ │ ├── test_spec.py │ │ │ ├── test_views_auth.py │ │ │ ├── test_views_auth_demo.py │ │ │ ├── test_views_auth_jwt.py │ │ │ ├── test_views_auth_tlsclient.py │ │ │ ├── test_views_buildings.py │ │ │ ├── test_views_comforts.py │ │ │ ├── test_views_events.py │ │ │ ├── test_views_facades.py │ │ │ ├── test_views_floors.py │ │ │ ├── test_views_geographical.py │ │ │ ├── test_views_ifc.py │ │ │ ├── test_views_measures.py │ │ │ ├── test_views_models.py │ │ │ ├── test_views_occupant_users.py │ │ │ ├── test_views_occupants.py │ │ │ ├── test_views_outputs.py │ │ │ ├── test_views_sensors.py │ │ │ ├── test_views_services.py │ │ │ ├── test_views_sites.py │ │ │ ├── test_views_slabs.py │ │ │ ├── test_views_spaces.py │ │ │ ├── test_views_timeseries.py │ │ │ ├── test_views_windows.py │ │ │ └── test_views_zones.py │ ├── basicservices │ │ └── bim │ │ │ ├── conftest.py │ │ │ └── test_ifc_import.py │ ├── conftest.py │ ├── database │ │ ├── conftest.py │ │ ├── filestorage │ │ │ ├── conftest.py │ │ │ └── test_filestorage_manager.py │ │ ├── ontology │ │ │ ├── bemserver_test.ttl │ │ │ ├── test_db_enums.py │ │ │ └── test_ontology_manager.py │ │ ├── security │ │ │ ├── conftest.py │ │ │ └── test_database_security_manager.py │ │ ├── test_db_building.py │ │ ├── test_db_floor.py │ │ ├── test_db_measure.py │ │ ├── test_db_mock.py │ │ ├── test_db_modules.py │ │ ├── test_db_quantity.py │ │ ├── test_db_sensor.py │ │ ├── test_db_site.py │ │ ├── test_db_slab.py │ │ ├── test_db_space.py │ │ ├── test_db_wall.py │ │ ├── test_db_window.py │ │ ├── test_db_zone.py │ │ └── timeseries │ │ │ └── test_timeseries_manager.py │ ├── models │ │ ├── test_energy.py │ │ ├── test_system.py │ │ ├── test_thing.py │ │ ├── test_timeseries.py │ │ ├── test_tree.py │ │ └── test_user.py │ ├── tools │ │ ├── test_account_generator.py │ │ ├── test_common.py │ │ ├── test_crypto.py │ │ ├── test_custom_enum.py │ │ ├── test_geo_location.py │ │ └── test_units.py │ └── utils │ │ ├── __init__.py │ │ ├── data_samples │ │ ├── Consumption.csv │ │ ├── sample_test.ifc │ │ └── temperature.csv │ │ ├── debugging.py │ │ └── extractor.py ├── tox.ini └── tox_install_ifcopenshell.sh ├── docker ├── README.md ├── docker-compose.yml └── scripts │ ├── docker-entrypoint.sh │ └── update-settings.sh ├── docs ├── BEM SERVER-Color-rgb-logo.png └── deployment │ ├── README.md │ ├── application.wsgi │ ├── data_model │ ├── bemserver_tdb.ttl │ ├── bemserver_tdb2.ttl │ └── shiro.ini │ ├── h2g-platform-core-ssl.conf │ ├── h2g-platform-core.conf │ ├── maintenance │ ├── h2g_check_disk_space.py │ ├── load_ifc.py │ ├── repack_hdf5.py │ ├── repack_hdf5.sh │ └── set_maintenance_mode.sh │ ├── saml │ ├── advanced_settings.json │ └── settings.json │ └── settings.cfg ├── scripts ├── bemserver.sh ├── install │ ├── install-dev.sh │ ├── install-prod.sh │ └── install.sh ├── maintenance │ ├── h2g_check_disk_space.py │ ├── load_ifc.py │ ├── maintenance.sh │ ├── repack_hdf5.py │ ├── repack_hdf5.sh │ └── set_maintenance_mode.sh ├── setup │ ├── setup-tasks.sh │ └── setup.sh └── utils.sh └── settings ├── apache2 ├── bemserver-ssl.conf └── bemserver.conf ├── settings-dev.cfg └── settings-prod.cfg /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/README.md -------------------------------------------------------------------------------- /TermsAndConditions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/TermsAndConditions -------------------------------------------------------------------------------- /app/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=bemserver.api 2 | -------------------------------------------------------------------------------- /app/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/.pylintrc -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/README.md -------------------------------------------------------------------------------- /app/application.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/application.wsgi -------------------------------------------------------------------------------- /app/bemserver/__init__.py: -------------------------------------------------------------------------------- 1 | """Core initialization""" 2 | -------------------------------------------------------------------------------- /app/bemserver/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/default_api_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/default_api_settings.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/auth/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/auth/jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/auth/jwt.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/auth/saml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/auth/saml.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/auth/tlsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/auth/tlsclient.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/database/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/database/accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/database/accessor.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/database/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/database/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/database/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/database/security.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/limiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/limiter.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/logger.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/maintenance.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/marshmallow/__init__.py: -------------------------------------------------------------------------------- 1 | """Custom Marshmallow extension""" 2 | 3 | from . import fields # noqa 4 | -------------------------------------------------------------------------------- /app/bemserver/api/extensions/marshmallow/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/marshmallow/fields.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/relational_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/relational_db.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/converters.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/custom_fields.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/doc_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/doc_responses.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/hateoas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/hateoas.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/hateoas_apispec_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/hateoas_apispec_plugin.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/pagination.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/query.py -------------------------------------------------------------------------------- /app/bemserver/api/extensions/rest_api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/extensions/rest_api/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/demo_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/demo_views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/jwt/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/jwt/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/jwt/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/jwt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/jwt/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/saml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/saml/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/saml/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/saml/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/saml/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/saml/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/tlsclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/tlsclient/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/tlsclient/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/tlsclient/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/auth/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/buildings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/buildings/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/buildings/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/buildings/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/buildings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/buildings/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/comforts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/comforts/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/comforts/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/comforts/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/comforts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/comforts/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/events/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/events/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/events/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/events/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/facades/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/facades/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/facades/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/facades/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/facades/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/facades/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/floors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/floors/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/floors/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/floors/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/floors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/floors/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/geographical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/geographical/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/geographical/schemas.py: -------------------------------------------------------------------------------- 1 | """Api geographical information schemas""" 2 | -------------------------------------------------------------------------------- /app/bemserver/api/views/geographical/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/geographical/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/ifc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/ifc/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/ifc/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/ifc/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/api/views/ifc/filestorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/ifc/filestorage.py -------------------------------------------------------------------------------- /app/bemserver/api/views/ifc/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/ifc/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/ifc/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/ifc/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/measures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/measures/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/measures/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/measures/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/measures/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/measures/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/models/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/models/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/models/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/models/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/models/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupant_users/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupant_users/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupant_users/auth_occupant_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupant_users/auth_occupant_user.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupant_users/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupant_users/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupant_users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupant_users/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupants/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupants/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupants/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/occupants/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/occupants/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/outputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/outputs/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/outputs/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/outputs/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/outputs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/outputs/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sensors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sensors/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sensors/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sensors/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sensors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sensors/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/services/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/services/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/services/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/services/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/services/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sites/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sites/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sites/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/sites/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/sites/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/slabs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/slabs/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/slabs/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/slabs/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/slabs/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/slabs/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/spaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/spaces/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/spaces/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/spaces/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/spaces/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/spaces/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/timeseries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/timeseries/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/timeseries/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/timeseries/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/api/views/timeseries/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/timeseries/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/timeseries/tsio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/timeseries/tsio.py -------------------------------------------------------------------------------- /app/bemserver/api/views/timeseries/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/timeseries/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/windows/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/windows/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/windows/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/windows/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/windows/views.py -------------------------------------------------------------------------------- /app/bemserver/api/views/zones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/zones/__init__.py -------------------------------------------------------------------------------- /app/bemserver/api/views/zones/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/zones/schemas.py -------------------------------------------------------------------------------- /app/bemserver/api/views/zones/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/api/views/zones/views.py -------------------------------------------------------------------------------- /app/bemserver/basicservices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/basicservices/bim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/basicservices/bim/ifc_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/basicservices/bim/ifc_converter.py -------------------------------------------------------------------------------- /app/bemserver/basicservices/bim/ifc_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/basicservices/bim/ifc_import.py -------------------------------------------------------------------------------- /app/bemserver/basicservices/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/basicservices/timeseries.py -------------------------------------------------------------------------------- /app/bemserver/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/__init__.py -------------------------------------------------------------------------------- /app/bemserver/database/abs_dbthing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/abs_dbthing.py -------------------------------------------------------------------------------- /app/bemserver/database/db_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_building.py -------------------------------------------------------------------------------- /app/bemserver/database/db_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_enums.py -------------------------------------------------------------------------------- /app/bemserver/database/db_floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_floor.py -------------------------------------------------------------------------------- /app/bemserver/database/db_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_measure.py -------------------------------------------------------------------------------- /app/bemserver/database/db_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_mock.py -------------------------------------------------------------------------------- /app/bemserver/database/db_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_model.py -------------------------------------------------------------------------------- /app/bemserver/database/db_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_output.py -------------------------------------------------------------------------------- /app/bemserver/database/db_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_quantity.py -------------------------------------------------------------------------------- /app/bemserver/database/db_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_sensor.py -------------------------------------------------------------------------------- /app/bemserver/database/db_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_service.py -------------------------------------------------------------------------------- /app/bemserver/database/db_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_site.py -------------------------------------------------------------------------------- /app/bemserver/database/db_slab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_slab.py -------------------------------------------------------------------------------- /app/bemserver/database/db_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_space.py -------------------------------------------------------------------------------- /app/bemserver/database/db_wall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_wall.py -------------------------------------------------------------------------------- /app/bemserver/database/db_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_window.py -------------------------------------------------------------------------------- /app/bemserver/database/db_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/db_zone.py -------------------------------------------------------------------------------- /app/bemserver/database/dbaccessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/dbaccessor.py -------------------------------------------------------------------------------- /app/bemserver/database/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/database/filestorage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/filestorage/__init__.py -------------------------------------------------------------------------------- /app/bemserver/database/filestorage/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/filestorage/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/database/filestorage/filestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/filestorage/filestore.py -------------------------------------------------------------------------------- /app/bemserver/database/ontology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/database/ontology/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/ontology/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/database/ontology/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/ontology/generic.py -------------------------------------------------------------------------------- /app/bemserver/database/ontology/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/ontology/manager.py -------------------------------------------------------------------------------- /app/bemserver/database/relational/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/relational/__init__.py -------------------------------------------------------------------------------- /app/bemserver/database/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/schemas/__init__.py -------------------------------------------------------------------------------- /app/bemserver/database/schemas/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/schemas/schemas.py -------------------------------------------------------------------------------- /app/bemserver/database/schemas/service_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/schemas/service_schemas.py -------------------------------------------------------------------------------- /app/bemserver/database/schemas/system_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/schemas/system_schemas.py -------------------------------------------------------------------------------- /app/bemserver/database/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/database/security/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/security/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/database/security/security_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/security/security_manager.py -------------------------------------------------------------------------------- /app/bemserver/database/timeseries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/database/timeseries/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/timeseries/base.py -------------------------------------------------------------------------------- /app/bemserver/database/timeseries/hdfstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/timeseries/hdfstore.py -------------------------------------------------------------------------------- /app/bemserver/database/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/database/utils.py -------------------------------------------------------------------------------- /app/bemserver/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/__init__.py -------------------------------------------------------------------------------- /app/bemserver/models/building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/building.py -------------------------------------------------------------------------------- /app/bemserver/models/energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/energy.py -------------------------------------------------------------------------------- /app/bemserver/models/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/events.py -------------------------------------------------------------------------------- /app/bemserver/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/models/facade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/facade.py -------------------------------------------------------------------------------- /app/bemserver/models/floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/floor.py -------------------------------------------------------------------------------- /app/bemserver/models/geography.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/geography.py -------------------------------------------------------------------------------- /app/bemserver/models/ifc_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/ifc_file.py -------------------------------------------------------------------------------- /app/bemserver/models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/modules.py -------------------------------------------------------------------------------- /app/bemserver/models/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/monitoring.py -------------------------------------------------------------------------------- /app/bemserver/models/occupancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/occupancy.py -------------------------------------------------------------------------------- /app/bemserver/models/quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/quantity.py -------------------------------------------------------------------------------- /app/bemserver/models/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/site.py -------------------------------------------------------------------------------- /app/bemserver/models/slab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/slab.py -------------------------------------------------------------------------------- /app/bemserver/models/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/space.py -------------------------------------------------------------------------------- /app/bemserver/models/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/spatial.py -------------------------------------------------------------------------------- /app/bemserver/models/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/system.py -------------------------------------------------------------------------------- /app/bemserver/models/thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/thing.py -------------------------------------------------------------------------------- /app/bemserver/models/timeseries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/timeseries/__init__.py -------------------------------------------------------------------------------- /app/bemserver/models/timeseries/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/timeseries/exceptions.py -------------------------------------------------------------------------------- /app/bemserver/models/timeseries/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/timeseries/timeseries.py -------------------------------------------------------------------------------- /app/bemserver/models/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/tree.py -------------------------------------------------------------------------------- /app/bemserver/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/user.py -------------------------------------------------------------------------------- /app/bemserver/models/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/window.py -------------------------------------------------------------------------------- /app/bemserver/models/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/models/zone.py -------------------------------------------------------------------------------- /app/bemserver/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/bemserver/tools/account_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/account_generator.py -------------------------------------------------------------------------------- /app/bemserver/tools/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/common.py -------------------------------------------------------------------------------- /app/bemserver/tools/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/crypto.py -------------------------------------------------------------------------------- /app/bemserver/tools/custom_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/custom_enum.py -------------------------------------------------------------------------------- /app/bemserver/tools/geo_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/geo_location.py -------------------------------------------------------------------------------- /app/bemserver/tools/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/bemserver/tools/units.py -------------------------------------------------------------------------------- /app/dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/dev-requirements.txt -------------------------------------------------------------------------------- /app/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /app/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/migrations/alembic.ini -------------------------------------------------------------------------------- /app/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/migrations/env.py -------------------------------------------------------------------------------- /app/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/migrations/script.py.mako -------------------------------------------------------------------------------- /app/migrations/versions/0_database_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/migrations/versions/0_database_creation.py -------------------------------------------------------------------------------- /app/migrations/versions/1_events_replace_device_with_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/migrations/versions/1_events_replace_device_with_sensor.py -------------------------------------------------------------------------------- /app/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/pytest.ini -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/setup.py -------------------------------------------------------------------------------- /app/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/__init__.py -------------------------------------------------------------------------------- /app/tests/api/extensions/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/conftest.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_logger.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_marshmallow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_marshmallow.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_restapi_custom_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_restapi_custom_fields.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_restapi_doc_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_restapi_doc_responses.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_restapi_hateoas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_restapi_hateoas.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_restapi_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_restapi_query.py -------------------------------------------------------------------------------- /app/tests/api/extensions/test_extensions_restapi_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/extensions/test_extensions_restapi_schemas.py -------------------------------------------------------------------------------- /app/tests/api/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/utils/__init__.py -------------------------------------------------------------------------------- /app/tests/api/utils/api_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/utils/api_response.py -------------------------------------------------------------------------------- /app/tests/api/views/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/conftest.py -------------------------------------------------------------------------------- /app/tests/api/views/test_maintenance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_maintenance.py -------------------------------------------------------------------------------- /app/tests/api/views/test_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_spec.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_auth.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_auth_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_auth_demo.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_auth_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_auth_jwt.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_auth_tlsclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_auth_tlsclient.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_buildings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_buildings.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_comforts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_comforts.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_events.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_facades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_facades.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_floors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_floors.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_geographical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_geographical.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_ifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_ifc.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_measures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_measures.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_models.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_occupant_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_occupant_users.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_occupants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_occupants.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_outputs.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_sensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_sensors.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_services.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_sites.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_slabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_slabs.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_spaces.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_timeseries.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_windows.py -------------------------------------------------------------------------------- /app/tests/api/views/test_views_zones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/api/views/test_views_zones.py -------------------------------------------------------------------------------- /app/tests/basicservices/bim/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/basicservices/bim/conftest.py -------------------------------------------------------------------------------- /app/tests/basicservices/bim/test_ifc_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/basicservices/bim/test_ifc_import.py -------------------------------------------------------------------------------- /app/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/conftest.py -------------------------------------------------------------------------------- /app/tests/database/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/conftest.py -------------------------------------------------------------------------------- /app/tests/database/filestorage/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/filestorage/conftest.py -------------------------------------------------------------------------------- /app/tests/database/filestorage/test_filestorage_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/filestorage/test_filestorage_manager.py -------------------------------------------------------------------------------- /app/tests/database/ontology/bemserver_test.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/ontology/bemserver_test.ttl -------------------------------------------------------------------------------- /app/tests/database/ontology/test_db_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/ontology/test_db_enums.py -------------------------------------------------------------------------------- /app/tests/database/ontology/test_ontology_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/ontology/test_ontology_manager.py -------------------------------------------------------------------------------- /app/tests/database/security/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/security/conftest.py -------------------------------------------------------------------------------- /app/tests/database/security/test_database_security_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/security/test_database_security_manager.py -------------------------------------------------------------------------------- /app/tests/database/test_db_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_building.py -------------------------------------------------------------------------------- /app/tests/database/test_db_floor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_floor.py -------------------------------------------------------------------------------- /app/tests/database/test_db_measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_measure.py -------------------------------------------------------------------------------- /app/tests/database/test_db_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_mock.py -------------------------------------------------------------------------------- /app/tests/database/test_db_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_modules.py -------------------------------------------------------------------------------- /app/tests/database/test_db_quantity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_quantity.py -------------------------------------------------------------------------------- /app/tests/database/test_db_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_sensor.py -------------------------------------------------------------------------------- /app/tests/database/test_db_site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_site.py -------------------------------------------------------------------------------- /app/tests/database/test_db_slab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_slab.py -------------------------------------------------------------------------------- /app/tests/database/test_db_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_space.py -------------------------------------------------------------------------------- /app/tests/database/test_db_wall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_wall.py -------------------------------------------------------------------------------- /app/tests/database/test_db_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_window.py -------------------------------------------------------------------------------- /app/tests/database/test_db_zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/test_db_zone.py -------------------------------------------------------------------------------- /app/tests/database/timeseries/test_timeseries_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/database/timeseries/test_timeseries_manager.py -------------------------------------------------------------------------------- /app/tests/models/test_energy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_energy.py -------------------------------------------------------------------------------- /app/tests/models/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_system.py -------------------------------------------------------------------------------- /app/tests/models/test_thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_thing.py -------------------------------------------------------------------------------- /app/tests/models/test_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_timeseries.py -------------------------------------------------------------------------------- /app/tests/models/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_tree.py -------------------------------------------------------------------------------- /app/tests/models/test_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/models/test_user.py -------------------------------------------------------------------------------- /app/tests/tools/test_account_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_account_generator.py -------------------------------------------------------------------------------- /app/tests/tools/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_common.py -------------------------------------------------------------------------------- /app/tests/tools/test_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_crypto.py -------------------------------------------------------------------------------- /app/tests/tools/test_custom_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_custom_enum.py -------------------------------------------------------------------------------- /app/tests/tools/test_geo_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_geo_location.py -------------------------------------------------------------------------------- /app/tests/tools/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/tools/test_units.py -------------------------------------------------------------------------------- /app/tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/__init__.py -------------------------------------------------------------------------------- /app/tests/utils/data_samples/Consumption.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/data_samples/Consumption.csv -------------------------------------------------------------------------------- /app/tests/utils/data_samples/sample_test.ifc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/data_samples/sample_test.ifc -------------------------------------------------------------------------------- /app/tests/utils/data_samples/temperature.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/data_samples/temperature.csv -------------------------------------------------------------------------------- /app/tests/utils/debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/debugging.py -------------------------------------------------------------------------------- /app/tests/utils/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tests/utils/extractor.py -------------------------------------------------------------------------------- /app/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tox.ini -------------------------------------------------------------------------------- /app/tox_install_ifcopenshell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/app/tox_install_ifcopenshell.sh -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/scripts/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docker/scripts/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/scripts/update-settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docker/scripts/update-settings.sh -------------------------------------------------------------------------------- /docs/BEM SERVER-Color-rgb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/BEM SERVER-Color-rgb-logo.png -------------------------------------------------------------------------------- /docs/deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/README.md -------------------------------------------------------------------------------- /docs/deployment/application.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/application.wsgi -------------------------------------------------------------------------------- /docs/deployment/data_model/bemserver_tdb.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/data_model/bemserver_tdb.ttl -------------------------------------------------------------------------------- /docs/deployment/data_model/bemserver_tdb2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/data_model/bemserver_tdb2.ttl -------------------------------------------------------------------------------- /docs/deployment/data_model/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/data_model/shiro.ini -------------------------------------------------------------------------------- /docs/deployment/h2g-platform-core-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/h2g-platform-core-ssl.conf -------------------------------------------------------------------------------- /docs/deployment/h2g-platform-core.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/h2g-platform-core.conf -------------------------------------------------------------------------------- /docs/deployment/maintenance/h2g_check_disk_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/maintenance/h2g_check_disk_space.py -------------------------------------------------------------------------------- /docs/deployment/maintenance/load_ifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/maintenance/load_ifc.py -------------------------------------------------------------------------------- /docs/deployment/maintenance/repack_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/maintenance/repack_hdf5.py -------------------------------------------------------------------------------- /docs/deployment/maintenance/repack_hdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/maintenance/repack_hdf5.sh -------------------------------------------------------------------------------- /docs/deployment/maintenance/set_maintenance_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/maintenance/set_maintenance_mode.sh -------------------------------------------------------------------------------- /docs/deployment/saml/advanced_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/saml/advanced_settings.json -------------------------------------------------------------------------------- /docs/deployment/saml/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/saml/settings.json -------------------------------------------------------------------------------- /docs/deployment/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/docs/deployment/settings.cfg -------------------------------------------------------------------------------- /scripts/bemserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/bemserver.sh -------------------------------------------------------------------------------- /scripts/install/install-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/install/install-dev.sh -------------------------------------------------------------------------------- /scripts/install/install-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/install/install-prod.sh -------------------------------------------------------------------------------- /scripts/install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/install/install.sh -------------------------------------------------------------------------------- /scripts/maintenance/h2g_check_disk_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/h2g_check_disk_space.py -------------------------------------------------------------------------------- /scripts/maintenance/load_ifc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/load_ifc.py -------------------------------------------------------------------------------- /scripts/maintenance/maintenance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/maintenance.sh -------------------------------------------------------------------------------- /scripts/maintenance/repack_hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/repack_hdf5.py -------------------------------------------------------------------------------- /scripts/maintenance/repack_hdf5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/repack_hdf5.sh -------------------------------------------------------------------------------- /scripts/maintenance/set_maintenance_mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/maintenance/set_maintenance_mode.sh -------------------------------------------------------------------------------- /scripts/setup/setup-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/setup/setup-tasks.sh -------------------------------------------------------------------------------- /scripts/setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/setup/setup.sh -------------------------------------------------------------------------------- /scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/scripts/utils.sh -------------------------------------------------------------------------------- /settings/apache2/bemserver-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/settings/apache2/bemserver-ssl.conf -------------------------------------------------------------------------------- /settings/apache2/bemserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/settings/apache2/bemserver.conf -------------------------------------------------------------------------------- /settings/settings-dev.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/settings/settings-dev.cfg -------------------------------------------------------------------------------- /settings/settings-prod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HIT2GAP-EU-PROJECT/bemserver/HEAD/settings/settings-prod.cfg --------------------------------------------------------------------------------