Hi all,
just to let everyone know that I have done a few (minor) updates to
the website: Typos in content pages of pyjs_site fixed, file
uiHierarchy.html restored (was gone in the repo), title update in
Pyjamas Book application (moved copyright notice down left at the
bottom of the side bar).
I thought this didn't deserve a bug report, hence this e-mail.
Actually, there is something funny in the code that I added to
doc/book/Bookreader.py:
authors = [
("2008, 2009", "Kenneth Casson Leighton", "[email protected]")
]
for years, name, email in authors:
authors_html = \
'© %s <a href="mailto:%s">%s</a><br />' %\
(years, email, name)
authors_panel = HTML()
authors_panel.setStyleName("ks-Authors")
authors_panel.setHTML(authors_html[:-6])
-> Note the smiley with the tongue on the last line... :)
Ah, and the Pyjamas Book's title now reads: "Pyjamas Book - The Ultimate Manual"
Cheers, Peter