class apptools.core.DownloadCSP
extends %CSP.Page
Parameters
|
Properties
|
Methods
|
Queries
|
Indices
|
ForeignKeys
|
Triggers
|
|
|
6
|
|
|
|
|
classmethod DeleteFileId(FileId, gn=..GetGN())
as %Status
Remove the ID for download
classmethod GetFileId(FileName, ByRef URL, ByRef id, cgivar="Id", gn=..GetGN())
as %Status
To ID to download the file
if ##class(apptools.core.DownloadCSP).GetFileId(fileName,.url) { set fn="DownLoad" }
cgivar="Id" to send a file during the day
cgivar="fileId" give the file only once
cgivar="fileName" to send a file via the full path (insecure)
classmethod GetGN()
as %String
To global link
classmethod GetfileName(FileId, gn=..GetGN(), origname="", ContentType="")
as %String
To obtain the full name of the file ID for download
classmethod OnPage(par="")
as %Status
Event handler for PAGE event: this is invoked in order to
generate the content of a csp page.
w ""
classmethod OnPreHTTP(par="")
as %Boolean
Event handler for PreHTTP event: this is invoked before
the HTTP headers for a CSP page have been sent. All changes to the
%CSP.Response class, such as adding cookies, HTTP headers,
setting the content type etc. must be made from within the OnPreHTTP() method.
Also changes to the state of the CSP application such as changing
%session.EndSession or %session.AppTimeout must be made within the OnPreHTTP() method.
It is prefered that changes to %session.Preserve are also made in the OnPreHTTP() method
as this is more efficient, although it is supported in any section of the page.
Return 0 to prevent OnPage from being called.