public
Description: A cross-platform web server that's scripted with Nu.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nunja.git
Added a helper for computing salted passwords.
timburks (author)
Fri Aug 08 16:55:56 -0700 2008
commit  8d485b4f198bcf89162129e8ed2a94c17da4c8e5
tree    50176ed0d27313545a08fc9611781186d1210728
parent  e5b79720af70f40bee1c43095e9dfd16ef6514cf
...
29
30
31
 
32
33
34
...
41
42
43
 
 
 
44
45
46
...
192
193
194
195
 
196
197
198
...
29
30
31
32
33
34
35
...
42
43
44
45
46
47
48
49
50
...
196
197
198
 
199
200
201
202
0
@@ -29,6 +29,7 @@ limitations under the License.
0
 
0
 #import <Foundation/Foundation.h>
0
 #import <Nu/Nu.h>
0
+#import "nunja.h"
0
 
0
 void NunjaInit()
0
 {
0
@@ -41,6 +42,9 @@ void NunjaInit()
0
 
0
 @class Nunja;
0
 
0
+@implementation SuperNunja
0
+@end
0
+
0
 static BOOL verbose_nunja = NO;
0
 static BOOL local_nunja = NO;
0
 
0
@@ -192,7 +196,7 @@ static void nunja_response_helper(struct evhttp_request *req, int code, NSString
0
 - (void) handleRequest:(NunjaRequest *)request;
0
 @end
0
 
0
-@interface Nunja : NSObject
0
+@interface Nunja : SuperNunja
0
 {
0
     struct event_base *event_base;
0
     struct evhttp *httpd;

Comments

    No one has commented yet.