Move videoob-webserver to contrib

Since no one seems to use it.
I fixed the biggest issues so it is now usable again!
This commit is contained in:
Laurent Bachelier 2012-02-10 14:23:51 +01:00
commit 346704bae5
6 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,17 @@
## -*- coding: utf-8 -*-
<%def name="title()" filter="trim">
Videoob Web
</%def>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>${self.title()}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
${next.css()}
</head>
<body>
${next.body()}
</body>
</html>