You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/01/22 21:02:40 UTC

svn commit: r371372 - /myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/

Author: baranda
Date: Sun Jan 22 12:02:25 2006
New Revision: 371372

URL: http://svn.apache.org/viewcvs?rev=371372&view=rev
Log:
Fixed packages after moving

Modified:
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/AddResource.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/CallbackListener.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/HtmlBufferResponseWriterWrapper.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceHandler.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceLoader.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ReducedHTMLParser.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceHandler.java
    myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceLoader.java

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/AddResource.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/AddResource.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/AddResource.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/AddResource.java Sun Jan 22 12:02:25 2006
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import java.io.IOException;
 import java.util.HashMap;
@@ -26,7 +26,6 @@
 import org.apache.commons.lang.builder.HashCodeBuilder;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.myfaces.custom.buffer.HtmlBufferResponseWriterWrapper;
 import org.apache.myfaces.renderkit.html.HTML;
 import org.apache.myfaces.renderkit.html.HtmlRendererUtils;
 import org.apache.myfaces.renderkit.html.HtmlResponseWriterImpl;

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/CallbackListener.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/CallbackListener.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/CallbackListener.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/CallbackListener.java Sun Jan 22 12:02:25 2006
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 /**
  * @author Martin Marinschek

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/HtmlBufferResponseWriterWrapper.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/HtmlBufferResponseWriterWrapper.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/HtmlBufferResponseWriterWrapper.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/HtmlBufferResponseWriterWrapper.java Sun Jan 22 12:02:25 2006
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.custom.buffer;
+package org.apache.myfaces.renderkit.html.util;
 
 import org.apache.myfaces.renderkit.html.HtmlResponseWriterImpl;
 

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceHandler.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceHandler.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceHandler.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceHandler.java Sun Jan 22 12:02:25 2006
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import javax.faces.context.FacesContext;
 
@@ -53,7 +53,7 @@
      * class in the getResourceUri method and use that info to locate
      * the resource data represented by this object.
      * 
-     * @see org.apache.myfaces.component.html.util.ResourceHandler#getResourceLoaderClass()
+     * @see org.apache.myfaces.renderkit.html.util.ResourceHandler#getResourceLoaderClass()
      */
     public Class getResourceLoaderClass()
     {
@@ -89,7 +89,7 @@
      * where partial.class.name is the name of the base class specified in the
      * constructor, and resourceName is the resource specified in the constructor.
      * 
-     * @see org.apache.myfaces.component.html.util.ResourceHandler#getResourceUri(javax.faces.context.FacesContext)
+     * @see org.apache.myfaces.renderkit.html.util.ResourceHandler#getResourceUri(javax.faces.context.FacesContext)
      */
     public String getResourceUri(FacesContext context)
     {

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceLoader.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceLoader.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceLoader.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/MyFacesResourceLoader.java Sun Jan 22 12:02:25 2006
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import java.io.IOException;
 import java.io.InputStream;
@@ -97,8 +97,7 @@
      * which define the mime content-type; this is deduced from the
      * filename suffix of the resource.
      * <p>
-     * @see org.apache.myfaces.component.html.util.ResourceLoader#
-     *   serveResource(javax.servlet.ServletContext, 
+     * @see org.apache.myfaces.renderkit.html.util.ResourceLoader#serveResource(javax.servlet.ServletContext, 
      *     javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, java.lang.String)
      */
     public void serveResource(ServletContext context, HttpServletRequest request,

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ReducedHTMLParser.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ReducedHTMLParser.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ReducedHTMLParser.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ReducedHTMLParser.java Sun Jan 22 12:02:25 2006
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceHandler.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceHandler.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceHandler.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceHandler.java Sun Jan 22 12:02:25 2006
@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import javax.faces.context.FacesContext;
 import javax.servlet.http.HttpServletRequest;

Modified: myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceLoader.java
URL: http://svn.apache.org/viewcvs/myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceLoader.java?rev=371372&r1=371371&r2=371372&view=diff
==============================================================================
--- myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceLoader.java (original)
+++ myfaces/commons/trunk/src/main/java/org/apache/myfaces/renderkit/html/util/ResourceLoader.java Sun Jan 22 12:02:25 2006
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package org.apache.myfaces.component.html.util;
+package org.apache.myfaces.renderkit.html.util;
 
 import java.io.IOException;