501 lines
30 KiB
Bash
501 lines
30 KiB
Bash
border: none !important;
|
||
border-radius: 6px !important;
|
||
cursor: pointer !important;
|
||
font-size: 14px !important;
|
||
transition: background-color 0.2s !important;
|
||
}
|
||
|
||
.ai-button:hover {
|
||
background: #0056b3 !important;
|
||
}
|
||
|
||
.ai-button.secondary {
|
||
background: #6c757d !important;
|
||
}
|
||
|
||
.ai-button.secondary:hover {
|
||
background: #545b62 !important;
|
||
}
|
||
|
||
.ai-button.success {
|
||
background: #28a745 !important;
|
||
}
|
||
|
||
.ai-button.success:hover {
|
||
background: #1e7e34 !important;
|
||
}
|
||
|
||
.ai-buttons-container {
|
||
margin-top: 8px !important;
|
||
display: flex !important;
|
||
flex-wrap: wrap !important;
|
||
gap: 4px !important;
|
||
}
|
||
|
||
.typing-indicator::before {
|
||
content: "🤖" !important;
|
||
margin-right: 8px !important;
|
||
font-size: 16px !important;
|
||
}
|
||
|
||
.typing-indicator {
|
||
text-align: left !important;
|
||
font-size: 14px !important;
|
||
color: #6c757d !important;
|
||
}
|
||
|
||
.typing-text::after {
|
||
font-weight: bold !important;
|
||
}
|
||
`;
|
||
|
||
// Функция для добавления кнопок к сообщению
|
||
function addButtonsToMessage(messageElement, buttons) {
|
||
if (!buttons || buttons.length === 0) return;
|
||
|
||
const buttonContainer = document.createElement('div');
|
||
buttonContainer.className = 'ai-buttons-container';
|
||
|
||
buttons.forEach(button => {
|
||
const btn = document.createElement('button');
|
||
btn.className = `ai-button ${button.type || 'secondary'}`;
|
||
btn.textContent = button.text;
|
||
btn.onclick = () => {
|
||
if (button.action) {
|
||
button.action();
|
||
}
|
||
};
|
||
buttonContainer.appendChild(btn);
|
||
});
|
||
|
||
messageElement.appendChild(buttonContainer);
|
||
}
|
||
|
||
// Функция для улучшенного эффекта печатания
|
||
function typeMessageImproved(element, text, speed = 30) {
|
||
let i = 0;
|
||
element.textContent = '';
|
||
|
||
function typeChar() {
|
||
if (i < text.length) {
|
||
element.textContent += text.charAt(i);
|
||
i++;
|
||
|
||
// Динамическая скорость - быстрее для пробелов и знаков препинания
|
||
const currentChar = text.charAt(i - 1);
|
||
const delay = (currentChar === ' ' || currentChar === '.' || currentChar === '!') ? speed * 0.5 : speed;
|
||
|
||
setTimeout(typeChar, delay);
|
||
}
|
||
}
|
||
|
||
typeChar();
|
||
}
|
||
|
||
// Добавляем стили в head
|
||
const styleElement = document.createElement('style');
|
||
styleElement.textContent = additionalStyles;
|
||
document.head.appendChild(styleElement);
|
||
|
||
// Экспортируем функции
|
||
window.AIDrawerImprovements = {
|
||
addButtonsToMessage,
|
||
typeMessageImproved
|
||
};
|
||
|
||
console.log('AI Drawer Improvements loaded');
|
||
EOF
|
||
|
||
grep -n "AI Drawer: HTML added" /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
sed -i '316a\
|
||
st script = document.createElement("script");\
|
||
ts.js";\
|
||
load = function() {\
|
||
sole.log("AI Drawer Improvements loaded");\
|
||
t.head.appendChild(script);' /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
grep -n "function addMessage" /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
cat > /var/www/fastuser/data/www/crm.clientright.ru/test_ai_drawer_improvements.html << 'EOF'
|
||
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Тест улучшений AI Drawer</title>
|
||
<style>
|
||
body { font-family: Arial, sans-serif; margin: 20px; }
|
||
.test-section { margin: 20px 0; padding: 15px; border: 1px solid #ddd; border-radius: 5px; }
|
||
.success { background-color: #d4edda; border-color: #c3e6cb; }
|
||
.error { background-color: #f8d7da; border-color: #f5c6cb; }
|
||
.info { background-color: #d1ecf1; border-color: #bee5eb; }
|
||
button { padding: 10px 20px; margin: 5px; cursor: pointer; }
|
||
pre { background: #f8f9fa; padding: 10px; border-radius: 3px; overflow-x: auto; }
|
||
|
||
/* Стили для демонстрации */
|
||
.demo-chat {
|
||
border: 1px solid #ddd;
|
||
border-radius: 10px;
|
||
padding: 15px;
|
||
margin: 10px 0;
|
||
background: #f9f9f9;
|
||
}
|
||
|
||
.message {
|
||
margin: 8px 0;
|
||
padding: 10px;
|
||
border-radius: 10px;
|
||
max-width: 80%;
|
||
}
|
||
|
||
.message.user {
|
||
background: #007bff;
|
||
color: white;
|
||
margin-left: auto;
|
||
}
|
||
|
||
.message.bot {
|
||
background: #e9ecef;
|
||
color: #333;
|
||
}
|
||
|
||
.typing-indicator {
|
||
display: none;
|
||
padding: 12px 16px;
|
||
background: #f8f9fa;
|
||
border: 1px solid #dee2e6;
|
||
border-radius: 15px;
|
||
margin: 8px 0;
|
||
max-width: 300px;
|
||
font-size: 14px;
|
||
color: #6c757d;
|
||
text-align: left;
|
||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||
}
|
||
|
||
.typing-indicator.show {
|
||
display: block;
|
||
}
|
||
|
||
.typing-indicator::before {
|
||
content: "🤖";
|
||
margin-right: 8px;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.typing-text {
|
||
display: inline-block;
|
||
}
|
||
|
||
.typing-text::after {
|
||
content: "|";
|
||
animation: blink 1s infinite;
|
||
color: #007bff;
|
||
font-weight: bold;
|
||
}
|
||
|
||
@keyframes blink {
|
||
0%, 50% { opacity: 1; }
|
||
51%, 100% { opacity: 0; }
|
||
}
|
||
|
||
.ai-button {
|
||
display: inline-block;
|
||
padding: 8px 16px;
|
||
margin: 4px;
|
||
background: #007bff;
|
||
color: white;
|
||
border: none;
|
||
border-radius: 6px;
|
||
cursor: pointer;
|
||
font-size: 14px;
|
||
transition: background-color 0.2s;
|
||
}
|
||
|
||
.ai-button:hover {
|
||
background: #0056b3;
|
||
}
|
||
|
||
.ai-button.secondary {
|
||
background: #6c757d;
|
||
}
|
||
|
||
.ai-button.secondary:hover {
|
||
background: #545b62;
|
||
}
|
||
|
||
.ai-button.success {
|
||
background: #28a745;
|
||
}
|
||
|
||
.ai-button.success:hover {
|
||
background: #1e7e34;
|
||
}
|
||
|
||
.ai-buttons-container {
|
||
margin-top: 8px;
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 4px;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>🎨 Тест улучшений AI Drawer</h1>
|
||
|
||
<div class="test-section info">
|
||
<h3>📋 Что тестируем</h3>
|
||
<ul>
|
||
<li>✅ <strong>Улучшенный индикатор печатания</strong> - больше размер, лучше стили, эмодзи робота</li>
|
||
<li>✅ <strong>Кнопки в сообщениях</strong> - интерактивные кнопки для быстрых действий</li>
|
||
<li>✅ <strong>Улучшенный эффект печатания</strong> - динамическая скорость</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<div class="test-section">
|
||
<h3>🤖 Демо чат с улучшениями</h3>
|
||
<div class="demo-chat">
|
||
<div id="demo-messages"></div>
|
||
<div class="typing-indicator">
|
||
<span class="typing-text">Обрабатываю запрос в n8n...</span>
|
||
</div>
|
||
</div>
|
||
<button onclick="testTypingIndicator()">Тест индикатора печатания</button>
|
||
<button onclick="testTypingEffect()">Тест эффекта печатания</button>
|
||
<button onclick="testButtons()">Тест кнопок</button>
|
||
<button onclick="clearDemo()">Очистить</button>
|
||
</div>
|
||
|
||
<div class="test-section">
|
||
<h3>📊 Результаты тестов</h3>
|
||
<div id="test-results"></div>
|
||
</div>
|
||
|
||
<script>
|
||
// Функция добавления сообщения в демо чат
|
||
function addDemoMessage(text, isUser = false) {
|
||
const messagesContainer = document.getElementById('demo-messages');
|
||
const messageDiv = document.createElement('div');
|
||
messageDiv.className = 'message ' + (isUser ? 'user' : 'bot');
|
||
|
||
if (isUser) {
|
||
messageDiv.textContent = text;
|
||
} else {
|
||
messageDiv.innerHTML = '<span class="typing-text"></span>';
|
||
typeMessage(messageDiv.querySelector('.typing-text'), text);
|
||
}
|
||
|
||
messagesContainer.appendChild(messageDiv);
|
||
messagesContainer.scrollTop = messagesContainer.scrollHeight;
|
||
}
|
||
|
||
// Функция эффекта печатания
|
||
function typeMessage(element, text, speed = 30) {
|
||
let i = 0;
|
||
element.textContent = '';
|
||
|
||
function typeChar() {
|
||
if (i < text.length) {
|
||
element.textContent += text.charAt(i);
|
||
i++;
|
||
|
||
// Динамическая скорость
|
||
const currentChar = text.charAt(i - 1);
|
||
const delay = (currentChar === ' ' || currentChar === '.' || currentChar === '!') ? speed * 0.5 : speed;
|
||
|
||
setTimeout(typeChar, delay);
|
||
}
|
||
}
|
||
|
||
typeChar();
|
||
}
|
||
|
||
// Функция добавления кнопок
|
||
function addButtonsToMessage(messageElement, buttons) {
|
||
if (!buttons || buttons.length === 0) return;
|
||
|
||
const buttonContainer = document.createElement('div');
|
||
buttonContainer.className = 'ai-buttons-container';
|
||
|
||
buttons.forEach(button => {
|
||
const btn = document.createElement('button');
|
||
btn.className = `ai-button ${button.type || 'secondary'}`;
|
||
btn.textContent = button.text;
|
||
btn.onclick = () => {
|
||
if (button.action) {
|
||
button.action();
|
||
}
|
||
};
|
||
buttonContainer.appendChild(btn);
|
||
});
|
||
|
||
messageElement.appendChild(buttonContainer);
|
||
}
|
||
|
||
// Тесты
|
||
function testTypingIndicator() {
|
||
const indicator = document.querySelector('.typing-indicator');
|
||
const results = document.getElementById('test-results');
|
||
|
||
indicator.classList.add('show');
|
||
results.innerHTML += '<div class="success">✅ Индикатор печатания показан</div>';
|
||
|
||
setTimeout(() => {
|
||
indicator.classList.remove('show');
|
||
results.innerHTML += '<div class="success">✅ Индикатор печатания скрыт</div>';
|
||
}, 3000);
|
||
}
|
||
|
||
function testTypingEffect() {
|
||
addDemoMessage('Это тестовое сообщение с эффектом печатания! Оно должно появляться постепенно.', false);
|
||
document.getElementById('test-results').innerHTML += '<div class="success">✅ Эффект печатания запущен</div>';
|
||
}
|
||
|
||
function testButtons() {
|
||
const messageDiv = document.createElement('div');
|
||
messageDiv.className = 'message bot';
|
||
messageDiv.textContent = 'Выберите действие:';
|
||
|
||
addButtonsToMessage(messageDiv, [
|
||
{ text: 'Найти документы', type: 'success', action: () => alert('Поиск документов') },
|
||
{ text: 'Создать отчет', type: 'secondary', action: () => alert('Создание отчета') },
|
||
{ text: 'Помощь', type: 'secondary', action: () => alert('Показать помощь') }
|
||
]);
|
||
|
||
document.getElementById('demo-messages').appendChild(messageDiv);
|
||
document.getElementById('test-results').innerHTML += '<div class="success">✅ Кнопки добавлены</div>';
|
||
}
|
||
|
||
function clearDemo() {
|
||
document.getElementById('demo-messages').innerHTML = '';
|
||
document.getElementById('test-results').innerHTML = '';
|
||
document.querySelector('.typing-indicator').classList.remove('show');
|
||
}
|
||
|
||
// Автозапуск демо
|
||
setTimeout(() => {
|
||
addDemoMessage('Привет! Я AI ассистент с улучшенным интерфейсом.', false);
|
||
setTimeout(() => {
|
||
addDemoMessage('Что ты умеешь?', true);
|
||
}, 2000);
|
||
}, 1000);
|
||
</script>
|
||
</body>
|
||
</html>
|
||
EOF
|
||
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "Кеш очищен - улучшения применены"
|
||
cp /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl.backup /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "✅ Кеш очищен - AI Drawer восстановлен!"
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "✅ Кеш очищен - полноширинный индикатор готов!"
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "✅ Кеш очищен - убрали упоминание n8n!"
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "✅ Кеш очищен - исправлена обработка ответов от n8n!"
|
||
curl -X POST https://crm.clientright.ru/aiassist/n8n_proxy.php -H "Content-Type: application/json" -d '{"message":"тест","context":{"module":"Project","projectId":"390681"},"sessionId":"test-session"}' | jq .
|
||
tail -20 /var/log/apache2/error.log | grep -i "n8n\|ai\|drawer" || echo "Логи не найдены"
|
||
tail -20 /var/log/php_errors.log 2>/dev/null || tail -20 /var/log/php/error.log 2>/dev/null || echo "PHP логи не найдены"
|
||
curl -X POST https://crm.clientright.ru/aiassist/n8n_proxy.php -H "Content-Type: application/json" -d '{"message":"тест","context":{"module":"Project","projectId":"390681"},"sessionId":"test-session"}' -w "\nHTTP Status: %{http_code}\nTime: %{time_total}s\n" 2>/dev/null | tail -3
|
||
curl -X POST https://crm.clientright.ru/aiassist/n8n_proxy.php -H "Content-Type: application/json" -d '{"message":"тест","context":{"module":"Project","projectId":"390681"},"sessionId":"test-session"}' --max-time 10 -s -o /tmp/n8n_response.json && echo "Response saved to /tmp/n8n_response.json" && cat /tmp/n8n_response.json
|
||
ls -la /tmp/n8n_response.json && cat /tmp/n8n_response.json
|
||
rm -rf /var/www/fastuser/data/www/crm.clientright.ru/test/templates_c/v7/* 2>/dev/null && echo "✅ Кеш очищен - таймауты увеличены до 3 минут!"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/resources/css/ai-drawer.css
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/resources/js/ai-drawer.js
|
||
wc -l /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
head -91 /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl > /tmp/header_clean.tpl
|
||
tail -n +945 /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl >> /tmp/header_clean.tpl
|
||
cp /tmp/header_clean.tpl /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/modules/Vtiger/Header.tpl
|
||
rm /tmp/header_clean.tpl
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/aiassist/
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/resources/css/ai-drawer.css
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/layouts/v7/resources/js/ai-drawer.js
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/ai_drawer_improvements.js
|
||
tail -20 /var/log/apache2/error.log
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
cd /var/www/fastuser/data/www/crm.clientright.ru && python3 -m http.server 8080
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
cd /var/www/fastuser/data/www/crm.clientright.ru && git log --oneline -10
|
||
ls -la | head -20
|
||
find . -name "*.log" -mtime -1 | head -10
|
||
ls -la ai_drawer_improvements.js AI_DRAWER_README.md AI_DRAWER_UI_IMPROVEMENTS.md
|
||
mkdir -p /var/www/fastuser/data/www/crm.clientright.ru/test_logs
|
||
chmod 755 /var/www/fastuser/data/www/crm.clientright.ru/test_logs
|
||
ls -la /var/www/fastuser/data/www/crm.clientright.ru/test_logs/
|
||
curl -X GET "http://localhost:8080/test_log_server.php?action=status"
|
||
pkill -f "python3 -m http.server"
|
||
curl -X GET "http://localhost:8080/test_log_server.php?action=status"
|
||
curl -X GET "http://localhost:8080/test_log_server.php?action=read&limit=20" | python3 -m json.tool
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\2f2737de9aa376933d975ae30290447c910fdf40/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
find /var/www/fastuser/data/www/crm.clientright.ru -name "ai-drawer-test-log-2025-09-16T06_16_46.txt" -type f
|
||
ls -la ~/Downloads/ | grep ai-drawer-test-log
|
||
ls -la /home/*/Downloads/ | grep ai-drawer-test-log
|
||
find /home -name "*ai-drawer-test-log*" 2>/dev/null
|
||
git status
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\9b5f3f4f2368631e3455d37672ca61b6dce85430/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
cat /proc/sys/fs/inotify/max_user_watches
|
||
cat /proc/sys/fs/inotify/max_user_watches
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\6af2d906e8ca91654dd7c4224a73ef17900ad730/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\d750e54bba5cffada6d7b3d18e5688ba5e944ad0/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\b753cece5c67c47cb5637199a5a5de2b7100c180/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|
||
. "\var\www\fastuser\data\www\crm.clientright.ru\.cursor-server\bin\5911e9593196a000b1c00553aaf03b0b32042b90/out/vs/workbench/contrib/terminal/common/scripts/shellIntegration-bash.sh"
|