UNDO: converted engine to use .ibex instead of .xwar
[org.ibex.core.git] / src / org / ibex / Main.java
index ed700da..2c6a7d3 100644 (file)
@@ -6,7 +6,7 @@ import java.io.*;
 import org.ibex.js.*;
 import org.ibex.util.*;
 
-/** Entry point for the Ibex Engine; handles splash screen, initial ibex archive loading, and argument processing */
+/** Entry point for the Ibex Engine; handles splash screen, initial xwar loading, and argument processing */
 public class Main {
 
     /**
@@ -34,9 +34,9 @@ public class Main {
         System.err.println("    -l [not yet supported]");
         System.err.println("");
         System.err.println("Source-location is one of the following:");
-        System.err.println("    - the path to an ibex file");
-        System.err.println("    - the path to a directory to be used as an ibex archive");
-        System.err.println("    - the http url of an ibext archive");
+        System.err.println("    - the path to an xwar file");
+        System.err.println("    - the path to a directory to be used as an xwar");
+        System.err.println("    - the http url of an xwar");
         System.err.println("");
         System.err.println("Initial-template is the path of the template to load; defaults to 'main'");
         Runtime.getRuntime().exit(-1);
@@ -72,7 +72,7 @@ public class Main {
             startupTemplate = initialTemplate;
         }
 
-        if (Log.on) Log.info(Main.class, "loading ibex file");
+        if (Log.on) Log.info(Main.class, "loading xwar");
         final Ibex ibex = new Ibex(rr);
         final JS final_rr = (JS)ibex.get("");