refactor: mutat kb/ -> memory/kb/ pentru memory search
- Mutat toate fișierele din kb/ în memory/kb/ - Actualizat toate referințele în fișiere (.md, .py, .html) - Actualizat 10 joburi cron cu noi căi - Memory search indexează acum 58 fișiere din memory/ - TOOLS.md actualizat cu documentație completă
This commit is contained in:
@@ -1164,7 +1164,7 @@
|
||||
].filter(Boolean).join('');
|
||||
|
||||
// Convert notes-data/ to kb/ for files.html links
|
||||
const filesPath = note.file.replace(/^notes-data\//, 'kb/');
|
||||
const filesPath = note.file.replace(/^notes-data\//, 'memory/kb/');
|
||||
return `
|
||||
<div class="note-card" onclick="openNote('${note.file}')">
|
||||
<div class="note-title">
|
||||
@@ -1190,7 +1190,7 @@
|
||||
document.getElementById('viewerTitle').textContent = note.title;
|
||||
const pathEl = document.getElementById('viewerPath');
|
||||
// Convert notes-data/ to kb/ for display and links
|
||||
const filesPath = note.file.replace(/^notes-data\//, 'kb/');
|
||||
const filesPath = note.file.replace(/^notes-data\//, 'memory/kb/');
|
||||
pathEl.textContent = filesPath;
|
||||
pathEl.href = 'files.html#' + filesPath;
|
||||
document.getElementById('viewerContent').innerHTML = '<p style="color: var(--text-muted)">Se încarcă...</p>';
|
||||
|
||||
Reference in New Issue
Block a user