ICU-227 backslashes

X-SVN-Rev: 805
This commit is contained in:
Steven R. Loomis 2000-02-21 21:38:59 +00:00
parent 5f94ba6df9
commit eccb780f34
9 changed files with 25 additions and 25 deletions

View file

@ -76,7 +76,7 @@ div.Section1
<div class=Section1>
<h1>International Collectanea for Unicode </h1>
<h1>International Components for Unicode </h1>
<h2>The working of class BreakIterator (Text Boundaries)</h2>
@ -93,7 +93,7 @@ alt=BreakIteratorGrafik.gif></p>
<p>&nbsp;</p>
<p><a href="..\readme.html">ReadMe for </a><a href="..\readme.html#API">IBM's
<p><a href="../readme.html">ReadMe for </a><a href="../readme.html#API">IBM's
International Classes for Unicode</a></p>

View file

@ -210,7 +210,7 @@ ul
<div class=Section1>
<h1>International Collectanea for Unicode</h1>
<h1>International Components for Unicode</h1>
<h2>Collation Framework</h2>
@ -498,8 +498,8 @@ difference of less than and &quot;==&quot; of equal to relationships: </p>
<p>&nbsp;</p>
<p><a href="..\readme.html">ReadMe for </a><a href="..\readme.html#API">International
Collectanea for Unicode</a></p>
<p><a href="../readme.html">ReadMe for </a><a href="../readme.html#API">International
Components for Unicode</a></p>
<div class=MsoNormal align=center style='text-align:center'>

View file

@ -63,7 +63,7 @@ div.Section1
<div class=Section1>
<h1>International Collectanea for Unicode C API</h1>
<h1>International Components for Unicode C API</h1>
<table border=1 cellpadding=0 style='mso-cellspacing:1.5pt;border:outset 1.5pt;
mso-padding-alt:2.25pt 2.25pt 2.25pt 2.25pt'>

View file

@ -184,7 +184,7 @@ displayed otherwise 0 (default).</p>
<h3>Building</h3>
<p>To compile this test suite using MSVC, follow the instructions in <a
href="..\readme.html#HowToInstall">icu/source/readme.html#HowToInstall</a> for
href="../readme.html#HowToInstall">icu/source/readme.html#HowToInstall</a> for
building the &quot;allC&quot; workspace. This builds the libraries as well as
the cintltst executable.</p>
@ -208,7 +208,7 @@ the cintltst executable.</p>
<pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>#include &quot;stdlib.h&quot;</pre><pre>#include &quot;ctest.h&quot;</pre><pre>#include &quot;stdio.h&quot;</pre><pre>#include &quot;string.h&quot;</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>/**</pre><pre>* Some sample dummy tests.</pre><pre>* the statics simply show how often the test is called.</pre><pre>*/</pre><pre>void mytest()</pre><pre>{</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>static i = 0;</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>log_info(&quot;I am a test[%d]\n&quot;, i++);</pre><pre>}</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>void mytest_err()</pre><pre>{</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>static i = 0;</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>log_err(&quot;I am a test containing an error[%d]\n&quot;, i++);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>log_err(&quot;I am a test containing an error[%d]\n&quot;, i++);</pre><pre>}</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>void mytest_verbose()</pre><pre>{</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>/* will only show if verbose is on (-v) */</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>log_verbose(&quot;I am a verbose test, blabbing about nothing at all.\n&quot;);</pre><pre>}</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>/**</pre><pre>* Add your tests from this function</pre><pre>*/</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>void add_tests( TestNode** root )</pre><pre>{</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/apple/bravo&quot; );</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/a/b/c/d/mytest&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest_err, &quot;/d/e/f/h/junk&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/a/b/c/d/another&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/a/b/c/etest&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest_err, &quot;/a/b/c&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/bertrand/andre/damiba&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest_err, &quot;/bertrand/andre/OJSimpson&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/bertrand/andre/juice/oj&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest, &quot;/bertrand/andre/juice/prune&quot;);</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>addTest(root, &amp;mytest_verbose, &quot;/verbose&quot;);</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>}</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre>int main(int argc, const char *argv[])</pre><pre>{</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>TestNode *root = NULL;</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>add_tests(&amp;root); /* address of root ptr- will be filled in */</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>/* Run the tests. An int is returned suitable for the OS status code.</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>(0 for success, neg for parameter errors, positive for the # of</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>failed tests) */</pre><pre><span style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </span>return processArgs( root, argc, argv );</pre><pre>}</pre><pre><![if !supportEmptyParas]>&nbsp;<![endif]><o:p></o:p></pre>
<p><a href="..\readme.html">ReadMe for </a><a href="..\readme.html#API">IBM's
<p><a href="../readme.html">ReadMe for </a><a href="../readme.html#API">IBM's
International Classes for Unicode C API</a></p>

View file

@ -92,7 +92,7 @@ ul
<div class=Section1>
<h1>International Collectanea for Unicode Code Conventions</h1>
<h1>International Components for Unicode Code Conventions</h1>
<ul type=disc>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
@ -123,7 +123,7 @@ ul
style='font-size:24.0pt'>Naming Conventions</span></a></li>
</ul>
<p><a href="..\readme.html#API">ReadMe for International Collectanea for Unicode,
<p><a href="../readme.html#API">ReadMe for International Components for Unicode,
API Overview</a> <br>
&nbsp; <br>
&nbsp; </p>

View file

