You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juneau.apache.org by ja...@apache.org on 2016/08/28 20:34:50 UTC

incubator-juneau git commit: Fix Javadocs 2

Repository: incubator-juneau
Updated Branches:
  refs/heads/master d89c87376 -> 528bbfdfb


Fix Javadocs 2

Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/528bbfdf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/528bbfdf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/528bbfdf

Branch: refs/heads/master
Commit: 528bbfdfb87a11352555030050914042c5a860b0
Parents: d89c873
Author: jamesbognar <ja...@gmail.com>
Authored: Sun Aug 28 16:34:47 2016 -0400
Committer: jamesbognar <ja...@gmail.com>
Committed: Sun Aug 28 16:34:47 2016 -0400

----------------------------------------------------------------------
 juneau-core/src/main/javadoc/javadoc.css   |  6 +++---
 juneau-core/src/main/javadoc/overview.html | 17 ++++-------------
 2 files changed, 7 insertions(+), 16 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/528bbfdf/juneau-core/src/main/javadoc/javadoc.css
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/javadoc/javadoc.css b/juneau-core/src/main/javadoc/javadoc.css
index dd10162..04ac2f0 100755
--- a/juneau-core/src/main/javadoc/javadoc.css
+++ b/juneau-core/src/main/javadoc/javadoc.css
@@ -1,5 +1,8 @@
 /* Javadoc style sheet */
 
+@import url('resources/juneau-code.css');
+@import url('resources/juneau-doc.css');
+
 /*
 Overall document style
 */
@@ -657,6 +660,3 @@ h1.hidden {
 	font-weight: bold;
 }
 
-@import url('resources/juneau-code.css');
-@import url('resources/juneau-doc.css');
-

http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/528bbfdf/juneau-core/src/main/javadoc/overview.html
----------------------------------------------------------------------
diff --git a/juneau-core/src/main/javadoc/overview.html b/juneau-core/src/main/javadoc/overview.html
index 9c7c77f..7eb40bd 100644
--- a/juneau-core/src/main/javadoc/overview.html
+++ b/juneau-core/src/main/javadoc/overview.html
@@ -18,9 +18,9 @@
 	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 	<style type="text/css">
 		/* For viewing in file system and page designer */
-		@IMPORT url("../../../../juneau-releng/javadoc.css");
-		@IMPORT url("../../../../juneau-releng/juneau-doc.css");
-		@IMPORT url("../../../../juneau-releng/juneau-code.css");
+		@IMPORT url("../../../../juneau-core/java/src/main/javadoc/javadoc.css");
+		@IMPORT url("../../../../juneau-core/java/src/main/javadoc/resources/juneau-doc.css");
+		@IMPORT url("../../../../juneau-core/java/src/main/javadoc/resources/juneau-code.css");
 
 		body { 
 			margin: 20px; 
@@ -181,6 +181,7 @@
 				<li>ATOM 
 				<li>Cognos 
 				<li>JSON-Schema 
+				<li>HTML 5 (in progress)
 			</ul>
 			<p>DTOs can be used with any serializers and parsers.
 		<li>
@@ -191,10 +192,6 @@
 				<li>HTML-Schema
 			</ul>
 		<li>
-			<p>Easy-to-understand naming conventions such as {@link org.apache.juneau.ObjectMap} and {@link org.apache.juneau.ObjectList} to represent generic {@code Maps} and {@code Lists}.</p>
-		<li>
-			<p>Serializers have many options for tweaking output (such as whitespace options, XML namespace options, strict/non-strict syntax options, and so forth).</p>
-		<li>
 			<div>
 				JSON parser supports ALL valid JSON, such as:
 				<ul class='normal'>
@@ -234,15 +231,9 @@
 				(JAX/RS integration component requires JAX/RS provider)
 			</p>
 		<li>
-			<p>All code is 100% IBM developer written cleanroom code.</p>
-		<li>
 			<p>Extensive and up-to-date Javadocs with color-coded code examples.</p>
 		<li>
 			<p>
-				APIs use a Fluent Interface that allows complex tasks to be performed in a single line of code.
-			</p>
-		<li>
-			<p>
 				Code written for high-performance/high-concurrency/low-memory consumption.<br>  
 				Caching of POJO metadata speeds execution of serialization and parsing.<br>  
 				JSON parser is written using a state-machine architecture.<br>