#ifdef HAVE_CONFIG_H #include "config.h" #endif #include "Menu.h" #include "HttpServ.h" #include "CopyJob.h" #include "Buffer.h" Menu::Menu(const String & t, const String & U, String * ts, Action ** as, int nb) : Action(U), tit(t), lt(ts), la(as), nba(nb) { } Task * Menu::Do(Variables * v, Variables *, Handle * h) { int i, f = 0; Handle * b = new Buffer(); Task * t = new CopyJob(b, h, -1, true); SendHead(b); (*b) << "
" << endnl; for (i = 0; i < nba; i++) { (*b) << "" << endnl; f = f ? 0 : 1; } (*b) << "
" << (i + 1) << ""; (*b) << "GetURL() : "start") << "\">"; (*b) << lt[i] << "
" << endnl; SendFoot(b); Accessed(); return t; } String Menu::GetTitle(void) { return tit; }