mirror of
https://github.com/samsonjs/cpwebsocket.git
synced 2026-03-25 09:15:48 +00:00
initial commit
This commit is contained in:
commit
72ee93e487
10 changed files with 470 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
.DS_Store
|
||||||
|
TestHarness/Frameworks
|
||||||
81
CPWebSocket.j
Normal file
81
CPWebSocket.j
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
//
|
||||||
|
// CPWebSocket.j
|
||||||
|
//
|
||||||
|
// Copyright 2010 Sami Samhuri
|
||||||
|
//
|
||||||
|
// MIT license
|
||||||
|
//
|
||||||
|
|
||||||
|
@import <Foundation/CPObject.j>
|
||||||
|
|
||||||
|
// FIXME export these ... #define?
|
||||||
|
var CPWebSocketStateConnecting = 0,
|
||||||
|
CPWebSocketStateOpen = 1,
|
||||||
|
CPWebSocketStateClosing = 2,
|
||||||
|
CPWebSocketStateClosed = 3;
|
||||||
|
|
||||||
|
@implementation CPWebSocket : CPObject
|
||||||
|
{
|
||||||
|
JSObject _ws;
|
||||||
|
id delegate;
|
||||||
|
}
|
||||||
|
|
||||||
|
+ (id) openWebSocketWithURL: (CPString)url_ delegate: (id) delegate_
|
||||||
|
{
|
||||||
|
return [[self alloc] initWithURL: url_ delegate: delegate_];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (id) initWithURL: (CPString)url_ delegate: (id) delegate_
|
||||||
|
{
|
||||||
|
self = [super init];
|
||||||
|
if (self) {
|
||||||
|
_ws = new WebSocket(url_);
|
||||||
|
delegate = delegate_;
|
||||||
|
[self _setupCallbacks];
|
||||||
|
}
|
||||||
|
return self;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) _setupCallbacks
|
||||||
|
{
|
||||||
|
_ws.onopen = function() {
|
||||||
|
[delegate webSocketDidOpen: self];
|
||||||
|
};
|
||||||
|
_ws.onclose = function(event) {
|
||||||
|
[delegate webSocketDidClose: self];
|
||||||
|
};
|
||||||
|
_ws.onmessage = function(event) {
|
||||||
|
[delegate webSocket: self didReceiveMessage: event.data];
|
||||||
|
};
|
||||||
|
_ws.onerror = function(event) {
|
||||||
|
[delegate webSocketDidReceiveError: self];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
- (CPString) URL
|
||||||
|
{
|
||||||
|
return _ws.URL;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (CPNumber) state
|
||||||
|
{
|
||||||
|
return _ws.state;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (CPNumber) bytesBuffered
|
||||||
|
{
|
||||||
|
return _ws.bufferedAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) close
|
||||||
|
{
|
||||||
|
_ws.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
- (BOOL) send: (CPString) data
|
||||||
|
{
|
||||||
|
// TODO check the state, should not be CPWebSocketConnecting
|
||||||
|
return _ws.send(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
18
README.md
Normal file
18
README.md
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
CPWebSocket
|
||||||
|
===========
|
||||||
|
|
||||||
|
A WebSocket implementation for Cappuccino.
|
||||||
|
|
||||||
|
Test it out by running runserver.js from node.websocket[1] (with
|
||||||
|
Node[2]) and then browsing to TestHarness/index.html with a browser
|
||||||
|
that supports WebSockets (such as Google Chrome).
|
||||||
|
|
||||||
|
[1] http://github.com/shazow/node.websocket.js
|
||||||
|
[2] http://github.com/ry/node
|
||||||
|
|
||||||
|
|
||||||
|
License
|
||||||
|
=======
|
||||||
|
|
||||||
|
Copyright 2010 Sami Samhuri
|
||||||
|
MIT License
|
||||||
101
TestHarness/AppController.j
Normal file
101
TestHarness/AppController.j
Normal file
|
|
@ -0,0 +1,101 @@
|
||||||
|
/*
|
||||||
|
* AppController.j
|
||||||
|
* CPWebSocket TestHarness
|
||||||
|
*
|
||||||
|
* Created by Sami Samhuri on April 1, 2010.
|
||||||
|
* Copyright 2010, Sami Samhuri All rights reserved.
|
||||||
|
*
|
||||||
|
* MIT license
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import <Foundation/CPObject.j>
|
||||||
|
@import "../CPWebSocket.j"
|
||||||
|
|
||||||
|
CPLogRegister(CPLogConsole);
|
||||||
|
|
||||||
|
@implementation AppController : CPObject
|
||||||
|
{
|
||||||
|
CPMenu mainMenu;
|
||||||
|
CPLabel label;
|
||||||
|
CPWebSocket webSocket;
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)applicationDidFinishLaunching:(CPNotification)aNotification
|
||||||
|
{
|
||||||
|
var theWindow = [[CPWindow alloc] initWithContentRect:CGRectMakeZero() styleMask:CPBorderlessBridgeWindowMask],
|
||||||
|
contentView = [theWindow contentView];
|
||||||
|
|
||||||
|
label = [[CPTextField alloc] initWithFrame:CGRectMakeZero()];
|
||||||
|
[label setFont:[CPFont boldSystemFontOfSize:24.0]];
|
||||||
|
[label setAutoresizingMask:CPViewMinXMargin | CPViewMaxXMargin | CPViewMinYMargin | CPViewMaxYMargin];
|
||||||
|
|
||||||
|
[contentView addSubview:label];
|
||||||
|
[theWindow orderFront:self];
|
||||||
|
|
||||||
|
[self setLabelText:@"Hello WebSocket World!"];
|
||||||
|
[self createMainMenu];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) openWebSocket
|
||||||
|
{
|
||||||
|
webSocket = [CPWebSocket openWebSocketWithURL: @"ws://localhost:8080" delegate: self];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) webSocketDidOpen: (CPWebSocket)ws
|
||||||
|
{
|
||||||
|
[self setLabelText: @">>> web socket open: " + [ws URL]];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) webSocket: (CPWebSocket)ws didReceiveMessage: (CPString)message
|
||||||
|
{
|
||||||
|
[self setLabelText: @">>> web socket received: " + message];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) webSocketDidClose: (CPWebSocket)ws
|
||||||
|
{
|
||||||
|
[self setLabelText: @">>> web socket closed"];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) webSocketDidReceiveError: (CPWebSocket)ws
|
||||||
|
{
|
||||||
|
[self setLabelText: @">>> web socket error, state: " + [ws state]];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) sendMessage
|
||||||
|
{
|
||||||
|
[webSocket send: @"ping"];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) closeWebSocket
|
||||||
|
{
|
||||||
|
[webSocket close];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) createMainMenu
|
||||||
|
{
|
||||||
|
mainMenu = [[CPMenu alloc] initWithTitle:@"TestHarness"];
|
||||||
|
var topMenuItem = [mainMenu addItemWithTitle:"CPWebSocket Tests" action:nil keyEquivalent:nil];
|
||||||
|
var menu = [[CPMenu alloc] init];
|
||||||
|
[menu addItemWithTitle: @"Open WebSocket"
|
||||||
|
action: @selector(openWebSocket)
|
||||||
|
keyEquivalent: "1"];
|
||||||
|
[menu addItemWithTitle: @"Send Message"
|
||||||
|
action: @selector(sendMessage)
|
||||||
|
keyEquivalent: "2"];
|
||||||
|
[menu addItemWithTitle: @"Close WebSocket"
|
||||||
|
action: @selector(closeWebSocket)
|
||||||
|
keyEquivalent: "5"];
|
||||||
|
[mainMenu setSubmenu:menu forItem:topMenuItem];
|
||||||
|
[[CPApplication sharedApplication] setMainMenu:mainMenu];
|
||||||
|
[CPMenu setMenuBarVisible:YES];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void) setLabelText: (CPString) text
|
||||||
|
{
|
||||||
|
[label setStringValue: text];
|
||||||
|
[label sizeToFit];
|
||||||
|
[label setCenter:[contentView center]];
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
||||||
12
TestHarness/Info.plist
Normal file
12
TestHarness/Info.plist
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>CPApplicationDelegateClass</key>
|
||||||
|
<string>AppController</string>
|
||||||
|
<key>CPBundleName</key>
|
||||||
|
<string>TestHarness</string>
|
||||||
|
<key>CPPrincipalClass</key>
|
||||||
|
<string>CPApplication</string>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
||||||
81
TestHarness/Jakefile
Normal file
81
TestHarness/Jakefile
Normal file
|
|
@ -0,0 +1,81 @@
|
||||||
|
/*
|
||||||
|
* Jakefile
|
||||||
|
* TestHarness
|
||||||
|
*
|
||||||
|
* Created by You on April 1, 2010.
|
||||||
|
* Copyright 2010, Your Company All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
var ENV = require("system").env,
|
||||||
|
FILE = require("file"),
|
||||||
|
JAKE = require("jake"),
|
||||||
|
task = JAKE.task,
|
||||||
|
FileList = JAKE.FileList,
|
||||||
|
app = require("cappuccino/jake").app,
|
||||||
|
configuration = ENV["CONFIG"] || ENV["CONFIGURATION"] || ENV["c"] || "Debug",
|
||||||
|
OS = require("os");
|
||||||
|
|
||||||
|
app ("TestHarness", function(task)
|
||||||
|
{
|
||||||
|
task.setBuildIntermediatesPath(FILE.join("Build", "TestHarness.build", configuration));
|
||||||
|
task.setBuildPath(FILE.join("Build", configuration));
|
||||||
|
|
||||||
|
task.setProductName("TestHarness");
|
||||||
|
task.setIdentifier("com.yourcompany.TestHarness");
|
||||||
|
task.setVersion("1.0");
|
||||||
|
task.setAuthor("Your Company");
|
||||||
|
task.setEmail("feedback @nospam@ yourcompany.com");
|
||||||
|
task.setSummary("TestHarness");
|
||||||
|
task.setSources((new FileList("**/*.j")).exclude(FILE.join("Build", "**")));
|
||||||
|
task.setResources(new FileList("Resources/*"));
|
||||||
|
task.setIndexFilePath("index.html");
|
||||||
|
task.setInfoPlistPath("Info.plist");
|
||||||
|
|
||||||
|
if (configuration === "Debug")
|
||||||
|
task.setCompilerFlags("-DDEBUG -g");
|
||||||
|
else
|
||||||
|
task.setCompilerFlags("-O");
|
||||||
|
});
|
||||||
|
|
||||||
|
function printResults(configuration)
|
||||||
|
{
|
||||||
|
print("----------------------------")
|
||||||
|
print(configuration+" app built at path: "+FILE.join("Build", configuration, "TestHarness"));
|
||||||
|
print("----------------------------")
|
||||||
|
}
|
||||||
|
|
||||||
|
task ("default", ["TestHarness"], function()
|
||||||
|
{
|
||||||
|
printResults(configuration);
|
||||||
|
});
|
||||||
|
|
||||||
|
task ("build", ["default"]);
|
||||||
|
|
||||||
|
task ("debug", function()
|
||||||
|
{
|
||||||
|
ENV["CONFIGURATION"] = "Debug";
|
||||||
|
JAKE.subjake(["."], "build", ENV);
|
||||||
|
});
|
||||||
|
|
||||||
|
task ("release", function()
|
||||||
|
{
|
||||||
|
ENV["CONFIGURATION"] = "Release";
|
||||||
|
JAKE.subjake(["."], "build", ENV);
|
||||||
|
});
|
||||||
|
|
||||||
|
task ("run", ["debug"], function()
|
||||||
|
{
|
||||||
|
OS.system(["open", FILE.join("Build", "Debug", "TestHarness", "index.html")]);
|
||||||
|
});
|
||||||
|
|
||||||
|
task ("run-release", ["release"], function()
|
||||||
|
{
|
||||||
|
OS.system(["open", FILE.join("Build", "Release", "TestHarness", "index.html")]);
|
||||||
|
});
|
||||||
|
|
||||||
|
task ("deploy", ["release"], function()
|
||||||
|
{
|
||||||
|
FILE.mkdirs(FILE.join("Build", "Deployment", "TestHarness"));
|
||||||
|
OS.system(["press", "-f", FILE.join("Build", "Release", "TestHarness"), FILE.join("Build", "Deployment", "TestHarness")]);
|
||||||
|
printResults("Deployment")
|
||||||
|
});
|
||||||
BIN
TestHarness/Resources/spinner.gif
Normal file
BIN
TestHarness/Resources/spinner.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.8 KiB |
86
TestHarness/index-debug.html
Normal file
86
TestHarness/index-debug.html
Normal file
|
|
@ -0,0 +1,86 @@
|
||||||
|
<!DOCTYPE html
|
||||||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<!--
|
||||||
|
index-debug.html
|
||||||
|
TestHarness
|
||||||
|
|
||||||
|
Created by You on April 1, 2010.
|
||||||
|
Copyright 2010, Your Company All rights reserved.
|
||||||
|
-->
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
|
||||||
|
|
||||||
|
<title>TestHarness</title>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
OBJJ_MAIN_FILE = "main.j";
|
||||||
|
OBJJ_INCLUDE_PATHS = ["Frameworks/Debug", "Frameworks", "SomethingElse"];
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script src="Frameworks/Debug/Objective-J/Objective-J.js" type="text/javascript"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
objj_msgSend_reset();
|
||||||
|
|
||||||
|
// DEBUG OPTIONS:
|
||||||
|
|
||||||
|
// Uncomment to enable printing of backtraces on exceptions:
|
||||||
|
//objj_msgSend_decorate(objj_backtrace_decorator);
|
||||||
|
|
||||||
|
// Uncomment to enable runtime type checking:
|
||||||
|
//objj_msgSend_decorate(objj_typecheck_decorator);
|
||||||
|
|
||||||
|
// Uncomment (along with both above) to print backtraces on type check errors:
|
||||||
|
//objj_typecheck_prints_backtrace = true;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
body{margin:0; padding:0;}
|
||||||
|
#container {position: absolute; top:50%; left:50%;}
|
||||||
|
#content {width:800px; text-align:center; margin-left: -400px; height:50px; margin-top:-25px; line-height: 50px;}
|
||||||
|
#content {font-family: "Helvetica", "Arial", sans-serif; font-size: 18px; color: black; text-shadow: 0px 1px 0px white; }
|
||||||
|
#loadgraphic {margin-right: 0.2em; margin-bottom:-2px;}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!--[if lt IE 7]>
|
||||||
|
<STYLE type="text/css">
|
||||||
|
#container { position: relative; top: 50%; }
|
||||||
|
#content { position: relative;}
|
||||||
|
</STYLE>
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="">
|
||||||
|
<div id="cappuccino-body">
|
||||||
|
<div id="loadingcontainer" style="background-color: #eeeeee; overflow:hidden; width:100%; height:100%; position: absolute; top: 0; left: 0;">
|
||||||
|
<script type = "text/javascript">
|
||||||
|
document.write("<div id='container'><p id='content'>" +
|
||||||
|
"<img id='loadgraphic' width='16' height='16' src='Resources/spinner.gif' /> " +
|
||||||
|
"Loading TestHarness...</p></div>");
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<div id="container">
|
||||||
|
<div style="width: 440px; padding: 10px 25px 20px 25px; font-family: sans-serif; background-color: #ffffff; position: relative; left: -245px; top: -120px; text-align: center; -moz-border-radius: 20px; -webkit-border-radius: 20px; color: #555555">
|
||||||
|
<p style="line-height: 1.4em;">JavaScript is required for this site to work correctly but is either disabled or not supported by your browser.</p>
|
||||||
|
<p style="font-size:120%; padding:10px;"><a href="http://cappuccino.org/noscript">Show me how to enable JavaScript</a></p>
|
||||||
|
<p style="font-size:80%;">You may want to upgrade to a newer browser while you're at it:</p>
|
||||||
|
<ul style="margin:0;padding:0; text-align: center; font-size:80%;" >
|
||||||
|
<li style="display: inline;"><a href="http://www.apple.com/safari/download/">Safari</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.google.com/chrome/">Chrome</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.opera.com/download/">Opera</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">Internet Explorer</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
71
TestHarness/index.html
Normal file
71
TestHarness/index.html
Normal file
|
|
@ -0,0 +1,71 @@
|
||||||
|
<!DOCTYPE html
|
||||||
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||||
|
<!--
|
||||||
|
index.html
|
||||||
|
TestHarness
|
||||||
|
|
||||||
|
Created by You on April 1, 2010.
|
||||||
|
Copyright 2010, Your Company All rights reserved.
|
||||||
|
-->
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
|
||||||
|
|
||||||
|
<title>TestHarness</title>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
OBJJ_MAIN_FILE = "main.j";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script src="Frameworks/Objective-J/Objective-J.js" type = "text/javascript"></script>
|
||||||
|
|
||||||
|
<style type="text/css">
|
||||||
|
body{margin:0; padding:0;}
|
||||||
|
#container {position: absolute; top:50%; left:50%;}
|
||||||
|
#content {width:800px; text-align:center; margin-left: -400px; height:50px; margin-top:-25px; line-height: 50px;}
|
||||||
|
#content {font-family: "Helvetica", "Arial", sans-serif; font-size: 18px; color: black; text-shadow: 0px 1px 0px white; }
|
||||||
|
#loadgraphic {margin-right: 0.2em; margin-bottom:-2px;}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<!--[if lt IE 7]>
|
||||||
|
<STYLE type="text/css">
|
||||||
|
#container { position: relative; top: 50%; }
|
||||||
|
#content { position: relative;}
|
||||||
|
</STYLE>
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body style="">
|
||||||
|
<div id="cappuccino-body">
|
||||||
|
<div id="loadingcontainer" style="background-color: #eeeeee; overflow:hidden; width:100%; height:100%; position: absolute; top: 0; left: 0;">
|
||||||
|
<script type = "text/javascript">
|
||||||
|
document.write("<div id='container'><p id='content'>" +
|
||||||
|
"<img id='loadgraphic' width='16' height='16' src='Resources/spinner.gif' /> " +
|
||||||
|
"Loading TestHarness...</p></div>");
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<noscript>
|
||||||
|
<div id="container">
|
||||||
|
<div style="width: 440px; padding: 10px 25px 20px 25px; font-family: sans-serif; background-color: #ffffff; position: relative; left: -245px; top: -120px; text-align: center; -moz-border-radius: 20px; -webkit-border-radius: 20px; color: #555555">
|
||||||
|
<p style="line-height: 1.4em;">JavaScript is required for this site to work correctly but is either disabled or not supported by your browser.</p>
|
||||||
|
<p style="font-size:120%; padding:10px;"><a href="http://cappuccino.org/noscript">Show me how to enable JavaScript</a></p>
|
||||||
|
<p style="font-size:80%;">You may want to upgrade to a newer browser while you're at it:</p>
|
||||||
|
<ul style="margin:0;padding:0; text-align: center; font-size:80%;" >
|
||||||
|
<li style="display: inline;"><a href="http://www.apple.com/safari/download/">Safari</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.google.com/chrome/">Chrome</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.opera.com/download/">Opera</a></li>
|
||||||
|
<li style="display: inline;"><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">Internet Explorer</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
|
||||||
18
TestHarness/main.j
Normal file
18
TestHarness/main.j
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
/*
|
||||||
|
* AppController.j
|
||||||
|
* TestHarness
|
||||||
|
*
|
||||||
|
* Created by You on April 1, 2010.
|
||||||
|
* Copyright 2010, Your Company All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
@import <Foundation/Foundation.j>
|
||||||
|
@import <AppKit/AppKit.j>
|
||||||
|
|
||||||
|
@import "AppController.j"
|
||||||
|
|
||||||
|
|
||||||
|
function main(args, namedArgs)
|
||||||
|
{
|
||||||
|
CPApplicationMain(args, namedArgs);
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue