mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-10 12:47:13 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
49bd25bad4 | ||
|
|
2b265310ef | ||
|
|
f4f48e4e09 | ||
|
|
4afb8003e6 | ||
|
|
5876bcf592 | ||
|
|
2486965338 | ||
|
|
ee830f51d7 | ||
|
|
343b3e41f3 | ||
|
|
2474774242 |
@@ -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;
|
||||
}
|
||||
|
||||
Vendored
+1
-1
Submodule External/browserjs updated: bd20c3745e...87a9b481d1
Vendored
+1
-1
Submodule External/jack updated: ffc5ea4a6e...7b410a1323
Vendored
+1
-1
Submodule External/narwhal updated: b91ecad8a4...e0bb2640c5
Vendored
+1
-1
Submodule External/ojunit updated: ca10912c3f...e2d0cddea2
@@ -13,6 +13,9 @@ function printUsage()
|
||||
|
||||
function main()
|
||||
{
|
||||
// FIXME: ARGS
|
||||
system.args.shift();
|
||||
|
||||
if (system.args.length < 1)
|
||||
return printUsage();
|
||||
|
||||
|
||||
@@ -164,6 +164,9 @@ function preprocess(aFilePath, outFilePath, gccArgs, flags)
|
||||
|
||||
function main()
|
||||
{
|
||||
// FIXME: ARGS
|
||||
system.args.shift();
|
||||
|
||||
var filePaths = [],
|
||||
outFilePaths = [],
|
||||
|
||||
|
||||
@@ -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
@@ -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)
|
||||
|
||||
@@ -37,5 +37,6 @@ done
|
||||
chmod +x $INSTALL_DIR/share/objj/bin/*
|
||||
|
||||
gem install *.gem
|
||||
gem cleanup objective-j
|
||||
|
||||
echo "Cappuccino Tools Installed"
|
||||
|
||||
Reference in New Issue
Block a user