-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
114 changed files
with
7,018 additions
and
2,196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "Externals/asi-http-request"] | ||
path = Externals/asi-http-request | ||
url = https://github.com/pokeb/asi-http-request.git |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// EnsureArrayTransformer.h | ||
// MetaZ | ||
// | ||
// Created by Brian Olsen on 18/12/11. | ||
// Copyright 2011 Maven-Group. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface EnsureArrayTransformer : NSValueTransformer { | ||
|
||
} | ||
|
||
+ (Class)transformedValueClass; | ||
+ (BOOL)allowsReverseTransformation; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// EnsureArrayTransformer.m | ||
// MetaZ | ||
// | ||
// Created by Brian Olsen on 18/12/11. | ||
// Copyright 2011 Maven-Group. All rights reserved. | ||
// | ||
|
||
#import "EnsureArrayTransformer.h" | ||
|
||
|
||
@implementation EnsureArrayTransformer | ||
|
||
+ (Class)transformedValueClass | ||
{ | ||
return [NSArray class]; | ||
} | ||
|
||
+ (BOOL)allowsReverseTransformation; { return NO; } | ||
|
||
- (id)transformedValue:(id)value | ||
{ | ||
if(value == nil) return [NSArray array]; | ||
if([value isKindOfClass:[NSArray class]]) | ||
{ | ||
NSLog(@"Transforming %d", [value count]); | ||
return value; | ||
} | ||
return [NSArray arrayWithObject:value]; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// | ||
// MZMultiGrowlWrapper.h | ||
// MetaZ | ||
// | ||
// Created by Brian Olsen on 17/01/12. | ||
// Copyright 2012 Maven-Group. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
|
||
@interface MZMultiGrowlWrapper : NSObject { | ||
Class GrowlApplicationBridge; | ||
} | ||
|
||
+ (MZMultiGrowlWrapper *)shared; | ||
+ (void) notifyWithTitle:(NSString *)title | ||
description:(NSString *)description | ||
notificationName:(NSString *)notifName | ||
iconData:(NSData *)iconData | ||
priority:(signed int)priority | ||
isSticky:(BOOL)isSticky | ||
clickContext:(id)clickContext; | ||
+ (BOOL)isGrowlSupported; | ||
+ (void)setGrowlDelegate:(id)delegate; | ||
+ (BOOL)isGrowlRunning; | ||
+ (BOOL)isMistEnabled; | ||
|
||
- (id)init; | ||
- (BOOL)isGrowlSupported; | ||
- (BOOL)isGrowlRunning; | ||
- (BOOL)isMistEnabled; | ||
- (void)setGrowlDelegate:(id)delegate; | ||
- (void) notifyWithTitle:(NSString *)title | ||
description:(NSString *)description | ||
notificationName:(NSString *)notifName | ||
iconData:(NSData *)iconData | ||
priority:(signed int)priority | ||
isSticky:(BOOL)isSticky | ||
clickContext:(id)clickContext; | ||
|
||
@end |
Oops, something went wrong.