Revision: 575
          http://svn.sourceforge.net/stripes/?rev=575&view=rev
Author:   bengunter
Date:     2007-06-13 07:30:34 -0700 (Wed, 13 Jun 2007)

Log Message:
-----------
changed "path" to more appropriately named "baseUrl"

Modified Paths:
--------------
    trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java

Modified: trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java      
2007-06-13 05:20:46 UTC (rev 574)
+++ trunk/stripes/src/net/sourceforge/stripes/util/UrlBuilder.java      
2007-06-13 14:30:34 UTC (rev 575)
@@ -63,7 +63,7 @@
     }
 
     private Class<? extends ActionBean> beanType;
-    private String path;
+    private String baseUrl;
     private String anchor;
     private Locale locale;
     private String parameterSeparator;
@@ -110,7 +110,7 @@
                 url = url.substring(0, index);
             }
 
-            this.path = url;
+            this.baseUrl = url;
         }
     }
 
@@ -356,7 +356,7 @@
      */
     protected String getBaseURL() {
         if (beanType == null)
-            return path;
+            return baseUrl;
 
         UrlBinding binding = 
UrlBindingFactory.getInstance().getBindingPrototype(beanType);
         if (binding == null) {


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to