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

Support xs:dayTimeDuration on [p:]timeout #1123

Merged
merged 1 commit into from
Jan 5, 2025
Merged
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
11 changes: 8 additions & 3 deletions xproc/src/main/xml/specification.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3956,9 +3956,14 @@ attribute allows a pipeline author to suggest a length of time beyond
which the pipeline processor should consider that a step has taken
an excessive amount of time.</para>

<para>The value of the <option>[p:]timeout</option> option must be a
<type>xs:nonNegativeInteger</type>. It is interpreted as a number of
seconds. The value zero may be used to indicate that no limit is
<para>The duration may be specified as a number, indicating a number of seconds,
or as a duration using a string that satisfies the constraints of an
<code>xs:dayTimeDuration</code>. The duration <rfc2119>must not</rfc2119> be
negative.
<error code="D0036">It is a <glossterm>dynamic error</glossterm> if the
specified duration is not a positive number or a valid
<code>xs:dayTimeDuration</code>.</error>
A duration of zero may be used to indicate that no limit is
expressed (this is the same as omitting the attribute, but may
sometimes be more convenient for pipeline authors).
</para>
Expand Down
Loading