Website: all changes in English versions of the files are applied to Russian version.
RU Website full sync at 14.12.2025
Details
Details
Script to check all updated files and show git diff (run in website/content/ru directory):
#!/usr/bin/env sh
Находим все .adoc файлы рекурсивно
find . -type f -name "*.adoc" | while read -r file; do
- Ищем строку с хеш-кодом в файле if grep -q '// Original EN revision.*[0-9a-f]\{40\}' "$file"; then
- Извлекаем хеш из файла hash=$(grep -o '// Original EN revision.*[0-9a-f]\{40\}' "$file" | tail -1 | grep -o '[0-9a-f]\{40\}$')
- находим diff изменений в английской версии git diff $hash ../en/$file >$file.swo if [ -s "$file.swo" ]; then echo "Файл diff не пустой: $file" else rm "$file.swo" fi fi
done
Diff Detail
Diff Detail
- Repository
- R9 FreeBSD doc repository
- Lint
Lint Skipped - Unit
Tests Skipped