{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/View\/semantic-explorer\/chunks\/index.php"
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/View\/semantic-explorer\/dokumente\/index.php",
"content": "<?php ob_start(); ?>\n\n<nav class=\"breadcrumb\">\n <a href=\"\/\">Home<\/a> » <a href=\"\/explorer\">Explorer<\/a> » <a href=\"\/semantic-explorer\">Semantic Explorer<\/a> » Dokumente\n<\/nav>\n\n<h1>Dokumente<\/h1>\n<p>PDFs, DOCX, PPTX aus Nextcloud.<\/p>\n\n<form method=\"get\" class=\"filter-form\">\n <input type=\"text\" name=\"search\" value=\"<?= htmlspecialchars($currentSearch) ?>\" placeholder=\"Suchen...\">\n <select name=\"status\">\n <option value=\"\">Alle Status<\/option>\n <option value=\"done\" <?= $currentStatus === 'done' ? 'selected' : '' ?>>Verarbeitet<\/option>\n <option value=\"processing\" <?= $currentStatus === 'processing' ? 'selected' : '' ?>>In Bearbeitung<\/option>\n <option value=\"pending\" <?= $currentStatus === 'pending' ? 'selected' : '' ?>>Ausstehend<\/option>\n <option value=\"error\" <?= $currentStatus === 'error' ? 'selected' : '' ?>>Fehler<\/option>\n <\/select>\n <button type=\"submit\" class=\"btn btn--primary\">Filtern<\/button>\n <?php if ($currentSearch || $currentStatus): ?>\n <a href=\"\/semantic-explorer\/dokumente\" class=\"btn\">Reset<\/a>\n <?php endif; ?>\n<\/form>\n\n<?php if (!empty($documents)): ?>\n<p><?= count($documents) ?> Dokument(e) gefunden.<\/p>\n\n<table data-sortable>\n <thead>\n <tr>\n <th data-sort=\"filename\">Datei<\/th>\n <th data-sort=\"folder_path\">Pfad<\/th>\n <th data-sort=\"mime_type\">Typ<\/th>\n <th data-sort=\"file_size\">Groesse<\/th>\n <th data-sort=\"status\">Status<\/th>\n <th data-sort=\"chunk_count\">Chunks<\/th>\n <th data-sort=\"token_count\">Tokens<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <?php foreach ($documents as $doc): ?>\n <tr>\n <td><a href=\"\/semantic-explorer\/dokumente\/<?= $doc['id'] ?>\"><?= htmlspecialchars($doc['filename']) ?><\/a><\/td>\n <td><code><?= htmlspecialchars($doc['folder_path'] ?? '') ?><\/code><\/td>\n <td><code><?= htmlspecialchars($doc['mime_type'] ?? '-') ?><\/code><\/td>\n <td><?= number_format($doc['file_size'] \/ 1024, 0) ?> KB<\/td>\n <td>\n <span class=\"badge badge--<?= $doc['status'] ?>\"><?= $doc['status'] ?><\/span>\n <?php if ($doc['error_message']): ?>\n <br><small class=\"text-danger\"><?= htmlspecialchars(substr($doc['error_message'], 0, 50)) ?><\/small>\n <?php endif; ?>\n <\/td>\n <td><?= $doc['chunk_count'] ?><\/td>\n <td><?= number_format($doc['token_count']) ?><\/td>\n <\/tr>\n <?php endforeach; ?>\n <\/tbody>\n<\/table>\n<?php else: ?>\n<p>Keine Dokumente gefunden.<\/p>\n<?php endif; ?>\n\n<p class=\"links-bar\">\n <a href=\"\/semantic-explorer\">Zurueck zum Explorer<\/a>\n<\/p>\n\n<?php $content = ob_get_clean(); ?>\n<?php require VIEW_PATH . '\/layout.php'; ?>\n",
"numLines": 69,
"startLine": 1,
"totalLines": 69
}
}
}