mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-07-31 07:46:57 -04:00
Fold the standalone rsync-web repo into the rsync source tree as rsync-web/, eliminating the sibling-checkout convention and the drift it causes between the release-time HTML snapshot in ../release/rsync-html and the source of truth in ../rsync-web. Flat-copy import (no git history merge). The standalone repo at github.com/RsyncProject/rsync-web is retained for historical reference and will be archived once the in-tree copy proves itself. Add /rsync-web/ to .gitattributes with export-ignore so the website content does not bloat the release source tarball produced by 'git archive' in packaging/release.py step_7_tarball. A follow-up commit repoints HTML_SRC in packaging/release.py at the new in-tree location.
49 lines
1.6 KiB
Raku
49 lines
1.6 KiB
Raku
# LaTeX2HTML 98.1p1 release (March 2nd, 1998)
|
|
# Associate images original text with physical files.
|
|
|
|
|
|
$key = q/{inline}alpha{inline}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="15" HEIGHT="13" ALIGN="BOTTOM" BORDER="0"
|
|
SRC="img1.gif"
|
|
ALT="$\alpha$">|;
|
|
|
|
$key = q/{displaymath}a(k+1,l+1)=(a(k,l)-X_k+X_l+1)bmodM{displaymath}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="322" HEIGHT="28"
|
|
SRC="img6.gif"
|
|
ALT="\begin{displaymath}a(k+1,l+1) = (a(k,l) - X_k + X_{l+1}) \bmod M \end{displaymath}">|;
|
|
|
|
$key = q/{displaymath}a(k,l)=(sum_i=k^lX_i)bmodM{displaymath}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="176" HEIGHT="56"
|
|
SRC="img3.gif"
|
|
ALT="\begin{displaymath}a(k,l) = (\sum_{i=k}^l X_i) \bmod M \end{displaymath}">|;
|
|
|
|
$key = q/{displaymath}b(k,l)=(sum_i=k^l(l-i+1)X_i)bmodM{displaymath}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="240" HEIGHT="56"
|
|
SRC="img4.gif"
|
|
ALT="\begin{displaymath}b(k,l) = (\sum_{i=k}^l (l-i+1)X_i) \bmod M \end{displaymath}">|;
|
|
|
|
$key = q/{inline}X_kldotsX_l{inline}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="67" HEIGHT="29" ALIGN="MIDDLE" BORDER="0"
|
|
SRC="img5.gif"
|
|
ALT="$X_k \ldots X_l$">|;
|
|
|
|
$key = q/{displaymath}b(k+1,l+1)=(b(k,l)-(l-k+1)X_k+a(k+1,l+1))bmodM{displaymath}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="454" HEIGHT="28"
|
|
SRC="img7.gif"
|
|
ALT="\begin{displaymath}b(k+1,l+1) = (b(k,l) - (l-k+1) X_k + a(k+1,l+1)) \bmod M \end{displaymath}">|;
|
|
|
|
$key = q/{inline}beta{inline}MSF=1.6;AAT;/;
|
|
$cached_env_img{$key} = q|<IMG
|
|
WIDTH="14" HEIGHT="29" ALIGN="MIDDLE" BORDER="0"
|
|
SRC="img2.gif"
|
|
ALT="$\beta$">|;
|
|
|
|
1;
|
|
|