diff options
author | Pixel <Pixel> | 2001-11-15 14:52:43 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-11-15 14:52:43 +0000 |
commit | 3f720784d55707024fff675a5238fde0168d1a40 (patch) | |
tree | 84a5b9843ede69aaf76cd9b791686b2a3ea7c3d7 /lib/Confirm.cc | |
parent | 8694409f2a5531e9f3263e8a42248a3ca91ac14f (diff) |
More work into TaskMan...
Diffstat (limited to 'lib/Confirm.cc')
-rw-r--r-- | lib/Confirm.cc | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/lib/Confirm.cc b/lib/Confirm.cc index 0fbb902..7d72ee0 100644 --- a/lib/Confirm.cc +++ b/lib/Confirm.cc @@ -1,26 +1,31 @@ #include "HttpServ.h" #include "Confirm.h" +#include "Buffer.h" +#include "CopyJob.h" #include "config.h" Confirm::Confirm(const String & t, const String & m, const String & U, Action * y, Action * n) : Action(U), tit(t), msg(m), NYes(y), NNo(n) { } -void Confirm::Do(Variables * v, Handle * h) { - SendHead(h); - (*h) << msg << "<CENTER><TABLE BORDER=0><tr><td>" << endnl << +Task * Confirm::Do(Variables * v, Handle * h) { + Handle * b = new Buffer; + Task * t = new CopyJob(b, h, -1, true); + SendHead(b); + (*b) << msg << "<CENTER><TABLE BORDER=0><tr><td>" << endnl << "<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NYes ? NYes->GetURL() : "start") << "\">" << endnl << "<INPUT TYPE=\"HIDDEN\" VALUE=\"yes\" NAME=\"confirm\">" << endnl << "<INPUT TYPE=\"SUBMIT\" VALUE=\" Oui \">" << endnl; - v->Dump(h); - (*h) << "</FORM></td><td>" << endnl << + v->Dump(b); + (*b) << "</FORM></td><td>" << endnl << "<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NNo ? NNo->GetURL() : "start") << "\">" << endnl << "<INPUT TYPE=\"HIDDEN\" VALUE=\"no\" NAME=\"confirm\">" << endnl << "<INPUT TYPE=\"SUBMIT\" VALUE=\" Non \">" << endnl; - v->Dump(h); - (*h) << "</FORM></td></tr></TABLE></CENTER>" << endnl; - SendFoot(h); - + v->Dump(b); + (*b) << "</FORM></td></tr></TABLE></CENTER>" << endnl; + SendFoot(b); Accessed(); + + return t; } String Confirm::GetTitle(void) { |