Compare commits

..
9 Commits
10 changed files with 18 additions and 6 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ var _CPTexturedWindowHeadGradientColor = nil,
+ (CPColor)solidColor
{
if (!_CPTexturedWindowHeadSolidColor)
_CPTexturedWindowHeadSolidColor = [CPColor colorWithCalibratedRed:182.0 / 255.0 green:182.0 / 255.0 blue:182.0 / 255.0 alpha:1.0];
_CPTexturedWindowHeadSolidColor = [CPColor colorWithCalibratedRed:195.0 / 255.0 green:195.0 / 255.0 blue:195.0 / 255.0 alpha:1.0];
return _CPTexturedWindowHeadSolidColor;
}
+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"