Unauthorized page
[cascardo/ipsilon.git] / ipsilon / root.py
index a352641..88a15c6 100755 (executable)
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-from util import page
-import cherrypy
+from ipsilon.util.page import Page
+from ipsilon.login.common import Login
+from ipsilon.login.common import Logout
+from ipsilon.admin.common import Admin
+from ipsilon.unauthorized import Unauthorized
 
-class Root(page.Page):
+sites = dict()
+
+
+class Root(Page):
+
+    def __init__(self, site, template_env):
+        if not site in sites:
+            sites[site] = dict()
+        if template_env:
+            sites[site]['template_env'] = template_env
+        super(Root, self).__init__(sites[site])
+
+        # set up error pages
+        self.unauthorized = Unauthorized(self._site)
+
+        # now set up the default login plugins
+        self.login = Login(self._site)
+        self.logout = Logout(self._site)
+
+        # after all plugins are setup we can instantiate the admin pages
+        self.admin = Admin(self._site)
 
     def root(self):
-        return self._template('index.html', title='Root')
+        return self._template('index.html', title='Ipsilon')