2003/09/23 08:24:59
[org.ibex.core.git] / src / org / xwt / HTTP.java
index a5c7114..ce94de2 100644 (file)
@@ -771,12 +771,14 @@ public class HTTP {
 
                 if (authorization != oldAuth) return;
                 if (Log.on) Log.log(Authorization.class, "displaying proxy authorization dialog");
-                MessageQueue.add(new Message() {
+                Message.Q.add(new Message() {
                         public void perform() {
                             Box b = new Box();
+                            /* FIXME
                             Template.getTemplate("org.xwt.builtin.proxy_authorization", null).apply(b, null, null, null, 0, 0, null);
                             b.put("realm", realm);
                             b.put("proxyIP", proxyIP);
+                            */
                         }
                     });