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 @@
Sampler Widget Set
Simple Application
-

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:

+
    +
  1. Follow these instructions
  2. + +
  3. Navigate your + browser to http://localhost:8080/. +
  4. +
+

+ For further information please refer to the API documentation and the Vaadin documentation. +