mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 04:01:16 +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
40 lines
524 B
Text
40 lines
524 B
Text
|
|
AFileUpload: WOFileUpload
|
|
{
|
|
filePath=aFilePath;
|
|
data=aFileData;
|
|
multiple="multiple";
|
|
};
|
|
|
|
FileName: WOString
|
|
{
|
|
value = aFilePath;
|
|
};
|
|
|
|
FileSize: WOString
|
|
{
|
|
value = aFileData.length.description;
|
|
};
|
|
|
|
FileContent: WOString
|
|
{
|
|
value = aFileData.description;
|
|
};
|
|
|
|
MainPageLink: WOHyperlink
|
|
{
|
|
pageName = "Main";
|
|
string = "Main Page";
|
|
};
|
|
|
|
Form: WOForm
|
|
{
|
|
enctype = "multipart/form-data";
|
|
};
|
|
|
|
SubmitButton: WOSubmitButton
|
|
{
|
|
action = submitAction;
|
|
value = "Submit";
|
|
};
|
|
|