libs-gsweb/Examples/WebBookStore1/Main.wo/Main.wod
dwetzel 507ab39c69 * GSWDatabase/WODisplayGroup.m
compiles without warning
cleanup, removed logs,
added exceptions
* GSWDatabase/WODisplayGroup.h
cleanup includes
* Examples/WebBookStore1/Main.m
removed create and drop tables.
* Examples/WebBookStore1/WebBookStore1_main.m
adapt to WO naming
* Examples/WebBookStore1/Main.gswc -> Main.wo
* Examples/WebBookStore1/GNUmakefile
updated
* Examples/WebBookStore1/Application.h
* Examples/WebBookStore1/DirectAction.h
* Examples/WebBookStore1/DirectAction.m
* Examples/WebBookStore1/Session.h
* Examples/WebBookStore1/Main.h
WO naming
* Examples/WebBookStore1/README
new file
* Examples/WebBookStore1/BookStore.eomodeld/index.eomodeld
added more sample data to connection dictionary
* GNUmakefile
add GSWDatabase to main project makefile



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30643 72102866-910b-0410-8b05-ffd578937521
2010-06-10 03:08:52 +00:00

79 lines
1.2 KiB
Text

QueryForm: WOForm {};
firstNameQueryField: WOTextField
{
value = authorDG.queryMatch.firstName;
};
lastNameQueryField: WOTextField
{
value = authorDG.queryMatch.lastName;
};
ExecuteQuery: WOSubmitButton
{
action = authorDG.qualifyDataSource;
value = "Search";
};
SelectionList: WORepetition
{
item = author;
list = authorDG.displayedObjects;
};
SelectObjectLink: WOHyperlink
{
action = selectObject;
};
ObjectIdentifier: WOString
{
value = author.lastName;
};
ModificationForm: WOForm {
multipleSubmit = YES;
};
lastNameField: WOTextField
{
value = authorDG.selectedObject.lastName;
};
firstNameField: WOTextField
{
value = authorDG.selectedObject.firstName;
};
InsertButton: WOSubmitButton
{
action = authorDG.insert;
/* filename = "Insert.png"; */
value = "Insert";
};
UpdateButton: WOSubmitButton
{
action = saveChanges;
/* filename = "Save.png"; */
value = "Save";
};
DeleteButton: WOSubmitButton
{
action = authorDG.delete;
/* filename = "Delete.png";*/
value = "Delete";
};
/*
CreateTablesButton: WOImageButton
{
action = createTables;
filename = "CreateTables.png";
};
DropTablesButton: WOImageButton
{
action = dropTables;
filename = "DropTables.png";
};
*/