-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMPWTemplater.m
63 lines (46 loc) · 1.07 KB
/
MPWTemplater.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//
// MPWTemplater.m
// WebSiteObjC
//
// Created by Marcel Weiher on 11/21/11.
// Copyright (c) 2012 Marcel Weiher. All rights reserved.
//
#import "MPWTemplater.h"
#import <ObjectiveSmalltalk/ObjectiveSmalltalk.h>
#import <MPWFoundation/MPWFoundation.h>
#import <ObjectiveHTTPD/WAHtmlRenderer.h>
#import "MPWHtmlPage.h"
#import "MPWPlainHtmlContent.h"
@implementation MPWTemplater
idAccessor( template, setTemplate )
-(void)setSourceScheme:(id)newSource
{
[self setSource:newSource];
}
-(id)at:(id)aReference
{
id rawValue=[self.source at:aReference];
// NSLog(@"rawValue class: %@",[rawValue class]);
if ( !rawValue || [rawValue isKindOfClass:[MPWPlainHtmlContent class]]) {
MPWHtmlPage *page = [self template];
[page setContent:rawValue];
[page setPath:aReference];
return page;
} else {
return rawValue;
}
}
-(void)dealloc
{
[template release];
[super dealloc];
}
+testSelectors
{
return @[
];
}
@end
@implementation NSData(value)
-value { return [self propertyList]; }
@end