You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/10/10 19:56:47 UTC

svn commit: r1181101 - /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Author: hlship
Date: Mon Oct 10 17:56:46 2011
New Revision: 1181101

URL: http://svn.apache.org/viewvc?rev=1181101&view=rev
Log:
TAP5-1685: TapestryModule contributes a MarkupRendererFilter with id 'InjectDefaultStyleheet' ; the id has a typo and should be 'InjectDefaultStylesheet'

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java?rev=1181101&r1=1181100&r2=1181101&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java Mon Oct 10 17:56:46 2011
@@ -1838,8 +1838,8 @@ public final class TapestryModule
      * <dd>Provides {@link JavaScriptSupport}</dd>
      * <dt>RenderSupport</dt>
      * <dd>Provides {@link org.apache.tapestry5.RenderSupport}</dd>
-     * <dt>InjectDefaultStyleheet</dt>
-     * <dd>Injects the default stylesheet</dd></dt>
+     * <dt>InjectDefaultStylesheet</dt>
+     * <dd>Injects the default stylesheet into all pages</dd></dt>
      * <dt>ClientBehaviorSupport</dt>
      * <dd>Provides {@link ClientBehaviorSupport}</dd>
      * <dt>Heartbeat</dt>
@@ -1989,7 +1989,7 @@ public final class TapestryModule
         configuration.add("DocumentLinker", documentLinker);
         configuration.add("JavaScriptSupport", javaScriptSupport);
         configuration.add("RenderSupport", renderSupport);
-        configuration.add("InjectDefaultStyleheet", injectDefaultStylesheet);
+        configuration.add("InjectDefaultStylesheet", injectDefaultStylesheet);
         configuration.add("ClientBehaviorSupport", clientBehaviorSupport);
         configuration.add("Heartbeat", heartbeat);
         configuration.add("ValidationDecorator", defaultValidationDecorator);