2003/11/16 08:28:10
[org.ibex.core.git] / src / org / xwt / Template.java
index c45134c..35de96b 100644 (file)
@@ -70,7 +70,8 @@ public class Template {
     public static Res resolveStringToResource(String str, XWT xwt, boolean permitAbsolute) {
         // URL
         if (str.indexOf("://") != -1) {
-            if (permitAbsolute) return Res.fromString(str);
+            // FIXME
+            //if (permitAbsolute) return Res.fromString(str);
             Log.log(Template.class, "absolute URL " + str + " not permitted here");
             return null;
         }