http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/afa6a1d0/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
----------------------------------------------------------------------
diff --git a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
index c0fc0cc..9ec2916 100644
--- a/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
+++ b/content/site/apidocs/org/apache/juneau/rest/RestResponse.html
@@ -134,7 +134,7 @@ extends <a
href="http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServ
convenience methods, or revert to using lower level methods like any other
servlet response.
</p>
- <h6 class='topic'>Example:</h6>
+ <h5 class='section'>Example:</h5>
<p class='bcode'>
<ja>@RestMethod</ja>(name=<js>"GET"</js>)
<jk>public void</jk> doGet(RestRequest req, RestResponse res) {
@@ -143,7 +143,7 @@ extends <a
href="http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServ
}
</p>
<p>
- Refer to <a class='doclink' href='package-summary.html#TOC'>REST Servlet
API</a> for information about using this class.
+ Refer to <a class="doclink" href="package-summary.html#TOC">REST Servlet
API</a> for information about using this class.
</p></div>
</li>
</ul>
@@ -404,7 +404,7 @@ extends <a
href="http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServ
<ul>
<li> <a
href="http://docs.oracle.com/javase/7/docs/api/java/io/InputStream.html?is-external=true"
title="class or interface in java.io"><code>InputStream</code></a>
<li> <a
href="http://docs.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true"
title="class or interface in java.io"><code>Reader</code></a>
- <li> Any serializable type defined in <a
href='../../../../overview-summary.html#Core.PojoCategories'>POJO Categories</a>
+ <li> Any serializable type defined in <a class="doclink"
href="../../../../overview-summary.html#Core.PojoCategories">POJO Categories</a>
</ul>
<p>
If it's an <a
href="http://docs.oracle.com/javase/7/docs/api/java/io/InputStream.html?is-external=true"
title="class or interface in java.io"><code>InputStream</code></a> or <a
href="http://docs.oracle.com/javase/7/docs/api/java/io/Reader.html?is-external=true"
title="class or interface in java.io"><code>Reader</code></a>, you must also
specify the <code>Content-Type</code> using the <a
href="http://docs.oracle.com/javaee/5/api/javax/servlet/ServletResponseWrapper.html?is-external=true#setContentType-java.lang.String-"
title="class or interface in
javax.servlet"><code>ServletResponseWrapper.setContentType(String)</code></a>
method.</div>
@@ -465,7 +465,7 @@ extends <a
href="http://docs.oracle.com/javaee/5/api/javax/servlet/http/HttpServ
<pre>public <a
href="../../../../org/apache/juneau/rest/RestResponse.html" title="class in
org.apache.juneau.rest">RestResponse</a> <a
href="../../../../src-html/org/apache/juneau/rest/RestResponse.html#line.214">setOutputs</a>(<a
href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true"
title="class or interface in java.lang">Object</a>... output)</pre>
<div class="block">Shortcut method that allows you to use varargs to simplify
setting array output.
- <h6 class='topic'>Example:</h6>
+ <h5 class='section'>Example:</h5>
<p class='bcode'>
<jc>// Instead of...</jc>
response.setOutput(<jk>new</jk> Object[]{x,y,z});