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 2017/02/21 13:54:42 UTC

incubator-juneau-website git commit: Update about page with more examples.

Repository: incubator-juneau-website
Updated Branches:
  refs/heads/asf-site 4903c5d14 -> 4c573a9da


Update about page with more examples.

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

Branch: refs/heads/asf-site
Commit: 4c573a9da9e11e11d33c0c52f5807ef78c5f2a44
Parents: 4903c5d
Author: JamesBognar <ja...@apache.org>
Authored: Tue Feb 21 08:54:39 2017 -0500
Committer: JamesBognar <ja...@apache.org>
Committed: Tue Feb 21 08:54:39 2017 -0500

----------------------------------------------------------------------
 content/about.html     | 13 ++++++++++---
 content/community.html | 15 ++++++++-------
 2 files changed, 18 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/4c573a9d/content/about.html
----------------------------------------------------------------------
diff --git a/content/about.html b/content/about.html
index df4c522..d1230af 100644
--- a/content/about.html
+++ b/content/about.html
@@ -154,7 +154,11 @@
 		Many POJOs such as primitives, beans, collections, arrays, and classes with various known constructors and methods are serializable out-of-the-box.  
 		For other objects, "swaps" allow you to swap-in serializable replacement objects during serialization
 		and vis-versa during parsing.  Beans can also be tailored in various ways.  
-		See <a href='http://juneau.incubator.apache.org/site/apidocs/overview-summary.html#Core.PojoCategories'>here</a> for a list of supported POJO types.
+		<br>See <a href='http://juneau.incubator.apache.org/site/apidocs/overview-summary.html#Core.PojoCategories'>here</a> for a list of supported POJO types.
+	</p>
+	<p>
+		Serializers can send output directly to Writers, OutputStreams, and Files.
+		<br>Parsers can receive input directly from Readers, CharSequences, InputStreams, or Files.
 	</p>
 	<br><hr>
 	<p>
@@ -165,7 +169,7 @@
 	<jc>// Construct a new serializer group with configuration parameters that get applied to all serializers.</jc>
 	SerializerGroup sg = <jk>new</jk> SerializerGroup()
 		.append(JsonSerializer.<jk>class</jk>, UrlEncodingSerializer.<jk>class</jk>);
-		.setUseIndentation(<jk>true</jk>)
+		.setUseWhitespace(<jk>true</jk>)
 		.addPojoSwaps(CalendarSwap.ISO8601DT.<jk>class</jk>);
 
 	<jc>// Find the appropriate serializer by Accept type and serialize our POJO to the specified writer.</jc>
@@ -422,7 +426,10 @@
 	}
 	</p>
 	<p>
-		A more sophisticated example of the same resource using various features...
+		A more sophisticated example of the same resource using various features, including information
+		for fully populating the Swagger documentation, guards for restricting access to particular
+		methods, customizing supported content types and serialization options, adding g-zip compression, 
+		and adding customized branding for the HTML views.
 	</p>
 	<p class='bcode'>
 	<ja>@RestResource</ja>(

http://git-wip-us.apache.org/repos/asf/incubator-juneau-website/blob/4c573a9d/content/community.html
----------------------------------------------------------------------
diff --git a/content/community.html b/content/community.html
index 6cd6979..11da650 100644
--- a/content/community.html
+++ b/content/community.html
@@ -49,13 +49,14 @@
 		<tr class='light'><td>Craig L Russell</td><td>Mentor</td><td>clr</td><tr>
 		<tr class='dark'><td>Jochen Wiedmann</td><td>Mentor</td><td>jochen</td><tr>
 		<tr class='light'><td>John D. Ament</td><td>Mentor</td><td>johnadament</td><tr>
-		<tr class='dark'><td>Stian Soiland-Reyes</td><td>Informal mentor</td><td>stain</td><tr>
-		<tr class='light'><td>James Bognar</td><td>Committer</td><td>jamesbognar</td><tr>
-		<tr class='dark'><td>Peter Haumer</td><td>Committer</td><td>phaumer</td><tr>
-		<tr class='light'><td>Craig Chaney</td><td>Committer</td><td></td><tr>
-		<tr class='dark'><td>Min Idzelis</td><td>Committer</td><td></td><tr>
-		<tr class='light'><td>David M Goddard</td><td>Committer</td><td></td><tr>
-		<tr class='bb'><td>Brian Laskey</td><td>Committer</td><td></td><tr>
+		<tr class='dark'><td>Steve Blackmon</td><td>Mentor</td><td>sblackmon</td><tr>
+		<tr class='light'><td>Stian Soiland-Reyes</td><td>Mentor</td><td>stain</td><tr>
+		<tr class='dark'><td>James Bognar</td><td>Committer</td><td>jamesbognar</td><tr>
+		<tr class='light'><td>Peter Haumer</td><td>Committer</td><td>phaumer</td><tr>
+		<tr class='dark'><td>Craig Chaney</td><td>Committer</td><td></td><tr>
+		<tr class='light'><td>Min Idzelis</td><td>Committer</td><td></td><tr>
+		<tr class='dark'><td>David M Goddard</td><td>Committer</td><td></td><tr>
+		<tr class='light'><td>Brian Laskey</td><td>Committer</td><td></td><tr>
 	</table>
 </body>
 </html>