mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 03:31:16 +00:00
* Testing/DynamicElements/FileUpload1Page.gswc/FileUpload1Page.html * Testing/DynamicElements/FileUpload1Page.h * Testing/DynamicElements/FileUpload1Page.m: New tests. * Testing/DynamicElements/Resources/Info-DynamicElements.plist * Testing/DynamicElements/GNUmakefile: Add FileUpload tests. Do not install tests in GNUSTEP_SYSTEM_ROOT. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@23761 72102866-910b-0410-8b05-ffd578937521
23 lines
281 B
Text
23 lines
281 B
Text
#include "Base"
|
|
|
|
AFileUpload: GSWFileUpload
|
|
{
|
|
filePath=aFilePath;
|
|
data=aFileData;
|
|
};
|
|
|
|
FileName: GSWString
|
|
{
|
|
value = aFilePath;
|
|
};
|
|
|
|
FileSize: GSWString
|
|
{
|
|
value = aFileData.length.description;
|
|
};
|
|
|
|
FileContent: GSWString
|
|
{
|
|
value = aFileData.description;
|
|
};
|
|
|