mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-29 18:20:59 +00:00
* Examples/WebBookStore1/Application.h, * Examples/WebBookStore1/Application.m, * Examples/WebBookStore1/DirectAction.h, * Examples/WebBookStore1/DirectAction.m, * Examples/WebBookStore1/GNUmakefile, * Examples/WebBookStore1/Main.h, * Examples/WebBookStore1/Main.m, * Examples/WebBookStore1/Session.h, * Examples/WebBookStore1/Session.m, * Examples/WebBookStore1/WebBookStore1_main.m, * Examples/WebBookStore1/BookStore.eomodeld/Author.plist, * Examples/WebBookStore1/BookStore.eomodeld/Book.plist, * Examples/WebBookStore1/BookStore.eomodeld/Customer.plist, * Examples/WebBookStore1/BookStore.eomodeld/Order.plist, * Examples/WebBookStore1/BookStore.eomodeld/OrderPos.plist, * Examples/WebBookStore1/BookStore.eomodeld/index.eomodeld, * Examples/WebBookStore1/Main.gswc/Main.gswd, * Examples/WebBookStore1/Main.gswc/Main.gswi, * Examples/WebBookStore1/Main.gswc/Main.html, * Examples/WebBookStore1/WebServerResources/Insert.png, * Examples/WebBookStore1/WebServerResources/Save.png, * Examples/WebBookStore1/WebServerResources/Delete.png, * Examples/WebBookStore1/WebServerResources/CreateTables.png, * Examples/WebBookStore1/WebServerResources/DropTables.png: New files. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@20316 72102866-910b-0410-8b05-ffd578937521
73 lines
1.1 KiB
Text
73 lines
1.1 KiB
Text
QueryForm: GSWForm {};
|
|
|
|
firstNameQueryField: GSWTextField
|
|
{
|
|
value = authorDG.queryMatch.firstName;
|
|
};
|
|
|
|
lastNameQueryField: GSWTextField
|
|
{
|
|
value = authorDG.queryMatch.lastName;
|
|
};
|
|
|
|
ExecuteQuery: GSWSubmitButton
|
|
{
|
|
action = authorDG.qualifyDataSource;
|
|
value = "Search";
|
|
};
|
|
|
|
SelectionList: GSWRepetition
|
|
{
|
|
item = author;
|
|
list = authorDG.displayedObjects;
|
|
};
|
|
|
|
SelectObjectLink: GSWHyperlink
|
|
{
|
|
action = selectObject;
|
|
};
|
|
|
|
ObjectIdentifier: GSWString
|
|
{
|
|
value = author.lastName;
|
|
};
|
|
|
|
ModificationForm: GSWForm {};
|
|
|
|
lastNameField: GSWTextField
|
|
{
|
|
value = authorDG.selectedObject.lastName;
|
|
};
|
|
|
|
firstNameField: GSWTextField
|
|
{
|
|
value = authorDG.selectedObject.firstName;
|
|
};
|
|
|
|
InsertButton: GSWImageButton
|
|
{
|
|
action = authorDG.insert;
|
|
filename = "Insert.png";
|
|
};
|
|
UpdateButton: GSWImageButton
|
|
{
|
|
action = saveChanges;
|
|
filename = "Save.png";
|
|
};
|
|
DeleteButton: GSWImageButton
|
|
{
|
|
action = authorDG.delete;
|
|
filename = "Delete.png";
|
|
};
|
|
|
|
CreateTablesButton: GSWImageButton
|
|
{
|
|
action = createTables;
|
|
filename = "CreateTables.png";
|
|
};
|
|
|
|
DropTablesButton: GSWImageButton
|
|
{
|
|
action = dropTables;
|
|
filename = "DropTables.png";
|
|
};
|