@ -94,10 +94,10 @@ ul
<h1>Formatting Classes</h1>
<p><span style='font-size:18.0pt'><a href="..\..\icuhtml\Format.html">Format</a>,
<a href="..\..\icuhtml\Formattable.html">Formattable</a>, <a
href="..\..\icuhtml\FieldPosition.html">FieldPosition</a>, <a
href="..\..\icuhtml\ParsePosition.html">ParsePosition</a></span> </p>
<p><span style='font-size:18.0pt'><a href="../../icuhtml/Format.html">Format</a>,
<a href="../../icuhtml/Formattable.html">Formattable</a>, <a
href="../../icuhtml/FieldPosition.html">FieldPosition</a>, <a
href="../../icuhtml/ParsePosition.html">ParsePosition</a></span> </p>
<ul type=disc>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
@ -123,7 +123,7 @@ href="..\..\icuhtml\ParsePosition.html">ParsePosition</a></span> </p>
<p>&nbsp; </p>
<p><a href="..\readme.html#API">ReadMe for International Collectanea for
<p><a href="../readme.html#API">ReadMe for International Components for
Unicode, API Overview</a></p>
</div>

View file

@ -113,7 +113,7 @@ lot of information, it is recommended that the output be redirected to a file:<b
<h3>Building</h3>
<p>To compile this test suite using MSVC, follow the instructions in <a
href="..\readme.html#HowToInstall">icu/readme.html#HowToInstall</a> for
href="../readme.html#HowToInstall">icu/readme.html#HowToInstall</a> for
building the &quot;alCPP&quot; (All C++ interfaces) workspace. This builds the
libraries as well as the intltest executable.</p>
@ -130,8 +130,8 @@ executable will reside in &quot;intlwork/source/test/intltest/Release&quot;.</p>
<pre>### Syntax:</pre><pre>### IntlTest [-option1 -option2 ...] [testname1 testname2 ...] </pre><pre>### where options are: verbose (v), all (a), noerrormsg (n), </pre><pre>### exhaustive (e) and leaks (l). </pre><pre>### (Specify either -all (shortcut -a) or a test name). </pre><pre>### -all will run all of the tests.</pre><pre>### </pre><pre>### To get a list of the test names type: intltest LIST </pre><pre>### To run just the utility tests type: intltest utility </pre><pre>### </pre><pre>### Test names can be nested using slashes (&quot;testA/subtest1&quot;) </pre><pre>### For example to list the utility tests type: intltest utility/LIST </pre><pre>### To run just the Locale test type: intltest utility/LocaleTest </pre><pre>### </pre><pre>### A parameter can be specified for a test by appending '@' and the value </pre><pre>### to the testname. </pre>
<p><a href="..\readme.html">ReadMe for </a><a href="..\readme.html#API"><span
style="mso-spacerun: yes">&nbsp;</span>International Collectanea for Unicode</a></p>
<p><a href="../readme.html">ReadMe for </a><a href="../readme.html#API"><span
style="mso-spacerun: yes">&nbsp;</span>International Components for Unicode</a></p>
<div class=MsoNormal align=center style='text-align:center'>

View file

@ -92,7 +92,7 @@ ul
<div class=Section1>
<h1>International Collectanea for Unicode Synchronization Issues</h1>
<h1>International Components for Unicode Synchronization Issues</h1>
<h3>Introduction</h3>

View file

@ -123,12 +123,12 @@ ul
<ul type=disc>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
mso-list:l0 level1 lfo1;tab-stops:list .5in'><a
href="..\..\icuhtml\Unicode.html"><span style='font-size:13.5pt'>Unicode</span></a><br>
href="../../icuhtml/Unicode.html"><span style='font-size:13.5pt'>Unicode</span></a><br>
<span style='font-size:13.5pt'>-- query the properties associated with
individual Unicode character values</span> </li>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
mso-list:l0 level1 lfo1;tab-stops:list .5in'><a
href="..\..\icuhtml\UnicodeString.html"><span style='font-size:13.5pt'>UnicodeString</span></a></li>
href="../../icuhtml/UnicodeString.html"><span style='font-size:13.5pt'>UnicodeString</span></a></li>
</ul>
<p><span style='font-size:18.0pt'>Character Iteration</span> </p>
@ -136,7 +136,7 @@ ul
<ul type=disc>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
mso-list:l1 level1 lfo2;tab-stops:list .5in'><span style='font-size:13.5pt'><a
href="..\..\icuhtml\CharacterIterator.html">CharacterIterator</a>, <a
href="../../icuhtml/CharacterIterator.html">CharacterIterator</a>, <a
href="api\StringCharacterIterator.html">StringCharacterIterator</a></span><br>
<span style='font-size:13.5pt'>-- Iterates over the characters in a
UnicodeString</span></li>
@ -147,19 +147,19 @@ ul
<ul type=disc>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
mso-list:l2 level1 lfo3;tab-stops:list .5in'><a
href="..\..\icuhtml\Locale.html"><span style='font-size:13.5pt'>Locale</span></a><br>
href="../../icuhtml/Locale.html"><span style='font-size:13.5pt'>Locale</span></a><br>
<span style='font-size:13.5pt'>-- represents a specific geographical,
political, or cultural region</span> </li>
<li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
mso-list:l2 level1 lfo3;tab-stops:list .5in'><a
href="..\..\icuhtml\ResourceBundle.html"><span style='font-size:13.5pt'>ResourceBundle</span></a><br>
href="../../icuhtml/ResourceBundle.html"><span style='font-size:13.5pt'>ResourceBundle</span></a><br>
<span style='font-size:13.5pt'>-- represents a collection of resource information
pertaining to a given locale</span></li>
</ul>
<p>&nbsp; </p>
<p><a href="..\readme.html#API">ReadMe for International Collectanea for
<p><a href="../readme.html#API">ReadMe for International Components for
Unicode, API Overview</a></p>
</div>