chore: import legacy 1998 site snapshot

This commit is contained in:
2026-03-27 17:41:09 +03:00
commit be95938580
483 changed files with 37070 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

10
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,10 @@
# Default ignored files
/shelf/
/workspace.xml
# Ignored default folder with query files
/queries/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/

8
.idea/1998-cad-ru.iml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Ask2AgentMigrationStateService">
<option name="migrationStatus" value="COMPLETED" />
</component>
</project>

6
.idea/encodings.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding">
<file url="file://$PROJECT_DIR$/html/index.htm" charset="KOI8-R" />
</component>
</project>

8
.idea/modules.xml generated Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/1998-cad-ru.iml" filepath="$PROJECT_DIR$/.idea/1998-cad-ru.iml" />
</modules>
</component>
</project>

19
.idea/php.xml generated Normal file
View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MessDetectorOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCSFixerOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PHPCodeSnifferOptionsConfiguration">
<option name="highlightLevel" value="WARNING" />
<option name="transferred" value="true" />
</component>
<component name="PhpStanOptionsConfiguration">
<option name="transferred" value="true" />
</component>
<component name="PsalmOptionsConfiguration">
<option name="transferred" value="true" />
</component>
</project>

View File

@@ -0,0 +1,79 @@
# Разработка сайта LPON.RU
# == Конфикурационный файл nginx cadpoint.conf
# Описываем апстрим-потоки которые должен подключить Nginx
# Для каждого сайта надо настроить свйо поток, со своим уникальным именем.
# Если будете настраивать несколько python (django) сайтов - измените название upstream
# конфигурируем сервер
server {
server_name 1998.cadpoint.ru; # доменное имя сайта
# listen 443 ssl http2; # managed by Certbot
listen 80; # managed by Certbot
root /home/web/cadpoint-ru_1998/html;
location = / {
try_files /index.htm =404;
}
charset koi8-r; # кодировка по умолчанию
source_charset koi8-r;
access_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-access.log; # логи с доступом
error_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-error.log; # логи с ошибками
client_max_body_size 100M; # максимальный объем файла для загрузки на сайт (max upload size)
error_page 404 /404.html;
error_page 500 /500.html;
# location /robots.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение robots.txt
# location /favicon.ico { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon.ico
# location /favicon.gif { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /favicon.png { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /favicon.svg { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /author.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение author.txt
location = /404.html {
root /home/web/cadpoint-ru_1998/html/index.html;
internal;
}
location = /500.html {
root /home/web/cadpoint-ru_1998/html/index.html;
internal;
}
# location ~ \.(html|htm|ico|svg|png|gif|jpg|jpeg)$ {
# root /home/web/cadpoint-ru_1998/public; # Расположение статичных *.xml, *.html и *.txt
# }
}
# переадресация с www на "без" www
server {
server_name www.1998.cadpoint.ru;
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
return 301 http://1998.cadpoint.ru$request_uri;
}
server {
server_name 1998.cadpoint.ru;
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
return 301 http://1998.cadpoint.ru$request_uri;
}
server {
server_name www.1998.cadpoint.ru;
listen 80;
if ($host = www.1998.cadpoint.ru) {
return 301 http://$host$request_uri;
} # managed by Certbot
}

View File

@@ -0,0 +1,83 @@
# Разработка сайта LPON.RU
# == Конфикурационный файл nginx cadpoint.conf
# Описываем апстрим-потоки которые должен подключить Nginx
# Для каждого сайта надо настроить свйо поток, со своим уникальным именем.
# Если будете настраивать несколько python (django) сайтов - измените название upstream
# конфигурируем сервер
server {
server_name 1998.cadpoint.ru; # доменное имя сайта
# listen 443 ssl http2; # managed by Certbot
listen 443 ssl; # managed by Certbot
root /home/web/cadpoint-ru_1998/html;
location = / {
try_files /index.htm =404;
# try_files /index.htm;
}
ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
charset koi8-r; # кодировка по умолчанию
access_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-access.log; # логи с доступом
error_log /home/web/cadpoint-ru_1998/logs/cadpoint-ru_1998-error.log; # логи с ошибками
client_max_body_size 100M; # максимальный объем файла для загрузки на сайт (max upload size)
error_page 404 /404.html;
error_page 500 /500.html;
# location /robots.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение robots.txt
# location /favicon.ico { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon.ico
# location /favicon.gif { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /favicon.png { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /favicon.svg { root /home/web/cadpoint-ru_1998/html; } # Расположение favicon
# location /author.txt { root /home/web/cadpoint-ru_1998/html; } # Расположение author.txt
location = /404.html {
root /home/web/cadpoint-ru_1998/html/index.html;
internal;
}
location = /500.html {
root /home/web/cadpoint-ru_1998/html/index.html;
internal;
}
# location ~ \.(html|htm|ico|svg|png|gif|jpg|jpeg)$ {
# root /home/web/cadpoint-ru_1998/public; # Расположение статичных *.xml, *.html и *.txt
# }
}
# переадресация с www на "без" www
server {
server_name www.1998.cadpoint.ru;
return 301 http://1998.cadpoint.ru$request_uri;
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/1998.cadpoint.ru/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/1998.cadpoint.ru/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = 1998.cadpoint.ru) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name 1998.cadpoint.ru;
listen 80;
return 404; # managed by Certbot
}
server {
if ($host = www.1998.cadpoint.ru) {
return 301 https://$host$request_uri;
} # managed by Certbot
server_name www.1998.cadpoint.ru;
listen 80;
return 404; # managed by Certbot
}

