mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-19 09:29:36 +01:00
* Introduce separate server package * Implement basic visualization of solve response * Make fetch endpoint depend on environment * Introduce features flag for localhost cors support * Serve static files from './assets' directory * Add Dockerfile as example for server with frontend * Support multiple solving strategies * Support stable model semantics with nogoods * Introduce custom node type for nicer layout * Support more options and multiple models * Use standard example for adfs on the frontend * Use unoptimised hybrid step for better presentation * Upgrade frontend dependencies * Animate graph changes * Experiment with timeout on API endpoints * Relax CORS restrictions for local development * Add API for adding/deleting users; login; logout * Add API for uploading and solving adf problems * Add API for getting and updating user * Return early for parse and solve; Add Adf GET * Add Delete and Index endpoints for ADFs * Add basic UI for user endpoints * Enforce username and password to be set on login * Show colored snackbars * Allow file upload for ADF; fix some server bugs * Implement ADF Add Form and Overview * Add Detail View for ADF problems * Add docker-compose file for mongodb (development) * Add mongodb (DEV) data directory to dockerignore * Let unknown routes be handled by frontend * Add legal information page to frontend * Change G6 Graph layout slightly * Add missing doc comments to lib * Update legal information regarding cookies * Add project logos to frontend * Add help texts to frontend * Move DoubleLabeledGraph from lib to server * Give example for custom Adf datastructure in docs * Update README and Project Website * Update devskim.yml * Add READMEs for frontend and server --------- Co-authored-by: monsterkrampe <monsterkrampe@users.noreply.github.com>
100 lines
3.6 KiB
HTML
100 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ADF-BDD.dev - Legal Notice</title>
|
|
<meta name="description" content="Impressum and Data Protection Regulation for adf-bdd.dev">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
font-family: Helvetica;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
section {
|
|
max-width: 1000px;
|
|
margin: 0 auto 32px;
|
|
padding: 16px;
|
|
box-shadow: 0 0 10px 0px rgba(0,0,0,0.4);
|
|
}
|
|
section > :first-child {
|
|
margin-top: 0;
|
|
}
|
|
section > :last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1>ADF-BDD.DEV Legal Notice</h1>
|
|
</header>
|
|
|
|
<section>
|
|
<h2>Impressum</h2>
|
|
|
|
The <a href="https://tu-dresden.de/impressum?set_language=en" target="_blank" rel="noreferrer noopener">Impressum of TU Dresden</a> applies with the following amendments:
|
|
|
|
<h3>Responsibilities - Content and Technical Implementation</h3>
|
|
|
|
<p>
|
|
Dipl.-Inf. Lukas Gerlach<br>
|
|
Technische Universität Dresden<br>
|
|
Fakultät Informatik<br>
|
|
Institut für Theoretische Informatik<br>
|
|
Professur für Wissensbasierte Systeme<br>
|
|
01062 Dresden<br>
|
|
GERMANY
|
|
</p>
|
|
<p>
|
|
Email: lukas.gerlach@tu-dresden.de<br>
|
|
Phone: (+49) 351 / 463 43503
|
|
</p>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Data Protection Regulation</h2>
|
|
<p>
|
|
We process your personal data only in form of metadata that is send to us when you access the website.
|
|
This is done to pursue our legitimate interest of providing and improving this publicly available website (https://adf-bdd.dev).
|
|
To this aim, this metadata is also written to server log files.
|
|
The data may contain the following of your personal information: public IP address, time of access, internet browser (e.g. user agent, version), operating system, referrer url, hostname of requesting machine.
|
|
We only set cookies that are necessary for the provision of our service, i.e. to check if a user is logged in.
|
|
We do not set any so-called tracking cookies and we do not use any third party analytics tools on this website.
|
|
</p>
|
|
<h3>Legal basis</h3>
|
|
<p>
|
|
The legal basis for the data processing is <a href="https://gdpr.eu/article-6-how-to-process-personal-data-legally/" target="_blank" rel="noreferrer noopener">Section §6 para.1 lit. f GDPR</a>.
|
|
</p>
|
|
<h3>Rights of data subjects</h3>
|
|
<ul>
|
|
<li>You have the right to obtain information from TU Dresden about the data stored about your person and/or to have incorrectly stored data corrected.</li>
|
|
<li>You have the right to erasure or restriction of the processing and/or a right to object to the processing.</li>
|
|
<li>You can contact TU Dresden's Data Protection Officer at any time.
|
|
<p>
|
|
Tel.: +49 351 / 463 32839<br>
|
|
Fax: +49 351 / 463 39718<br>
|
|
Email: informationssicherheit@tu-dresden.de<br>
|
|
<a href="https://tu-dresden.de/informationssicherheit" target="_blank" rel="noreferrer noopener">https://tu-dresden.de/informationssicherheit</a>
|
|
</p>
|
|
</li>
|
|
<li>
|
|
You also have the right to complain to a supervisory authority if you are concerned that the processing of your personal data is an infringement of the law. The competent supervisory authority for data protection is:
|
|
<p>
|
|
Saxon Data Protection Commissioner<br>
|
|
Ms. Dr. Juliane Hundert<br>
|
|
Devrientstraße 5<br>
|
|
01067 Dresden<br>
|
|
Email: saechsdsb@slt.sachsen.de<br>
|
|
Phone: + 49 351 / 85471 101<br>
|
|
<a href="http://www.datenschutz.sachsen.de" target="_blank" rel="noreferrer noopener">www.datenschutz.sachsen.de</a>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
|
|
</body>
|
|
</html>
|
|
|