/* * This file is a part of Winix * and is not publicly distributed * * Copyright (c) 2008-2010, Tomasz Sowa * All rights reserved. * */ #include "node.h" namespace Fun { Node::Node() { fun.url = L"node"; } void Node::MakeGet() { if( request->param_tab.empty() ) { //request->status = Error //!!zglosic 404 return; } long id = Atol(request->param_tab[0].name); system->RedirectTo(id); } } // namespace