You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by cr...@apache.org on 2006/05/21 06:43:15 UTC

svn commit: r408132 - in /beehive/trunk/netui/src: core/org/apache/beehive/netui/core/urls/URLRewriter.java tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java

Author: crogers
Date: Sat May 20 21:43:13 2006
New Revision: 408132

URL: http://svn.apache.org/viewvc?rev=408132&view=rev
Log:
Minor fix to a log message and comment.


Modified:
    beehive/trunk/netui/src/core/org/apache/beehive/netui/core/urls/URLRewriter.java
    beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java

Modified: beehive/trunk/netui/src/core/org/apache/beehive/netui/core/urls/URLRewriter.java
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/src/core/org/apache/beehive/netui/core/urls/URLRewriter.java?rev=408132&r1=408131&r2=408132&view=diff
==============================================================================
--- beehive/trunk/netui/src/core/org/apache/beehive/netui/core/urls/URLRewriter.java (original)
+++ beehive/trunk/netui/src/core/org/apache/beehive/netui/core/urls/URLRewriter.java Sat May 20 21:43:13 2006
@@ -65,7 +65,7 @@
     public AjaxUrlInfo getAjaxUrl(ServletContext servletContext, ServletRequest request, Object nameable)
     {
         // @todo: this should actually be an abstract method in the next major version.
-        // @todo: the nameable is has to be an INameable, this requires taking a dependency here on the NameService
+        // @todo: the nameable has to be an INameable, this requires taking a dependency here on the NameService
         // For back compat, this method is implemented but only throws a runtime exception
         throw new RuntimeException("Not Implemented");
     }

Modified: beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java
URL: http://svn.apache.org/viewvc/beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java?rev=408132&r1=408131&r2=408132&view=diff
==============================================================================
--- beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java (original)
+++ beehive/trunk/netui/src/tags-html/org/apache/beehive/netui/tags/internal/ViewRendererCRI.java Sat May 20 21:43:13 2006
@@ -100,7 +100,7 @@
         // get the view renderer from the request attribute
         Object obj = request.getAttribute(PageFlowConstants.VIEW_RENDERER_ATTRIBUTE_NAME);
         if (obj == null) {
-            logger.error("ViewRenderer was not found in the NameService");
+            logger.error("ViewRenderer was not found in the request attributes");
             return;
         }
         if (!(obj instanceof ViewRenderer)) {