gatein SVN: r9067 - epp/docs/branches/6.0/Developer_Guide/en-US.
by do-not-reply@jboss.org
Author: rdickens
Date: 2013-01-21 00:12:43 -0500 (Mon, 21 Jan 2013)
New Revision: 9067
Modified:
epp/docs/branches/6.0/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml
Log:
Minor edits
Modified: epp/docs/branches/6.0/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml
===================================================================
--- epp/docs/branches/6.0/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml 2013-01-21 04:33:14 UTC (rev 9066)
+++ epp/docs/branches/6.0/Developer_Guide/en-US/chapter-5-GDG_Application_development.xml 2013-01-21 05:12:43 UTC (rev 9067)
@@ -23,7 +23,7 @@
Note that, unlike portlets, a gadget has very little knowledge of its context (the portal) and its integration within the portal may be more limited (in terms of visual integration for instance).
</para>
<para>
- While Google Web Toolkit (GWT) applications can also technically be used as gadgets and GWT makes it easy to write user-friendly applications, we do not recommend its usage as its support can be limited and Google's strategy to keep GWT applications running as gadgets cannot clearly be established. Consequently, GWT applications are not supported by the JBoss Portal Platform support agreement.
+ While Google Web Toolkit (GWT) applications can also technically be used as gadgets and GWT makes it easy to write user-friendly applications, its usage is not recommended as its support can be limited and Google's strategy to keep GWT applications running as gadgets cannot clearly be established. Consequently, GWT applications are not supported by the JBoss Portal Platform support agreement.
</para>
</section>
</section>
@@ -387,22 +387,22 @@
<example>
<title>pom.xml</title>
<programlisting>
-068. <dependencies>
-069. <!--
-070. The versions, scopes and types of these dependencies are managed in gatein-*-bom.
-071. You need to name only groupId and artifactId here.
-072. Name only those artifacts you refer to in your code.
-073. Look at gatein-*-bom POM file for the complete list of available artifacts.
-074. -->
-075. <dependency>
-076. <groupId>org.jboss.spec.javax.faces</groupId>
-077. <artifactId>jboss-jsf-api_2.1_spec</artifactId>
-078. </dependency>
-079. <dependency>
-080. <groupId>org.jboss.portletbridge</groupId>
-081. <artifactId>portletbridge-api</artifactId>
-082. </dependency>
-083. </dependencies>
+ <dependencies>
+ <!--
+ The versions, scopes and types of these dependencies are managed in gatein-*-bom.
+ You need to name only groupId and artifactId here.
+ Name only those artifacts you refer to in your code.
+ Look at gatein-*-bom POM file for the complete list of available artifacts.
+ -->
+ <dependency>
+ <groupId>org.jboss.spec.javax.faces</groupId>
+ <artifactId>jboss-jsf-api_2.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.portletbridge</groupId>
+ <artifactId>portletbridge-api</artifactId>
+ </dependency>
+ </dependencies>
</programlisting>
</example>
</section>
@@ -771,41 +771,41 @@
<example>
<title>pom.xml</title>
<programlisting>
-068. <dependencies>
-069. <!--
-070. The versions, scopes and types of these dependencies are managed in gatein-*-bom.
-071. You need to name only groupId and artifactId here.
-072. Name only those artifacts you refer to in your code.
-073. Look at gatein-*-bom POM file for the complete list of available artifacts.
-074. -->
-075. <!-- General JSF dependencies -->
-076. <dependency>
-077. <groupId>org.jboss.spec.javax.faces</groupId>
-078. <artifactId>jboss-jsf-api_2.1_spec</artifactId>
-079. </dependency>
-080. <dependency>
-081. <groupId>org.jboss.portletbridge</groupId>
-082. <artifactId>portletbridge-api</artifactId>
-083. </dependency>
-084.
-085. <!-- RF-sprecific dependencies -->
-086. <dependency>
-087. <groupId>org.jboss.portletbridge</groupId>
-088. <artifactId>portletbridge-extension-richfaces</artifactId>
-089. </dependency>
-090. <dependency>
-091. <groupId>org.richfaces.ui</groupId>
-092. <artifactId>richfaces-components-api</artifactId>
-093. </dependency>
-094. <dependency>
-095. <groupId>org.richfaces.ui</groupId>
-096. <artifactId>richfaces-components-ui</artifactId>
-097. </dependency>
-098. <dependency>
-099. <groupId>org.richfaces.core</groupId>
-100. <artifactId>richfaces-core-impl</artifactId>
-101. </dependency>
-102. </dependencies>
+ <dependencies>
+ <!--
+ The versions, scopes and types of these dependencies are managed in gatein-*-bom.
+ You need to name only groupId and artifactId here.
+ Name only those artifacts you refer to in your code.
+ Look at gatein-*-bom POM file for the complete list of available artifacts.
+ -->
+ <!-- General JSF dependencies -->
+ <dependency>
+ <groupId>org.jboss.spec.javax.faces</groupId>
+ <artifactId>jboss-jsf-api_2.1_spec</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.portletbridge</groupId>
+ <artifactId>portletbridge-api</artifactId>
+ </dependency>
+
+ <!-- RF-sprecific dependencies -->
+ <dependency>
+ <groupId>org.jboss.portletbridge</groupId>
+ <artifactId>portletbridge-extension-richfaces</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.ui</groupId>
+ <artifactId>richfaces-components-ui</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.richfaces.core</groupId>
+ <artifactId>richfaces-core-impl</artifactId>
+ </dependency>
+ </dependencies>
</programlisting>
</example>
</section>