1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/*
* Copyright (C) 2009 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#include <Wt/WServer>
#include <Wt/Dbo/SqlConnectionPool>
#include "BlogRSSFeed.h"
#include "model/BlogSession.h"
#include "model/Token.h"
#include "model/User.h"
#include "WtHome.h"
#include "JWtHome.h"
int main(int argc, char **argv)
{
try {
WServer server(argv[0]);
server.setServerConfiguration(argc, argv, WTHTTP_CONFIGURATION);
BlogSession::configureAuth();
Wt::Dbo::SqlConnectionPool *blogDb
= BlogSession::createConnectionPool(server.appRoot() + "blog.db");
BlogRSSFeed rssFeed(*blogDb, "Wt and JWt blog",
"http://www.webtoolkit.eu/wt/blog",
"We care about our webtoolkits.");
server.addResource(&rssFeed, "/wt/blog/feed/");
server.addEntryPoint(Application,
boost::bind(&createJWtHomeApplication, _1, blogDb),
"/jwt", "/css/jwt/favicon.ico");
server.addEntryPoint(Application,
boost::bind(&createWtHomeApplication, _1, blogDb),
"", "/css/wt/favicon.ico");
if (server.start()) {
WServer::waitForShutdown();
server.stop();
}
delete blogDb;
} catch (Wt::WServer::Exception& e) {
std::cerr << e.what() << std::endl;
} catch (std::exception &e) {
std::cerr << "exception: " << e.what() << std::endl;
}
}
|