mass rename and rebranding from xwt to ibex - fixed to use ixt files
[org.ibex.core.git] / src / org / ibex / builtin / proxy_authorization.ibex
similarity index 91%
rename from src/org/xwt/builtin/proxy_authorization.xwt
rename to src/org/ibex/builtin/proxy_authorization.ibex
index 207f829..0272cf5 100644 (file)
@@ -1,6 +1,6 @@
-<xwt>
+<ibex>
 
-    <import name="org.xwt.builtin.*"/>
+    <import name="org.ibex.builtin.*"/>
     <template thisbox="frame" minwidth="397" maxwidth="397" minheight="243" maxheight="243"
               vpad="20" hpad="10" titlebar="Enter Network Password">
 
         $cancel._click = function() { thisbox = null; }
 
         $user._focused = function(f) {
-            xwt.println("user.focused = " + f);
+            ibex.println("user.focused = " + f);
             if (f) $password.focused = false;
         }
 
         $password._focused = function(f) {
-            xwt.println("password.focused = " + f);
+            ibex.println("password.focused = " + f);
             if (f) $user.focused = false;
         }
 
@@ -30,7 +30,7 @@
         $user._SizeChange = function() { $password.height = $user.height; }
 
         $ok._click = function() {
-            xwt.proxyAuthorization = $user.text + ":" + $password.text;
+            ibex.proxyAuthorization = $user.text + ":" + $password.text;
             thisbox = null;
         }
 
@@ -65,7 +65,7 @@
             <box>
                 <box width="75" font="dialog8" text="Password" vshrink="true"/>
                 <box border="bevel_2_down" hpad="2" vpad="2">
-                    <edit color="white" id="password" font="org.xwt.builtin.password12" focused="false"/>
+                    <edit color="white" id="password" font="org.ibex.builtin.password12" focused="false"/>
                 </box>
             </box>
             <box height="30"/>
@@ -84,4 +84,4 @@
 
     </template>
 
-</xwt>
\ No newline at end of file
+</ibex>