Welcome.py :  » Web-Frameworks » Webware » Webware-1.0.2 » WebKit » Examples » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Webware 
Webware » Webware 1.0.2 » WebKit » Examples » Welcome.py
from ExamplePage import ExamplePage


class Welcome(ExamplePage):

  def writeContent(self):
    wr = self.writeln
    wr('<h2>Welcome to WebKit %s!</h2>' % self.application().webKitVersionString())
    path = self.request().servletPath()
    wr('''\
    <p> Along the side of this page you will see various links that will take you to:</p>
    <ul>
      <li>The different WebKit examples.</li>
      <li>The source code of the current example.</li>
      <li>Whatever contexts have been configured.
        Each context represents a distinct set of web pages,
        usually given a descriptive name.</li>
      <li>External sites, such as the Webware home page.</li>
    </ul>
    <p>The <a href="%(path)s/Admin/">Admin</a> context is particularly interesting because
    it takes you to the administrative pages for the WebKit application server where
    you can review logs, configuration, plug-ins, etc.</p>
    <p>The <a href="%(path)s/Docs/">Docs</a> contexts allow you to browse
    the documentation of <a href="%(path)s/WebKit/Docs/">WebKit</a>
    and <a href="%(path)s/Docs/ComponentIndex.html">all other components</a>
    of Webware for Python.</p>''' % locals())
    from os.path import join
    wr('<p>The location of the documentation on the server:</p>')
    wr('<ul>')
    wr('<li>WebKit: <tt>%s</tt></li>'
      % join(self.application().webKitPath(), 'Docs'))
    wr('<li>Webware for Python: <tt>%s</tt></li>'
      % join(self.application().webwarePath(), 'Docs'))
    wr('</ul>')
    req = self.request()
    extraURLPath = req.extraURLPath()
    if extraURLPath and extraURLPath != '/':
      wr('''
      <p><b>Note:</b> extraURLPath information was found on the URL,
      and a servlet was not found to process it.
      Processing has been delegated to this servlet.</p>''')
      wr('<ul>')
      wr('<li>serverSidePath: <tt>%s</tt></li>'
        % req.serverSidePath())
      wr('<li> extraURLPath: <tt>%s</tt></li>' % extraURLPath)
      wr('</ul>')
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.