mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 12:11:18 +00:00
40 lines
502 B
Text
40 lines
502 B
Text
|
|
||
|
AFileUpload: WOFileUpload
|
||
|
{
|
||
|
filePath=aFilePath;
|
||
|
data=aFileData;
|
||
|
};
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
|