[DOC-CVS] [doc-en] master: hrtime: fix XML by converting para to simpara tags via script (#5150)
[email protected] (Gina Peter Banyard via GitHub)
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Gina Peter Banyard (Girgias)
Committer: GitHub (web-flow)
Pusher: Girgias
Date: 2026-01-18T22:44:28Z
Commit: https://github.com/php/doc-en/commit/3e7e14916c28630bce69e65f539d27bb96a90066
Raw diff: https://github.com/php/doc-en/commit/3e7e14916c28630bce69e65f539d27bb96a90066.diff
hrtime: fix XML by converting para to simpara tags via script (#5150)
Changed paths:
M reference/hrtime/book.xml
M reference/hrtime/configure.xml
M reference/hrtime/examples.xml
M reference/hrtime/hrtime-performancecounter/getfrequency.xml
M reference/hrtime/hrtime-performancecounter/getticks.xml
M reference/hrtime/hrtime-performancecounter/gettickssince.xml
M reference/hrtime/hrtime-stopwatch/getelapsedticks.xml
M reference/hrtime/hrtime-stopwatch/getelapsedtime.xml
M reference/hrtime/hrtime-stopwatch/getlastelapsedticks.xml
M reference/hrtime/hrtime-stopwatch/getlastelapsedtime.xml
M reference/hrtime/hrtime-stopwatch/isrunning.xml
M reference/hrtime/hrtime-stopwatch/start.xml
M reference/hrtime/hrtime-stopwatch/stop.xml
M reference/hrtime/hrtime.performancecounter.xml
M reference/hrtime/hrtime.stopwatch.xml
M reference/hrtime/hrtime.unit.xml
M reference/hrtime/setup.xml
Diff:
diff --git a/reference/hrtime/book.xml b/reference/hrtime/book.xml
index 2fdd514fa3a4..3c319c60980d 100644
--- a/reference/hrtime/book.xml
+++ b/reference/hrtime/book.xml
@@ -1,18 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<book xml:id="book.hrtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<book xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="book.hrtime">
<?phpdoc extension-membership="pecl" ?>
<title>High resolution timing</title>
<titleabbrev>HRTime</titleabbrev>
<preface xml:id="intro.hrtime">
&reftitle.intro;
- <para>
+ <simpara>
The HRTime extension implements a high resolution StopWatch class. It uses the
best possible APIs on different platforms which brings resolution up to nanoseconds. It also makes possible to implement
a custom stopwatch using low level ticks delivered by the underlying APIs.
- </para>
+ </simpara>
<note>
<simpara>
As of PHP 7.3.0 the related function <function>hrtime</function> is part of
@@ -28,7 +27,6 @@ a custom stopwatch using low level ticks delivered by the underlying APIs.
&reference.hrtime.hrtime.unit;
</book>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/configure.xml b/reference/hrtime/configure.xml
index 7ae9ea219ee0..19498e05ce62 100644
--- a/reference/hrtime/configure.xml
+++ b/reference/hrtime/configure.xml
@@ -1,20 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<section xml:id="hrtime.installation" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime.installation">
&reftitle.install;
- <para>
+ <simpara>
Use <option role="configure">--with-hrtime[=DIR]</option> when compiling PHP.
- </para>
+ </simpara>
- <para>
+ <simpara>
Windows users should include <filename>php_hrtime.dll</filename> into &php.ini;
- </para>
+ </simpara>
</section>
-
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/examples.xml b/reference/hrtime/examples.xml
index f2a7453645e6..a2e5e49a3834 100644
--- a/reference/hrtime/examples.xml
+++ b/reference/hrtime/examples.xml
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<chapter xml:id="hrtime.examples" xmlns="http://docbook.org/ns/docbook">
+<chapter xmlns="http://docbook.org/ns/docbook" xml:id="hrtime.examples">
&reftitle.examples;
<section xml:id="hrtime.example.basic">
<title>Basic usage</title>
- <para>
+ <simpara>
The example illustrates the basic StopWatch class usage
- </para>
+ </simpara>
<example>
<title>Measure several code blocks execution and get the total</title>
<programlisting role="php">
@@ -38,7 +38,6 @@ $elapsed_total = $c->getElapsedTime(HRTime\Unit::NANOSECOND);
</example>
</section>
</chapter>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
@@ -59,4 +58,3 @@ vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
-
diff --git a/reference/hrtime/hrtime-performancecounter/getfrequency.xml b/reference/hrtime/hrtime-performancecounter/getfrequency.xml
index 9d4b9086686d..4af08af21ba1 100644
--- a/reference/hrtime/hrtime-performancecounter/getfrequency.xml
+++ b/reference/hrtime/hrtime-performancecounter/getfrequency.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-performancecounter.getfrequency" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-performancecounter.getfrequency">
<refnamediv>
<refname>HRTime\PerformanceCounter::getFrequency</refname>
<refpurpose>Timer frequency in ticks per second</refpurpose>
@@ -11,12 +10,12 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <modifier>static</modifier> <type>int</type><methodname>HRTime\PerformanceCounter::getFrequency</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Returns the timer frequency in ticks per second. This value is constant after
the system start on almost any operating system.
- </para>
+ </simpara>
</refsect1>
@@ -27,14 +26,13 @@ the system start on almost any operating system.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &integer; indicating the timer frequency.
- </para>
+ <simpara>
+ Returns &integer; indicating the timer frequency.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-performancecounter/getticks.xml b/reference/hrtime/hrtime-performancecounter/getticks.xml
index ebf9610294cd..97cc4167b1b9 100644
--- a/reference/hrtime/hrtime-performancecounter/getticks.xml
+++ b/reference/hrtime/hrtime-performancecounter/getticks.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-performancecounter.getticks" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-performancecounter.getticks">
<refnamediv>
<refname>HRTime\PerformanceCounter::getTicks</refname>
<refpurpose>Current ticks from the system</refpurpose>
@@ -11,11 +10,11 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <modifier>static</modifier> <type>int</type><methodname>HRTime\PerformanceCounter::getTicks</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Returns the ticks count.
- </para>
+ </simpara>
</refsect1>
<refsect1 role="parameters">
@@ -25,13 +24,12 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
+ <simpara>
Returns &integer; indicating the ticks count.
- </para>
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-performancecounter/gettickssince.xml b/reference/hrtime/hrtime-performancecounter/gettickssince.xml
index dbd1eae146f3..98bf7b04eee8 100644
--- a/reference/hrtime/hrtime-performancecounter/gettickssince.xml
+++ b/reference/hrtime/hrtime-performancecounter/gettickssince.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-performancecounter.gettickssince" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-performancecounter.gettickssince">
<refnamediv>
<refname>HRTime\PerformanceCounter::getTicksSince</refname>
<refpurpose>Ticks elapsed since the given value</refpurpose>
@@ -13,9 +12,9 @@
<modifier>public</modifier> <modifier>static</modifier> <type>int</type><methodname>HRTime\PerformanceCounter::getTicksSince</methodname>
<methodparam><type>int</type><parameter>start</parameter></methodparam>
</methodsynopsis>
- <para>
+ <simpara>
Returns the ticks count elapsed since the given start value.
- </para>
+ </simpara>
</refsect1>
@@ -25,9 +24,9 @@ Returns the ticks count elapsed since the given start value.
<varlistentry>
<term><parameter>start</parameter></term>
<listitem>
- <para>
+ <simpara>
Starting ticks value.
- </para>
+ </simpara>
</listitem>
</varlistentry>
</variablelist>
@@ -35,14 +34,13 @@ Returns the ticks count elapsed since the given start value.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
+ <simpara>
Returns &integer; indicating the ticks count.
- </para>
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/getelapsedticks.xml b/reference/hrtime/hrtime-stopwatch/getelapsedticks.xml
index bef3691abdcb..44b2fb23c0d5 100644
--- a/reference/hrtime/hrtime-stopwatch/getelapsedticks.xml
+++ b/reference/hrtime/hrtime-stopwatch/getelapsedticks.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.getelapsedticks" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.getelapsedticks">
<refnamediv>
<refname>HRTime\StopWatch::getElapsedTicks</refname>
<refpurpose>Get elapsed ticks for all intervals</refpurpose>
@@ -11,11 +10,11 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>int</type><methodname>HRTime\StopWatch::getElapsedTicks</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Get elapsed ticks for all the previously closed intervals.
- </para>
+ </simpara>
</refsect1>
@@ -26,14 +25,13 @@ Get elapsed ticks for all the previously closed intervals.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &integer; indicating elapsed ticks.
- </para>
+ <simpara>
+ Returns &integer; indicating elapsed ticks.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/getelapsedtime.xml b/reference/hrtime/hrtime-stopwatch/getelapsedtime.xml
index 282455fd3159..4677d55b3b69 100644
--- a/reference/hrtime/hrtime-stopwatch/getelapsedtime.xml
+++ b/reference/hrtime/hrtime-stopwatch/getelapsedtime.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.getelapsedtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.getelapsedtime">
<refnamediv>
<refname>HRTime\StopWatch::getElapsedTime</refname>
<refpurpose>Get elapsed time for all intervals</refpurpose>
@@ -13,10 +12,10 @@
<modifier>public</modifier> <type>float</type><methodname>HRTime\StopWatch::getElapsedTime</methodname>
<methodparam choice="opt"><type>int</type><parameter>unit</parameter></methodparam>
</methodsynopsis>
- <para>
+ <simpara>
-Get elapsed time for all the previously closed intervals.
- </para>
+Get elapsed time for all the previously closed intervals.
+ </simpara>
</refsect1>
@@ -26,10 +25,10 @@ Get elapsed time for all the previously closed intervals.
<varlistentry>
<term><parameter>unit</parameter></term>
<listitem>
- <para>
+ <simpara>
Time unit represented by a HRTime\Unit constant. Default is
HRTime\Unit::SECOND.
- </para>
+ </simpara>
</listitem>
</varlistentry>
</variablelist>
@@ -37,15 +36,14 @@ Get elapsed time for all the previously closed intervals.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &float; indicating elapsed time.
-
- </para>
+ <simpara>
+ Returns &float; indicating elapsed time.
+
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/getlastelapsedticks.xml b/reference/hrtime/hrtime-stopwatch/getlastelapsedticks.xml
index 202775b40a84..f3e22f1923b4 100644
--- a/reference/hrtime/hrtime-stopwatch/getlastelapsedticks.xml
+++ b/reference/hrtime/hrtime-stopwatch/getlastelapsedticks.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.getlastelapsedticks" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.getlastelapsedticks">
<refnamediv>
<refname>HRTime\StopWatch::getLastElapsedTicks</refname>
<refpurpose>Get elapsed ticks for the last interval</refpurpose>
@@ -11,11 +10,11 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>int</type><methodname>HRTime\StopWatch::getLastElapsedTicks</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Get elapsed ticks for the previously closed interval.
- </para>
+ </simpara>
</refsect1>
@@ -26,14 +25,13 @@ Get elapsed ticks for the previously closed interval.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &integer; indicating elapsed ticks.
- </para>
+ <simpara>
+ Returns &integer; indicating elapsed ticks.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/getlastelapsedtime.xml b/reference/hrtime/hrtime-stopwatch/getlastelapsedtime.xml
index 727a8ce410ec..18ea62044934 100644
--- a/reference/hrtime/hrtime-stopwatch/getlastelapsedtime.xml
+++ b/reference/hrtime/hrtime-stopwatch/getlastelapsedtime.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.getlastelapsedtime" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.getlastelapsedtime">
<refnamediv>
<refname>HRTime\StopWatch::getLastElapsedTime</refname>
<refpurpose>Get elapsed time for the last interval</refpurpose>
@@ -13,10 +12,10 @@
<modifier>public</modifier> <type>float</type><methodname>HRTime\StopWatch::getLastElapsedTime</methodname>
<methodparam choice="opt"><type>int</type><parameter>unit</parameter></methodparam>
</methodsynopsis>
- <para>
+ <simpara>
-Get elapsed time for the previously closed interval.
- </para>
+Get elapsed time for the previously closed interval.
+ </simpara>
</refsect1>
@@ -26,10 +25,10 @@ Get elapsed time for the previously closed interval.
<varlistentry>
<term><parameter>unit</parameter></term>
<listitem>
- <para>
+ <simpara>
Time unit represented by a HRTime\Unit constant. Default is
HRTime\Unit::SECOND.
- </para>
+ </simpara>
</listitem>
</varlistentry>
</variablelist>
@@ -37,14 +36,13 @@ Get elapsed time for the previously closed interval.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &float; indicating elapsed time.
- </para>
+ <simpara>
+ Returns &float; indicating elapsed time.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/isrunning.xml b/reference/hrtime/hrtime-stopwatch/isrunning.xml
index a9da85b60cc0..1e3a3f7514af 100644
--- a/reference/hrtime/hrtime-stopwatch/isrunning.xml
+++ b/reference/hrtime/hrtime-stopwatch/isrunning.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.isrunning" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.isrunning">
<refnamediv>
<refname>HRTime\StopWatch::isRunning</refname>
<refpurpose>Whether the measurement is running</refpurpose>
@@ -11,11 +10,11 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>bool</type><methodname>HRTime\StopWatch::isRunning</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Reveals whether the measurement was started.
- </para>
+ </simpara>
</refsect1>
@@ -26,14 +25,13 @@ Reveals whether the measurement was started.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns &boolean; indicating whether the measurement is running.
- </para>
+ <simpara>
+ Returns &boolean; indicating whether the measurement is running.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/start.xml b/reference/hrtime/hrtime-stopwatch/start.xml
index 8af3f8148fc7..dfaec926b059 100644
--- a/reference/hrtime/hrtime-stopwatch/start.xml
+++ b/reference/hrtime/hrtime-stopwatch/start.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.start" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.start">
<refnamediv>
<refname>HRTime\StopWatch::start</refname>
<refpurpose>Start time measurement</refpurpose>
@@ -11,14 +10,14 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>HRTime\StopWatch::start</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Starts the time measurement. It has no effect if the measurement was already
started. The measurement will be continued if it was previously stopped.
- </para>
+ </simpara>
</refsect1>
@@ -29,14 +28,13 @@ started. The measurement will be continued if it was previously stopped.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns void.
- </para>
+ <simpara>
+ Returns void.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime-stopwatch/stop.xml b/reference/hrtime/hrtime-stopwatch/stop.xml
index f2830bd4f9de..a22266433161 100644
--- a/reference/hrtime/hrtime-stopwatch/stop.xml
+++ b/reference/hrtime/hrtime-stopwatch/stop.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<refentry xml:id="hrtime-stopwatch.stop" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime-stopwatch.stop">
<refnamediv>
<refname>HRTime\StopWatch::stop</refname>
<refpurpose>Stop time measurement</refpurpose>
@@ -11,13 +10,13 @@
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>HRTime\StopWatch::stop</methodname>
- <void />
+ <void/>
</methodsynopsis>
- <para>
+ <simpara>
Stop the time measurement for the previously started interval.
- </para>
+ </simpara>
</refsect1>
@@ -28,14 +27,13 @@ Stop the time measurement for the previously started interval.
<refsect1 role="returnvalues">
&reftitle.returnvalues;
- <para>
- Returns void.
- </para>
+ <simpara>
+ Returns void.
+ </simpara>
</refsect1>
</refentry>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime.performancecounter.xml b/reference/hrtime/hrtime.performancecounter.xml
index 2b807b42da74..6dd349d79e65 100644
--- a/reference/hrtime/hrtime.performancecounter.xml
+++ b/reference/hrtime/hrtime.performancecounter.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<reference xml:id="class.hrtime-performancecounter" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
+<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.hrtime-performancecounter" role="class">
<title>The HRTime\PerformanceCounter class</title>
<titleabbrev>HRTime\PerformanceCounter</titleabbrev>
@@ -11,9 +10,9 @@
<!-- {{{ HRTime\PerformanceCounter intro -->
<section xml:id="hrtime-performancecounter.intro">
&reftitle.intro;
- <para>
+ <simpara>
- </para>
+ </simpara>
</section>
<!-- }}} -->
@@ -31,9 +30,9 @@
</ooclass>
</classsynopsisinfo>
<!-- }}} -->
-
+
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
- <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-performancecounter')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
+ <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-performancecounter')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
</classsynopsis>
<!-- }}} -->
@@ -44,7 +43,6 @@
&reference.hrtime.entities.hrtime-performancecounter;
</reference>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime.stopwatch.xml b/reference/hrtime/hrtime.stopwatch.xml
index 415f31df7f47..fa7cd3019ba9 100644
--- a/reference/hrtime/hrtime.stopwatch.xml
+++ b/reference/hrtime/hrtime.stopwatch.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<reference xml:id="class.hrtime-stopwatch" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
+<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.hrtime-stopwatch" role="class">
<title>The HRTime\StopWatch class</title>
<titleabbrev>HRTime\StopWatch</titleabbrev>
@@ -11,9 +10,9 @@
<!-- {{{ HRTime\StopWatch intro -->
<section xml:id="hrtime-stopwatch.intro">
&reftitle.intro;
- <para>
+ <simpara>
- </para>
+ </simpara>
</section>
<!-- }}} -->
@@ -29,19 +28,19 @@
<ooclass>
<classname>HRTime\StopWatch</classname>
</ooclass>
-
+
<ooclass>
<modifier>extends</modifier>
<classname>HRTime\PerformanceCounter</classname>
</ooclass>
</classsynopsisinfo>
<!-- }}} -->
-
+
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
- <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-stopwatch')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
-
+ <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-stopwatch')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
+
<classsynopsisinfo role="comment">&InheritedMethods;</classsynopsisinfo>
- <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-performancecounter')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])" />
+ <xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.hrtime-performancecounter')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[not(@role='procedural')])"/>
</classsynopsis>
<!-- }}} -->
@@ -53,7 +52,6 @@
&reference.hrtime.entities.hrtime-stopwatch;
</reference>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/hrtime.unit.xml b/reference/hrtime/hrtime.unit.xml
index 17af4329a901..76126e5d0c8c 100644
--- a/reference/hrtime/hrtime.unit.xml
+++ b/reference/hrtime/hrtime.unit.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<reference xml:id="class.hrtime-unit" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
+<reference xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude" xml:id="class.hrtime-unit" role="class">
<title>The HRTime\Unit class</title>
<titleabbrev>HRTime\Unit</titleabbrev>
@@ -11,9 +10,9 @@
<!-- {{{ HRTime\Unit intro -->
<section xml:id="hrtime-unit.intro">
&reftitle.intro;
- <para>
+ <simpara>
- </para>
+ </simpara>
</section>
<!-- }}} -->
@@ -74,28 +73,28 @@
<varlistentry xml:id="hrtime-unit.constants.second">
<term><constant>HRTime\Unit::SECOND</constant></term>
<listitem>
- <para></para>
+ <simpara/>
</listitem>
</varlistentry>
<varlistentry xml:id="hrtime-unit.constants.millisecond">
<term><constant>HRTime\Unit::MILLISECOND</constant></term>
<listitem>
- <para></para>
+ <simpara/>
</listitem>
</varlistentry>
<varlistentry xml:id="hrtime-unit.constants.microsecond">
<term><constant>HRTime\Unit::MICROSECOND</constant></term>
<listitem>
- <para></para>
+ <simpara/>
</listitem>
</varlistentry>
<varlistentry xml:id="hrtime-unit.constants.nanosecond">
<term><constant>HRTime\Unit::NANOSECOND</constant></term>
<listitem>
- <para></para>
+ <simpara/>
</listitem>
</varlistentry>
@@ -109,7 +108,6 @@
<!-- &reference.hrtime.entities.hrtime-unit; -->
</reference>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
diff --git a/reference/hrtime/setup.xml b/reference/hrtime/setup.xml
index e7276f6e4a7a..96fa74d04f95 100644
--- a/reference/hrtime/setup.xml
+++ b/reference/hrtime/setup.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-
-<chapter xml:id="hrtime.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
+<chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="hrtime.setup">
&reftitle.setup;
<!--<section xml:id="hrtime.requirements">
@@ -13,13 +12,13 @@
<section xml:id="hrtime.installation">
&reftitle.install;
- <para>
+ <simpara>
&pecl.moved;
- </para>
- <para>
+ </simpara>
+ <simpara>
&pecl.info;
<link xlink:href="&url.pecl.package;hrtime">&url.pecl.package;hrtime</link>.
- </para>
+ </simpara>
</section>
<!--<section xml:id="hrtime.resources">
@@ -30,7 +29,6 @@
</section>-->
</chapter>
-
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml