thunderbird2docuware/dialog/dialog.html
sylyx 2befbb042b DocuWare Ablage – Thunderbird-Extension v0.8.0
Thunderbird-MailExtension zum Ablegen von E-Mails in DocuWare
  (.eml + PDF + Anhänge), dynamische Indexfelder aus dem Store-Dialog,
  Auswahllisten, Identity-Service-Login. Self-distribution-Updates
  über updates.json auf eigenem Gitea.
2026-06-03 13:15:59 +02:00

55 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>In DocuWare ablegen</title>
<link rel="stylesheet" href="dialog.css" />
</head>
<body>
<div class="titlebar">In DocuWare ablegen</div>
<header>
<h1 id="cabHeading">Ablage</h1>
<div class="toolbar">
<button id="cancel" class="link"> Abbrechen</button>
<button id="reset" class="link">↺ Zurücksetzen</button>
<span class="spacer"></span>
<button id="submit" class="primary">Ablegen</button>
</div>
</header>
<main>
<div id="multiNote" class="muted" style="margin-bottom:8px;"></div>
<div class="target">
<label for="cabinet">Ziel</label>
<select id="cabinet"><option value="">Lade …</option></select>
</div>
<div class="target" id="dialogRow" style="display:none;">
<label for="storeDialog">Ablagedialog</label>
<select id="storeDialog"></select>
</div>
<div id="fields" class="fields"><div class="muted">Ziel wählen …</div></div>
</main>
<footer>
<section class="options">
<label class="radio"><input type="radio" name="scope" value="both" checked /> E-Mail und Anhänge</label>
<label class="radio"><input type="radio" name="scope" value="att" /> Nur Anhänge</label>
<label class="radio"><input type="radio" name="scope" value="eml" /> Nur E-Mail</label>
<label class="check"><input type="checkbox" id="optPdf" /> Zusätzlich als PDF ablegen</label>
<ul id="attList" class="att-list"></ul>
</section>
<div id="status" class="muted"></div>
</footer>
<script src="../lib/store.js"></script>
<script src="../lib/auth.js"></script>
<script src="../lib/docuware.js"></script>
<script src="../lib/mail.js"></script>
<script src="../lib/pdf.js"></script>
<script src="dialog.js"></script>
</body>
</html>