mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 19:21:23 +00:00
* GSWeb/GNUmakefile: use -Werror * GSWeb/GSWFileUpload.* added multiple file support * Testing/DynamicElements/FileUpload1Page.wo added multiple file support * GSWeb/* fixed warnings on Mountain Lion git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@36200 72102866-910b-0410-8b05-ffd578937521
32 lines
526 B
Text
32 lines
526 B
Text
|
|
ARadioButtonList: WORadioButtonList
|
|
{
|
|
list = application.bundleInfo.RadioButtonList.list;
|
|
item = anItem;
|
|
displayString = anItem.label;
|
|
selection = selectedItem;
|
|
name = "RADIONAME";
|
|
};
|
|
|
|
SelectedItem: WOString
|
|
{
|
|
value = selectedItem;
|
|
};
|
|
|
|
MainPageLink: WOHyperlink
|
|
{
|
|
pageName = "Main";
|
|
string = "Main Page";
|
|
};
|
|
|
|
Form: WOForm
|
|
{
|
|
enctype = "multipart/form-data";
|
|
};
|
|
|
|
SubmitButton: WOSubmitButton
|
|
{
|
|
action = submitAction;
|
|
value = "Submit";
|
|
};
|
|
|