def initialize(parent=nil)
super(parent)
@layout = Qt::GridLayout.new(self)
@t = Qt::TextBrowser.new
@layout.addWidget(@t, 0, 0, 1, 1)
@layout.margin = @layout.spacing = 0
@html_default='<center><br/><img src="ui/qt/images/dradis.jpg"><h1>dradis 1.0</h1>etdsoft \'07</center>'
@html_bar='<div><div>actions: <a href="add/#type#/#uid#">add note</a></div><div>show:#catlist# (<a href="filter/all">all</a>)</div></div>'
@html_invalid='<center><br/><img src="ui/qt/images/dradis.jpg"><p>please, wait until the new revision is downloaded from the server...</p></center>'
@t.html= @last_html = @html_default
connect @t, SIGNAL('anchorClicked(QUrl)'), self, SLOT('anchor_clicked(QUrl)')
end