jford 2004/04/08 14:53:27
Modified: tutorial/xdocs/13 mvcportlets.xml mvctemplate.xml index.xml
mvcintro.xml
Log:
Fixed titles and links
Revision Changes Path
1.2 +2 -2 jakarta-jetspeed/tutorial/xdocs/13/mvcportlets.xml
Index: mvcportlets.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/tutorial/xdocs/13/mvcportlets.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mvcportlets.xml 8 Apr 2004 21:06:47 -0000 1.1
+++ mvcportlets.xml 8 Apr 2004 21:53:27 -0000 1.2
@@ -18,7 +18,7 @@
<properties>
<author email="[EMAIL PROTECTED]">David Sean Taylor</author>
- <title>Change the Portal Logo</title>
+ <title>Velocity Portlets in the Registry</title>
</properties>
<body>
@@ -63,7 +63,7 @@
</p>
<p>
-Also note that a Velocity portlet can derive from one of two Velocity portlets: <a
href="http://jakarta.apache.org/jetspeed/api/org/apache/jetspeed/portal/portlets/VelocityPortlet.html">Velocity</a>
or <a
href="http://jakarta.apache.org/jetspeed/api/org/apache/jetspeed/portal/portlets/CustomizerVelocityPortlet.html">CustomizerVelocity</a>.
+Also note that a Velocity portlet can derive from one of two Velocity portlets: <a
href="http://portals.apache.org/jetspeed-1/apidocs/org/apache/jetspeed/portal/portlets/VelocityPortlet.html">Velocity</a>
or <a
href="http://portals.apache.org/jetspeed-1/apidocs/org/apache/jetspeed/portal/portlets/CustomizerVelocityPortlet.html">CustomizerVelocity</a>.
The only difference being that the Velocity portlet uses the default Jetspeed
portlet customizer, where as the CustomizerVelocity portlet is expected to provide its
own customization. Look at the Weather Portlet as an example of a CustomizerVelocity
portlet providing its own customization.
</p>
1.2 +2 -2 jakarta-jetspeed/tutorial/xdocs/13/mvctemplate.xml
Index: mvctemplate.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/tutorial/xdocs/13/mvctemplate.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mvctemplate.xml 8 Apr 2004 21:06:47 -0000 1.1
+++ mvctemplate.xml 8 Apr 2004 21:53:27 -0000 1.2
@@ -18,7 +18,7 @@
<properties>
<author email="[EMAIL PROTECTED]">David Sean Taylor</author>
- <title>Change the Portal Logo</title>
+ <title>The Velocity Template</title>
</properties>
<body>
@@ -81,7 +81,7 @@
<p>
Accessors get the attributes: symbol, price, change and volume.
-Also notice that there are some macros: #headerCell and #entryCell.
+Also notice that there are some macros: <b>#headerCell</b> and <b>#entryCell</b>.
The macros are defined in a common <a
href="http://jakarta.apache.org/velocity/user-guide.html#Velocimacros">Velocimacro</a>
file that is shared across Jetspeed.
<a
href="http://jakarta.apache.org/velocity/user-guide.html#Velocimacros">Velocimacro</a>
are great for defining little snippets of templates that can be included into other
templates.
</p>
1.3 +1 -1 jakarta-jetspeed/tutorial/xdocs/13/index.xml
Index: index.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/tutorial/xdocs/13/index.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- index.xml 8 Apr 2004 21:06:47 -0000 1.2
+++ index.xml 8 Apr 2004 21:53:27 -0000 1.3
@@ -18,7 +18,7 @@
<properties>
<author email="[EMAIL PROTECTED]">David Sean Taylor</author>
- <title>The Portal Web Design</title>
+ <title>The MVC Portlet</title>
</properties>
<body>
1.3 +6 -6 jakarta-jetspeed/tutorial/xdocs/13/mvcintro.xml
Index: mvcintro.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/tutorial/xdocs/13/mvcintro.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mvcintro.xml 8 Apr 2004 21:06:47 -0000 1.2
+++ mvcintro.xml 8 Apr 2004 21:53:27 -0000 1.3
@@ -18,7 +18,7 @@
<properties>
<author email="[EMAIL PROTECTED]">David Sean Taylor</author>
- <title>Change the Portal Logo</title>
+ <title>Introduction to MVC Portlet</title>
</properties>
<body>
@@ -57,11 +57,11 @@
The examples in tutorials 5 and 6 were useful for you to learn the Portlet
interface.
However, overriding the getContent method of the portlet interface is not good
practice.
We recommend abstracting the content generation phase by basing your portlets on
one of the MVC-based portlets provided in the Jetspeed distribution; such as
-<a
href="http://jakarta.apache.org/jetspeed/site/portlet_config_JSP.html">JSPPortlet</a>,
-<a
href="http://jakarta.apache.org/jetspeed/site/portlet_config_XSL.html">XSLTPortlet</a>,
-<a
href="http://jakarta.apache.org/jetspeed/site/portlet_config_RSS.html">RSSPortlet</a>,
-<a
href="http://jakarta.apache.org/jetspeed/site/portlet_config_HTML.html">HTMLPortlet</a>
or of course the
-<a
href="http://jakarta.apache.org/jetspeed/site/portlet_config_Velocity.html">VelocityPortlet</a>.
+<a
href="http://portals.apache.org/jetspeed-1/portlet_config_JSP.html">JSPPortlet</a>,
+<a
href="http://portals.apache.org/jetspeed-1/portlet_config_XSL.html">XSLTPortlet</a>,
+<a
href="http://portals.apache.org/jetspeed-1/portlet_config_RSS.html">RSSPortlet</a>,
+<a
href="http://portals.apache.org/jetspeed-1/portlet_config_HTML.html">HTMLPortlet</a>
or of course the
+<a
href="http://portals.apache.org/jetspeed-1/portlet_config_Velocity.html">VelocityPortlet</a>.
</p>
<p>A Velocity portlet is made up of the typical MVC components:</p>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]