Compare commits

...

2 Commits

Author SHA1 Message Date
Kornel Benko
271d4397bb Cosmetics in writing and parsing log-file after test
'check_accessible_urls'
2024-10-09 19:17:16 +02:00
Kornel Benko
6e7a795ed1 Amend(8) of c0ee28a7 2024-10-09 17:35:55 +02:00
37 changed files with 152 additions and 127 deletions

View File

@ -61,7 +61,8 @@ sub check_http_url($$$$) {
print $fe " " . $response->status_line . ": "; print $fe " " . $response->status_line . ": ";
return 3; return 3;
} }
my @title = (); my @atitle = ();
my %htitle = ();
my $res = 0; my $res = 0;
while ($buf =~ s/\<title\>([^\<]*)\<\/title\>//i) { while ($buf =~ s/\<title\>([^\<]*)\<\/title\>//i) {
my $title = $1; my $title = $1;
@ -69,13 +70,17 @@ sub check_http_url($$$$) {
$title =~ s/ +/ /g; $title =~ s/ +/ /g;
$title =~ s/^ //; $title =~ s/^ //;
$title =~ s/ $//; $title =~ s/ $//;
push(@title, $title); if (! defined($htitle{$title})) {
print $fe "title = \"$title\": "; push(@atitle, $title);
$htitle{$title} = 1;
}
if ($title =~ /Error 404|Not Found/) { if ($title =~ /Error 404|Not Found/) {
print $fe " Page reports 'Not Found' from \"$protocol://$host$getp\": "; print $fe " Page reports 'Not Found' from \"$protocol://$host$getp\": ";
$res = 3; $res = 3;
} }
} }
print $fe "title = \"" . join(': ', @atitle) . "\": ";
return $res; return $res;
} }

View File

