Compare commits

..
8 Commits
9 changed files with 17 additions and 5 deletions
+1 -1
+3
View File
@@ -13,6 +13,9 @@ function printUsage()
function main()
{
// FIXME: ARGS
system.args.shift();
if (system.args.length < 1)
return printUsage();
+3
View File
@@ -164,6 +164,9 @@ function preprocess(aFilePath, outFilePath, gccArgs, flags)
function main()
{
// FIXME: ARGS
system.args.shift();
var filePaths = [],
outFilePaths = [],
+3
View File
@@ -12,6 +12,9 @@ if (system.env["OBJJ_INCLUDE_PATHS"])
window.args = system.args;
// FIXME: ARGS
system.args.shift();
with (window)
{
eval(File.read(OBJJ_HOME + "/lib/Frameworks/Objective-J/rhino.platform/Objective-J.js", { charset:"UTF-8" }));
+3 -1
View File
@@ -301,7 +301,9 @@ objj_search.prototype.request = function(aFilePath, aMethod)
try
{
request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
// unclear whether plusses are reserved in the URI path
//request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
request.open("GET", aFilePath, YES);
request.send("");
}
catch (anException)
+1
View File
@@ -37,5 +37,6 @@ done
chmod +x $INSTALL_DIR/share/objj/bin/*
gem install *.gem
gem cleanup objective-j
echo "Cappuccino Tools Installed"