mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-24 20:21:24 +00:00
Ported to WO names. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30689 72102866-910b-0410-8b05-ffd578937521
39 lines
502 B
Text
39 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";
|
|
};
|
|
|