BIN
html/.DS_Store vendored Normal file

Binary file not shown.

BIN
html/_b/0co.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 471 B

BIN
html/_b/0ex.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

BIN
html/_b/0fr.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 B

BIN
html/_b/0l.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

BIN
html/_b/0nw.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 423 B

BIN
html/_b/0ot.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 B

BIN
html/_b/0pb.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 608 B

BIN
html/_b/0pr.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 B

BIN
html/_b/0r.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

BIN
html/_b/0sh.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 B

BIN
html/_b/1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 196 B

BIN
html/_b/1co.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

BIN
html/_b/1ex.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

BIN
html/_b/1fr.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 458 B

BIN
html/_b/1l.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 B

BIN
html/_b/1nw.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 442 B

BIN
html/_b/1ot.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

BIN
html/_b/1pb.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 627 B

BIN
html/_b/1pr.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 601 B

BIN
html/_b/1r.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

BIN
html/_b/1sh.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

BIN
html/_b/2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 844 B

BIN
html/_b/3.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 B

BIN
html/_b/4.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

BIN
html/_b/50.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

BIN
html/_b/501.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 B

BIN
html/_b/502.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

BIN
html/_b/51.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 B

BIN
html/_b/52.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 282 B

BIN
html/_b/53.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 B

BIN
html/_b/54.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

BIN
html/_b/55.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 289 B

BIN
html/_b/56.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 B

BIN
html/_b/57.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 388 B

BIN
html/_b/58.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 287 B

BIN
html/_b/59.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B

BIN
html/_b/6l.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

BIN
html/_b/6r.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

BIN
html/_b/7.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 B

BIN
html/_b/8.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 B

BIN
html/_b/9.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 227 B

BIN
html/_b/a.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 B

BIN
html/_b/b.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

BIN
html/_b/b1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 319 B

BIN
html/_b/bgr1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 B

BIN
html/_b/c.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

BIN
html/_b/c1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 B

BIN
html/_b/co_name.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
html/_b/d.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

BIN
html/_b/d1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

BIN
html/_b/e.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 306 B

BIN
html/_b/e1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 B

BIN
html/_b/event.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 KiB

BIN
html/_b/f.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 310 B

BIN
html/_b/f1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

BIN
html/_b/fr_1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B

BIN
html/_b/fr_2.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

BIN
html/_b/fr_3conf.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 988 B

BIN
html/_b/fr_3down.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 868 B

BIN
html/_b/fr_3glos.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 872 B

BIN
html/_b/fr_3gost.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 856 B

BIN
html/_b/fr_3news.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

BIN
html/_b/fr_3null.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

BIN
html/_b/fr_3obja.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 919 B

BIN
html/_b/fr_3pric.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 858 B

BIN
html/_b/fr_3skid.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 B

BIN
html/_b/fr_4conf0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 B

BIN
html/_b/fr_4conf1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 452 B

BIN
html/_b/fr_4down0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 387 B

BIN
html/_b/fr_4down1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 381 B

BIN
html/_b/fr_4glos0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 B

BIN
html/_b/fr_4glos1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 419 B

BIN
html/_b/fr_4gost0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

BIN
html/_b/fr_4gost1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 302 B

BIN
html/_b/fr_4line.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 B

BIN
html/_b/fr_4news0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 333 B

BIN
html/_b/fr_4news1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

BIN
html/_b/fr_4obja0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

BIN
html/_b/fr_4obja1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 400 B

BIN
html/_b/fr_4pric0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 B

BIN
html/_b/fr_4pric1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 B

BIN
html/_b/fr_4skid0.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

BIN
html/_b/fr_4skid1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

BIN
html/_b/fr_5.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

BIN
html/_b/fr_box.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
html/_b/g.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 358 B

BIN
html/_b/g1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 291 B

BIN
html/_b/h.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 B

BIN
html/_b/h1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 347 B

BIN
html/_b/header.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Some files were not shown because too many files have changed in this diff Show More