diff --git a/muntjac/public/index.html b/muntjac/public/index.html index 93a4104d..06616fcf 100644 --- a/muntjac/public/index.html +++ b/muntjac/public/index.html @@ -206,27 +206,22 @@
To create a Muntjac application first define a subclass of Application:
-
-class HelloWorld(Application):
-
- def init(self):
- main = Window('Hello window')
- self.setMainWindow(main)
-
- main.addComponent(Label('Hello World!'))
- Pass the new class to ApplicationServlet,
- wrap the resulting WSGI application in Paste session middleware and serve:
-
-wsgi_app = ApplicationServlet(HelloWorld, debug=True)
-
-wsgi_app = paste.session.SessionMiddleware(wsgi_app)
-
-httpd = make_server('localhost', 8080, wsgi_app)
-httpd.serve_forever()
- Navigate your browser to http://localhost:8080/. For further information please refer to
+ To create a Muntjac + application:
++ For further information please refer to the API documentation and the Vaadin documentation. +