Author: gmcdonald
Date: Fri Mar 23 19:05:13 2007
New Revision: 521960
URL: http://svn.apache.org/viewvc?view=rev&rev=521960
Log:
Update the Quickstart to reflect current way of doing things
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/src/documentation/content/xdocs/how/howto-dispatcher-quickstart.xml
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/src/documentation/content/xdocs/how/howto-dispatcher-quickstart.xml
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/src/documentation/content/xdocs/how/howto-dispatcher-quickstart.xml?view=diff&rev=521960&r1=521959&r2=521960
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/src/documentation/content/xdocs/how/howto-dispatcher-quickstart.xml
(original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.internal.dispatcher/src/documentation/content/xdocs/how/howto-dispatcher-quickstart.xml
Fri Mar 23 19:05:13 2007
@@ -117,7 +117,10 @@
<ul>
<li>Copy THEMER_PLUGIN/themes/pelt.fv into your project at
${themer.project.dir}/pelt.fv
- </li>
+ </li>
+ <li>Copy THEMER_PLUGIN/themes/pelt/html/pelt-html.vt.xml into your
+ project at ${themer.project.dir}/pelt/html/pelt-html.vt.xml
+ </li>
<li>Re-start 'forrest run'</li>
<li>localhost:8888/index.html ... See the same view, now structured
by us.
@@ -132,8 +135,8 @@
<section id="remove-default-contract">
<title>Remove a default contract</title>
<ul>
- <li>Remove one of the search boxes. Edit your pelt.fv and find the
- "search-input" contract (there are two). Comment one out.
+ <li>Remove the top breadcrumb trail. Edit your pelt-html.vt.xml and
find the
+ "branding-breadcrumbs" contract and comment it out.
</li>
</ul>
</section>
@@ -147,15 +150,15 @@
</p>
<ul>
<li>
- See the usage detail for your chosen contract via the abovementioned
list.
- e.g. "siteinfo-compliance-links"
+ See the usage detail for your chosen contract via the above
mentioned list.
+ e.g. "siteinfo-current-time"
</li>
<li>
Insert it at the appropriate point in your structurer. Note that it
will need to go inside the appropriate CSS hook, e.g.
<source><![CDATA[ ...
<forrest:hook name="footer">
- <forrest:contract name="siteinfo-compliance-links"/>
+ <forrest:contract name="siteinfo-current-time"/>
...
]]></source>
</li>
@@ -163,7 +166,10 @@
<p>
Notice that you did not need to copy any other code to your project
space.
Forrest finds the default contract in its core (the themes.core
plugin).
- </p>
+</p>
+<p>You will find some commonly used contracts in place but commented out in
both the common
+ and the pelt structurer files. Feel free to umcomment them to activate
them, move them
+around into other hooks or create new hooks for them.</p>
</section>
<section id="add-project-contract">