libs-gsweb/Testing/DynamicElements/DynamicElements.m
dwetzel 083d044e10 * GSWeb/GSWResourceManager.m
reformat statics, add TheStringsTableLock
add _cachedStringsTable()
add _cachedStringForKey()
rewrote -stringForKey:inTableNamed:withDefaultValue:inFramework:languages:
use NONESTR, not @"NONE"
* Testing/DynamicElements/ImagePage.h
* Testing/DynamicElements/Resources/Chinese.lproj/Localizable.strings
* Testing/DynamicElements/Resources/Russian.lproj/Localizable.strings
* Testing/DynamicElements/Resources/French.lproj/Localizable.strings
* Testing/DynamicElements/Resources/English.lproj/Localizable.strings
* Testing/DynamicElements/Resources/German.lproj/Localizable.strings
* Testing/DynamicElements/ImagePage.m
* Testing/DynamicElements/ImagePage.wo
add test for GSWResourceManager's -stringForKey:inTableNamed:withDefaultValue:inFramework:languages:
* Testing/DynamicElements/DynamicElements.m
set UTF8 encoding
* Testing/DynamicElements/GNUmakefile
add new files



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30841 72102866-910b-0410-8b05-ffd578937521
2010-06-24 02:10:11 +00:00

31 lines
533 B
Objective-C

#include <WebObjects/WebObjects.h>
#include "DynamicElements.h"
/* Those are just empty to make the demo work.
* In an real application, you might want to add real code to these classes
* and split them into separate files.
*/
@implementation DynamicElements
- (id) init
{
if ([super init]) {
[WOMessage setDefaultEncoding: NSUTF8StringEncoding];
}
return self;
}
@end
@interface Session: WOSession
@end
@implementation Session
@end
@interface DirectAction: WODirectAction
@end
@implementation DirectAction
@end