It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://arkhipsoft.ru/Catalog/All

  1. <html><body><script>
  2.  
  3.        // Функция для работы с cookies
  4.        function getCookie(name) {
  5.            let matches = document.cookie.match(new RegExp(
  6.                '(?:^|; )' + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + '=([^;]*)'
  7.            ));
  8.            return matches ? decodeURIComponent(matches[1]) : undefined;
  9.        }
  10.  
  11.        function setCookie(name, value, days) {
  12.            let expires = '';
  13.            if (days) {
  14.                let date = new Date();
  15.                date.setTime(date.getTime() + days * 24 * 60 * 60 * 1000);
  16.                expires = '; expires=' + date.toUTCString();
  17.            }
  18.            document.cookie = name + '=' + encodeURIComponent(value) + expires + '; path=/';
  19.        }
  20.  
  21.        // Основная логика
  22.        document.addEventListener('DOMContentLoaded', function() {
  23.            const loader = document.getElementById('loader');
  24.            const content = document.getElementById('content');
  25.            
  26.            // Проверяем наличие cookie
  27.            if (getCookie('pageLoadedConfirmedn')) {
  28.                // Если cookie есть - сразу показываем контент
  29.                loader.style.display = 'none';
  30.                content.style.display = 'block';
  31.            } else {
  32.                if(document.referrer && !getCookie('initialReferrer')) {
  33.                    setCookie('initialReferrer', document.referrer, 0.1); // Храним 2.4 часа (0.1 дня)
  34.                }
  35.                // Если нет - устанавливаем cookie и перезагружаем
  36.                setCookie('pageLoadedConfirmedn', 'true', 300); // Храним 1 день
  37.                
  38.                // Даем время на установку cookie перед перезагрузкой
  39.                setTimeout(() => {
  40.    window.location.reload();
  41. }, 300);
  42.            }
  43.        });
  44.    </script></body></html>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda