11<!doctype html> < html > < head > < meta charset =utf-8 >
2- < title > Using vnu.jar for Web-based validation </ title > </ head >
2+ < title > Using vnu.jar for Web-based markup checking </ title > </ head >
33< body >
4- < h1 > Using vnu.jar for Web-based validation </ h1 >
4+ < h1 > Using vnu.jar for Web-based markup checking </ h1 >
55
66 < p > The < code > vnu.jar</ code > application is a portable standalone
7- version of the validator.nu validator . The
7+ version of the validator.nu markup checker . The
88 < a href ="https://github.com/validator/validator.github.io/releases "
99 > latest version</ a >
10- is available from the validator area at github.
10+ is available from the < code > validator</ code > project at github.
1111 The following are instructions on how to use it to provide a
12- service for browser-based validation of HTML documents over the Web.
12+ service for browser-based checking of HTML documents over the Web.
1313
1414< p class =note > < b > Note:</ b > In the instructions, replace
1515< var > "~/vnu.jar"</ var > with the actual path to the < code > vnu.jar</ code >
@@ -25,14 +25,14 @@ <h1>Using vnu.jar for Web-based validation</h1>
2525 < h2 > Web-based usage</ h2 >
2626
2727 < p > You can use < code > vnu.jar</ code > to provide a service for
28- browser-based validation of HTML documents over the Web, similar to
28+ browser-based checking of HTML documents over the Web, similar to
2929 < a href ="http://html5.validator.nu/ "> http://html5.validator.nu/</ a >
3030 and
3131 < a href ="http://validator.w3.org/nu/ "> http://validator.w3.org/nu/</ a > .
32- The service also includes a REST API for providing validation of HTML
32+ The service also includes a REST API for providing checking of HTML
3333 documents to non-browser clients.
3434
35- < p > To run the validator as a service, open a new terminal window
35+ < p > To run the markup checker as a service, open a new terminal window
3636 and invoke < code > vnu.jar</ code > like this:
3737
3838< pre >
@@ -41,24 +41,24 @@ <h2>Web-based usage</h2>
4141
4242 < p > Then open
4343 < a href ="http://localhost:8888 "> http://localhost:8888</ a >
44- in a browser. (To have the validator listen on a different port,
44+ in a browser. (To have the markup checker listen on a different port,
4545 replace < code class =arg > 8888</ code > with the port number.)
4646
4747 < p > You’ll see a form similar to
4848 < a href ="http://validator.w3.org/nu/ "> http://validator.w3.org/nu/</ a >
4949 that allows you to enter the URL of an HTML document and have the
50- validation results for that document displayed in the browser.
50+ results for that document displayed in the browser.
5151
5252 < section id =http-client >
53- < h2 > HTTP client (for fast command-line validation )</ h2 >
53+ < h2 > HTTP client (for fast command-line checking )</ h2 >
5454
5555 < p > You can also use < code > vnu.jar</ code > from the command line to send
5656 HTML documents to a locally-running instance of the HTTP service for
57- validation . To validate documents in that way, do this:
57+ checking . To check documents in that way, do this:
5858
5959 < ol >
6060
61- < li > Open a new terminal window and start up the validator as an HTTP
61+ < li > Open a new terminal window and start up the markup checker as an HTTP
6262 service, as described in the
6363 "< a href ="#web-based-usage "> Web-based usage</ a > " section.
6464
@@ -73,11 +73,11 @@ <h2>HTTP client (for fast command-line validation)</h2>
7373 < h3 id ="http-client-options "> HTTP client options</ h3 >
7474
7575 < p > When using < code > vnu.jar</ code > for sending documents to a
76- locally-running instance of the validator HTTP service for validation ,
76+ locally-running instance of the checker HTTP service for checking ,
7777 you can set Java system properties to control configuration options for the
78- validation behavior.
78+ checker behavior.
7979
80- < p > For example, you can suppress warning-level validation messages and only
80+ < p > For example, you can suppress warning-level messages and only
8181 show error-level ones by setting the value of the
8282 < code > nu.validator.client.level</ code > system property to
8383 < code > error</ code > , like this:</ p >
@@ -94,14 +94,14 @@ <h3 id="http-client-options">HTTP client options</h3>
9494
9595< h4 id ="nuvalidatorclienthost "> nu.validator.client.host</ h4 >
9696< pre >
97- Specifies the hostname of the validator for the client to connect to.
97+ Specifies the hostname of the checker for the client to connect to.
9898
9999default: < span class =option-value > "127.0.0.1"</ span >
100100</ pre >
101101
102102< h4 id ="nuvalidatorclientport "> nu.validator.client.port</ h4 >
103103< pre >
104- Specifies the hostname of the validator for the client to connect to.
104+ Specifies the hostname of the checker for the client to connect to.
105105
106106default: < span class =option-value > "8888"</ span >
107107
@@ -110,7 +110,7 @@ <h4 id="nuvalidatorclientport">nu.validator.client.port</h4>
110110
111111< h4 id ="nuvalidatorclientlevel "> nu.validator.client.level</ h4 >
112112< pre >
113- Specifies the severity level of validation messages to report; to
113+ Specifies the severity level of messages to report; to
114114suppress warning-level messages, and only show error-level ones, set
115115this property to "error".
116116
@@ -146,7 +146,7 @@ <h4 id="nuvalidatorclientcontent-type">nu.validator.client.content-type</h4>
146146
147147< h4 id ="nuvalidatorclientout "> nu.validator.client.out</ h4 >
148148< pre >
149- Specifies the output format for validation messages.
149+ Specifies the output format for messages.
150150
151151default: "gnu"
152152
@@ -156,7 +156,7 @@ <h4 id="nuvalidatorclientout">nu.validator.client.out</h4>
156156< h4 id ="nuvalidatorclientasciiquotes "> nu.validator.client.asciiquotes</ h4 >
157157< pre >
158158Specifies whether ASCII quotation marks are substituted for Unicode
159- smart quotation marks in validation messages.
159+ smart quotation marks in messages.
160160
161161default: "yes"
162162
@@ -166,8 +166,7 @@ <h4 id="nuvalidatorclientasciiquotes">nu.validator.client.asciiquotes</h4>
166166 </ section >
167167</ div >
168168
169- < p >
170- For more information... sources bugz etc.
169+ <!-- TODO: For more information... sources bugz etc. -->
171170
172171< style type ="text/css ">
173172html {
0 commit comments