This file contains hidden or 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
public class Klient | |
{ | |
public string Vorname { | |
get; | |
set; | |
} | |
public string Nachname { | |
get; | |
set; |
This file contains hidden or 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
public class Klient | |
{ | |
public string Vorname { | |
get; | |
set; | |
} | |
public string Nachname { | |
get; | |
set; |
This file contains hidden or 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
public class Auto : INotifyPropertyChanged | |
{ | |
private int _name; | |
public int Name | |
{ | |
get { return _name; } | |
set | |
{ | |
if (value == _name) return; | |
_name = value; |
This file contains hidden or 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
Build/**/* | |
Frameworks/Cappuccino/**/* | |
Frameworks/AppKit/**/* | |
Frameworks/Foundation/**/* | |
Frameworks/Debug/**/* | |
Frameworks/Objective-J/**/* |
This file contains hidden or 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
.... | |
Undefined symbols: | |
"__Unwind_Resume", referenced from: | |
.... | |
ld: symbol(s) not found | |
collect2: ld returned 1 exit status |
This file contains hidden or 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
data/ | |
data/system.json | |
data/images => Blog Bilder | |
template/ | |
template/system-template-one.html | |
template/system-template-two.html | |
template/images => Designspezifische Bilder | |
template/css => CSS für Template | |
system.js | |
system.html |
This file contains hidden or 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
@import <AppKit/CPTokenField.j> | |
@implementation CPTokenField (NSCoding) | |
-(id)NS_initWithCoder:(CPCoder)aCoder | |
{ | |
self = [super NS_initWithCoder:aCoder]; | |
if(self) | |
{ |
This file contains hidden or 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
{ | |
"dive": { | |
"profile": { | |
"safetyStop": 10, | |
"key": "ag9ub3RlcGFkaS1zZXJ2ZXJyHwsSBURpdmVyGNqwAgwLEgtEaXZlUHJvZmlsZRiKJww", | |
"npclass": "profile", | |
"lastEdited": "2011-06-06 15:21:09 +0000", | |
"pressureProfile": [100, 1001], | |
"bottomTime": 10, | |
"depthProfile": [0, 100], |
This file contains hidden or 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
{ | |
"dive": { | |
"profile": { | |
"safetyStop": 10, | |
"key": "ag9ub3RlcGFkaS1zZXJ2ZXJyHwsSBURpdmVyGNqwAgwLEgtEaXZlUHJvZmlsZRiKJww", | |
"npclass": "profile", | |
"lastEdited": "2011-06-06 15:21:09 +0000", | |
"pressureProfile": [100, 1001], | |
"bottomTime": 10, | |
"depthProfile": [0, 100], |
This file contains hidden or 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
//dives (GET) = /list/dives (alt) | |
[{"dive":{"created": "2011-06-01 07:03:16 +0000", "number": 1, "lastEdited": "2011-06-01 07:03:17 +0000", "locationName": "Hamburg", "location": "ag9ub3RlcGFkaS1zZXJ2ZXJyEAsSCERpdmVTcG90GKrAAgw", "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyFwsSBURpdmVyGNqwAgwLEgREaXZlGAUM", "entry": "2010-05-27 18:27:00 +0000"}},{"dive":{"created": "2011-06-01 07:03:16 +0000", "number": 1, "lastEdited": "2011-06-01 07:03:17 +0000", "locationName": "Hamburg", "location": "ag9ub3RlcGFkaS1zZXJ2ZXJyEAsSCERpdmVTcG90GKrAAgw", "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyFwsSBURpdmVyGNqwAgwLEgREaXZlGAUM", "entry": "2010-05-27 18:27:00 +0000"}}] | |
//dives/key (GET) = /user/dive/key (alt) | |
{"dive" : {"profile": {"safetyStop": 30.0, "key": "ag9ub3RlcGFkaS1zZXJ2ZXJyHgsSBURpdmVyGNqwAgwLEgtEaXZlUHJvZmlsZRgDDA", "npclass": "profile", "lastEdited": "2011-06-01 07:03:17 +0000", "pressureProfile": [1450.3774, 2900.7548], "bottomTime": 20.0, "depthProfile": [0.0, 10.0], "startPressure": 1450.3774, "endPressure": 2900.7548, "timeProfile |
NewerOlder