You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/08/17 02:45:07 UTC

svn commit: r1374117 - /maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt

Author: hboutemy
Date: Fri Aug 17 00:45:07 2012
New Revision: 1374117

URL: http://svn.apache.org/viewvc?rev=1374117&view=rev
Log:
[MSITE-645] fixed wrong example: menu doesn't accept href attribute but items in menu do

Modified:
    maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt

Modified: maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt?rev=1374117&r1=1374116&r2=1374117&view=diff
==============================================================================
--- maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt (original)
+++ maven/plugins/trunk/maven-site-plugin/src/site/apt/examples/sitedescriptor.apt Fri Aug 17 00:45:07 2012
@@ -189,8 +189,10 @@ Configuring the Site Descriptor
   ...
   <body>
     ...
-    <menu name="Foo" href="foo.html" />
-    <menu name="FAQ" href="faq.html" />
+    <menu name="Overview">
+      <item name="Foo" href="foo.html" />
+      <item name="FAQ" href="faq.html" />
+    </menu>
     ...
   </body>
   ...