@ -161,13 +161,17 @@ else {
print "Using tempdir \"" . abs_path($tempdir) . "\"\n"; print "Using tempdir \"" . abs_path($tempdir) . "\"\n";
my @wait = (); my %wait = ();
for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
my $pid = fork(); my $pid = fork();
if ($pid == 0) { if ($pid > 0) {
$wait{$pid} = $i;
}
elsif ($pid == 0) {
# I am child # I am child
open(my $fe, '>:encoding(UTF-8)', "$tempdir/xxxError$i"); open(my $fe, '>:encoding(UTF-8)', "$tempdir/xxxError$i");
my $subprocess = $i;
open(my $fs, '>:encoding(UTF-8)', "$tempdir/xxxSum$i"); open(my $fs, '>:encoding(UTF-8)', "$tempdir/xxxSum$i");
while (1) { while (1) {
open(my $fh, '+<', $countfile) or die("cannot open $countfile"); open(my $fh, '+<', $countfile) or die("cannot open $countfile");
@ -195,7 +199,7 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
my $u = $rentry->{u}; my $u = $rentry->{u};
my $use_curl = $rentry->{use_curl}; my $use_curl = $rentry->{use_curl};
print $fe "Checking($entryidx) '$u': "; print $fe "Checking($entryidx-$subprocess) '$u': ";
my ($res, $prnt, $outSum); my ($res, $prnt, $outSum);
try { try {
$res = check_url($u, $use_curl, $fe, $fs); $res = check_url($u, $use_curl, $fe, $fs);
@ -246,30 +250,45 @@ for (my $i = 0; $i < $NR_JOBS; $i++) { # Number of subprocesses
} }
} }
} }
$wait[$i] = $pid;
} }
for (my $i = 0; $i < $NR_JOBS; $i++) { sub readsublog($) {
my $p = $wait[$i]; my ($i) = @_;
if ($p > 0) { open(my $fe, '<', "$tempdir/xxxError$i");
waitpid($p, 0); while (my $l = <$fe>) {
open(my $fe, '<', "$tempdir/xxxError$i"); if ($l =~ /^NumberOfErrors\s(\d+)/) {
while (my $l = <$fe>) { $errorcount += $1;
if ($l =~ /^NumberOfErrors\s(\d+)/) {
$errorcount += $1;
}
else {
print $l;
}
} }
close($fe); else {
open(my $fs, '<', "$tempdir/xxxSum$i"); print $l;
while (my $l = <$fs>) {
print SFO $l;
} }
close($fs); }
close($fe);
open(my $fs, '<', "$tempdir/xxxSum$i");
while (my $l = <$fs>) {
print SFO $l;
}
close($fs);
}
my $p;
do {
$p = waitpid(-1, 0);
if (($p > 0) && defined($wait{$p}) && $wait{$p} >= 0) {
&readsublog($wait{$p});
$wait{$p} = -1;
} }
} }
until ($p < 0);
print SFO "Started to protocol remaining subprocess-logs\n";
for my $p (keys %wait) {
if ($wait{$p} >= 0) {
&readsublog($wait{$p});
$wait{$p} = -1;
}
}
print SFO "Stopped to protocol remaining subprocess-logs\n";
unlink($countfile); unlink($countfile);
if (%URLS) { if (%URLS) {
@ -348,7 +367,8 @@ sub parse_file($) {
my $line = 0; my $line = 0;
while (my $l = <FI>) { while (my $l = <FI>) {
$line++; $line++;
$l =~ s/[\r\n]+$//; # Simulate chomp chomp($l);
# $l =~ s/[\r\n]+$//; # Simulate chomp
if ($status eq "out") { if ($status eq "out") {
# searching for "\begin_inset Flex URL" # searching for "\begin_inset Flex URL"
@ -413,6 +433,6 @@ sub getnrjobs($$$) {
if ($nr_jobs < 2) { if ($nr_jobs < 2) {
return ($remaining); return ($remaining);
} }
my $diff = 1 + int($remaining / (2 * $nr_jobs)); my $diff = 1 + int($remaining / (3 * $nr_jobs));
return $diff; return $diff;
} }

View File

@ -10358,7 +10358,7 @@ Powerdot
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -49878,7 +49878,7 @@ Documentation of the \SpecialChar LaTeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -491,7 +491,7 @@ AmS
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -42561,7 +42561,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -58142,7 +58142,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -58162,7 +58162,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -58348,7 +58348,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -58367,7 +58367,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -58387,7 +58387,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Options" name "Options"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -58406,7 +58406,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -58666,7 +58666,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -58709,7 +58709,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -54327,7 +54327,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "وثيقة عن" name "وثيقة عن"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -54347,7 +54347,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -54512,7 +54512,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "وثيقة" name "وثيقة"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -54531,7 +54531,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -54551,7 +54551,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "خيارات" name "خيارات"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -54570,7 +54570,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -54771,7 +54771,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "وثيقة" name "وثيقة"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -54804,7 +54804,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -7494,7 +7494,7 @@ Elsevier
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -10398,7 +10398,7 @@ Powerdot
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -50448,7 +50448,7 @@ Dokumentation des \SpecialChar LaTeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -510,7 +510,7 @@ AmS
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -5605,7 +5605,7 @@ B.
\series bold \series bold
× ×
\series default \series default
4
\begin_inset space ~ \begin_inset space ~
\end_inset \end_inset
@ -12584,7 +12584,7 @@ qquad
\begin_inset Text \begin_inset Text
\begin_layout Plain Layout \begin_layout Plain Layout
4
\end_layout \end_layout
\end_inset \end_inset
@ -12662,7 +12662,7 @@ hfill
\begin_inset Text \begin_inset Text
\begin_layout Plain Layout \begin_layout Plain Layout
5
\end_layout \end_layout
\end_inset \end_inset
@ -12832,7 +12832,7 @@ Leerraum
\begin_inset space ~ \begin_inset space ~
\end_inset \end_inset
5
\begin_inset space \thinspace{} \begin_inset space \thinspace{}
\end_inset \end_inset
@ -42495,7 +42495,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Dokumentation" name "Dokumentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -55799,7 +55799,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Dokumentation" name "Dokumentation"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -55819,7 +55819,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -56005,7 +56005,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Dokumentation" name "Dokumentation"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -56024,7 +56024,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -56044,7 +56044,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Optionen" name "Optionen"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -56063,7 +56063,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -56323,7 +56323,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Dokumentation" name "Dokumentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -56366,7 +56366,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -47844,7 +47844,7 @@ Documentación del paquete \SpecialChar LaTeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -469,7 +469,7 @@ En el archivo
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -39621,7 +39621,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentación" name "Documentación"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -52276,7 +52276,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentación" name "Documentación"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -52296,7 +52296,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -52466,7 +52466,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentación" name "Documentación"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -52485,7 +52485,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -52505,7 +52505,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Opciónes" name "Opciónes"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -52524,7 +52524,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -52728,7 +52728,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentación" name "Documentación"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -52763,7 +52763,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -7711,7 +7711,7 @@ Elsevier
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/elsarticle/doc/elsdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -11020,7 +11020,7 @@ Powerdot
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -50757,7 +50757,7 @@ Documentation du paquetage \SpecialChar LaTeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -616,7 +616,7 @@ dans le fichier
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -6180,7 +6180,7 @@ right
\begin_inset space ~ \begin_inset space ~
\end_inset \end_inset
4
\series bold \series bold
× ×
\series default \series default
@ -13316,7 +13316,7 @@ qquad
\begin_inset Text \begin_inset Text
\begin_layout Plain Layout \begin_layout Plain Layout
4
\end_layout \end_layout
\end_inset \end_inset
@ -13396,7 +13396,7 @@ hfill
\begin_inset Text \begin_inset Text
\begin_layout Plain Layout \begin_layout Plain Layout
5
\end_layout \end_layout
\end_inset \end_inset
@ -43889,7 +43889,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -58448,7 +58448,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -58468,7 +58468,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -58654,7 +58654,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -58673,7 +58673,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -58693,7 +58693,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Options" name "Options"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -58712,7 +58712,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -58971,7 +58971,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -59014,7 +59014,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -11689,7 +11689,7 @@ Powerdot
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "CTAN" name "CTAN"
target "http://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/powerdot/doc/powerdot.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -51153,7 +51153,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -567,7 +567,7 @@ AmS
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -46600,7 +46600,7 @@ mhchem
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "取扱説明書" name "取扱説明書"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -60258,7 +60258,7 @@ Bib\SpecialChar TeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "取扱説明書" name "取扱説明書"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -60273,7 +60273,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -60481,7 +60481,7 @@ makeindex
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "取扱説明書" name "取扱説明書"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -60496,7 +60496,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -60520,7 +60520,7 @@ makeindex
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "オプション" name "オプション"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -60535,7 +60535,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -60850,7 +60850,7 @@ fancyhdr
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "取扱説明書" name "取扱説明書"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -60865,7 +60865,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -48221,7 +48221,7 @@ Documentation of the \SpecialChar LaTeX
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "pdfpages" name "pdfpages"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/pdfpages/pdfpages.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/pdfpages/pdfpages.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -522,7 +522,7 @@ AmS
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "amsguide.pdf" name "amsguide.pdf"
target "https://www.ctan.org/tex-archive/macros/amstex/doc/amsguide.pdf" target "https://mirrors.ctan.org/macros/amstex/doc/amsguide.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -39169,7 +39169,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/mhchem/mhchem.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/mhchem/mhchem.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -51929,7 +51929,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf" target "https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -51949,7 +51949,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/biblio/bibtex/contrib/doc/btxdoc.pdf https://mirrors.ctan.org/biblio/bibtex/contrib/doc/btxdoc.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -52117,7 +52117,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf" target "https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -52136,7 +52136,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/makeindex.pdf https://mirrors.ctan.org/indexing/makeindex/doc/makeindex.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -52156,7 +52156,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Options" name "Options"
target "https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi" target "https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi"
literal "false" literal "false"
\end_inset \end_inset
@ -52175,7 +52175,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/indexing/makeindex/doc/manpages.dvi https://mirrors.ctan.org/indexing/makeindex/doc/manpages.dvi
\end_layout \end_layout
\end_inset \end_inset
@ -52378,7 +52378,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf"
literal "false" literal "false"
\end_inset \end_inset
@ -52412,7 +52412,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/latex/contrib/fancyhdr/fancyhdr.pdf https://mirrors.ctan.org/macros/latex/contrib/fancyhdr/fancyhdr.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -3922,7 +3922,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -7734,7 +7734,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -4662,7 +4662,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -5212,7 +5212,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -3880,7 +3880,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -4781,7 +4781,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -3487,7 +3487,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -3559,7 +3559,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
\end_layout \end_layout
\end_inset \end_inset
@ -3609,7 +3609,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyguide.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -4256,7 +4256,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -4124,7 +4124,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://www.ctan.org/tex-archive/macros/generic/diagrams/xypic/doc/xyrefer.pdf https://mirrors.ctan.org/macros/generic/diagrams/xypic/doc/xyrefer.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -7962,7 +7962,7 @@ literal "true"
\begin_inset CommandInset href \begin_inset CommandInset href
LatexCommand href LatexCommand href
name "Documentation" name "Documentation"
target "https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf" target "https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf"
literal "false" literal "false"
\end_inset \end_inset

View File

@ -4590,7 +4590,7 @@ status collapsed
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/beamer/doc/beameruserguide.pdf https://mirrors.ctan.org/macros/latex/contrib/beamer/doc/beameruserguide.pdf
\end_layout \end_layout
\end_inset \end_inset

View File

@ -145,7 +145,7 @@ status open
\begin_layout Plain Layout \begin_layout Plain Layout
https://ctan.org/tex-archive/macros/latex/contrib/tcolorbox/tcolorbox.pdf https://mirrors.ctan.org/macros/latex/contrib/tcolorbox/tcolorbox.pdf
\end_layout \end_layout
\end_inset \end_inset