Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sockets in 2e #1121

Merged
merged 9 commits into from
Aug 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions base/changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ completeness or accuracy and it contains some references to files that
are not part of the distribution.
================================================================================

2023-08-05 Frank Mittelbach <Frank.Mittelbach@latex-project.org>

* ltsockets.dtx:
First implementation of the sockets module.

2023-07-10 Marcel Krüger <marcel.krueger@latex-project.org>

* ltluatex.dtx
Expand Down
7 changes: 7 additions & 0 deletions base/doc/ltnews38.tex
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,13 @@
\section{Introduction}


\section{Sockets and plugs}

\emph{write}

For documentation see \texttt{texdoc ltsockets-doc} for now.


\section{New or improved commands}

%
Expand Down
5 changes: 5 additions & 0 deletions base/doc/ltsockets-code.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
% This will typeset documentation + code
%

\AtBeginDocument{\AlsoImplementation}
\input{ltsockets.dtx}
8 changes: 8 additions & 0 deletions base/doc/ltsockets-doc.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
% This will typeset only documentation but not the code
%

\AtBeginDocument{\OnlyDescription
% \let\tableofcontents\relax
\RenewCommandCopy\MaybeStop\StopEventually
}
\input{ltsockets.dtx}
2 changes: 2 additions & 0 deletions base/doc/source2e.tex
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,8 @@

\DocInclude{ltcmdhooks}% Hook management for commands (L3 module)

\DocInclude{ltsockets}% Socket and plug management (L3 module)

\DocInclude{ltalloc} % Allocation of counters and others.

\DocInclude{ltcntrl} % Program control macros.
Expand Down
1 change: 1 addition & 0 deletions base/format.ins
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ the system are in the document `cfgguide.tex'.
\from{ltcmd.dtx}{2ekernel} % L3 layer module (used to be xparse)
\from{lthooks.dtx}{2ekernel} % L3 layer module
\from{ltcmdhooks.dtx}{2ekernel} % L3 layer module
\from{ltsockets.dtx}{2ekernel} % L3 layer module
\from{ltalloc.dtx}{2ekernel}
\from{ltcntrl.dtx}{2ekernel}
\from{lterror.dtx}{2ekernel}
Expand Down
1 change: 1 addition & 0 deletions base/latexrelease.ins
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ extension .ins) which are part of the distribution.
\from{ltcmd.dtx} {latexrelease}% L3 layer module
\from{lthooks.dtx} {latexrelease}% L3 layer module
\from{ltcmdhooks.dtx} {latexrelease}% L3 layer module
\from{ltsockets.dtx} {latexrelease}% L3 layer module
\from{ltalloc.dtx} {latexrelease}% empty
\from{ltcntrl.dtx} {latexrelease}% empty
\from{lterror.dtx} {latexrelease}% empty
Expand Down
Loading