@@ -424,6 +424,7 @@ def copy_robots_txt(
424
424
if not www_root .exists ():
425
425
logging .info ("Skipping copying robots.txt (www root does not even exist)." )
426
426
return
427
+ logging .info ("Copying robots.txt..." )
427
428
template_path = HERE / "templates" / "robots.txt"
428
429
robots_path = www_root / "robots.txt"
429
430
shutil .copyfile (template_path , robots_path )
@@ -440,6 +441,7 @@ def build_sitemap(
440
441
if not www_root .exists ():
441
442
logging .info ("Skipping sitemap generation (www root does not even exist)." )
442
443
return
444
+ logging .info ("Starting sitemap generation..." )
443
445
template_path = HERE / "templates" / "sitemap.xml"
444
446
template = jinja2 .Template (template_path .read_text (encoding = "UTF-8" ))
445
447
rendered_template = template .render (languages = languages , versions = versions )
@@ -454,6 +456,7 @@ def build_404(www_root: Path, group):
454
456
if not www_root .exists ():
455
457
logging .info ("Skipping 404 page generation (www root does not even exist)." )
456
458
return
459
+ logging .info ("Copying 404 page..." )
457
460
not_found_file = www_root / "404.html"
458
461
shutil .copyfile (HERE / "templates" / "404.html" , not_found_file )
459
462
not_found_file .chmod (0o664 )
@@ -1022,6 +1025,7 @@ def major_symlinks(
1022
1025
- /fr/3/ → /fr/3.9/
1023
1026
- /es/3/ → /es/3.9/
1024
1027
"""
1028
+ logging .info ("Creating major version symlinks..." )
1025
1029
current_stable = Version .current_stable (versions ).name
1026
1030
for language in languages :
1027
1031
symlink (
@@ -1051,6 +1055,7 @@ def dev_symlink(
1051
1055
- /fr/dev/ → /fr/3.11/
1052
1056
- /es/dev/ → /es/3.11/
1053
1057
"""
1058
+ logging .info ("Creating development version symlinks..." )
1054
1059
current_dev = Version .current_dev (versions ).name
1055
1060
for language in languages :
1056
1061
symlink (
@@ -1096,6 +1101,7 @@ def proofread_canonicals(
1096
1101
- /3.11/whatsnew/3.11.html typically would link to
1097
1102
/3/whatsnew/3.11.html, which may not exist yet.
1098
1103
"""
1104
+ logging .info ("Checking canonical links..." )
1099
1105
canonical_re = re .compile (
1100
1106
"""<link rel="canonical" href="https://docs.python.org/([^"]*)" />"""
1101
1107
)
0 commit comments