mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
* GSWeb.framework/WOKeyValueUnarchiver.m/h add WOKeyValueUnarchiver * GSWeb.framework/GSWComponentDefinition.m add check, reformat * GSWeb.framework/GSWBundle.m add WOKeyValueUnarchiver initializeObject: fromArchive: use WOKeyValueUnarchiver to create objects * GSWeb.framework/GSWComponent.m validateTakeValue:forKeyPath: fix path problem on multiple "." like foo.bar.test add unarchiver: objectForReference: * Examples/WebBookStore1/Main.wo/Main.woo fix class of authorDG WODisplayGroup git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30647 72102866-910b-0410-8b05-ffd578937521
21 lines
No EOL
628 B
Text
21 lines
No EOL
628 B
Text
{
|
|
variables = {
|
|
authorDG = {
|
|
class = WODisplayGroup;
|
|
dataSource = {
|
|
class = EODatabaseDataSource;
|
|
editingContext = session.defaultEditingContext;
|
|
fetchSpecification = {
|
|
class = EOFetchSpecification;
|
|
entityName = Author;
|
|
fetchLimit = 0;
|
|
isDeep = YES;
|
|
};
|
|
};
|
|
formatForLikeQualifier = "%@*";
|
|
localKeys = ();
|
|
numberOfObjectsPerBatch = 0;
|
|
selectsFirstObjectAfterFetch = YES;
|
|
};
|
|
};
|
|
} |