Sven Van Caekenberghe-2 wrote
And Zn has a very simple one too (since recently):
generateHelp "Generate an HTML page with links to all pages I support"
^ ZnHtmlOutputStream streamContents: [ :html | html page: (self class name, ' Help') do: [ html tag: #h3 with: 'Available Pages'. html tag: #ul do: [ prefixMap keys sorted do: [ :each | html tag: #li do: [ html tag: #a attributes: { #href. each } with: each ] ] ] ] ]
But Seaside's is better, though much larger.
Cool. This should come in handy at many occasions. I will use it right away. Thank you. -- View this message in context: http://forum.world.st/Is-Seaside-s-Canvas-Brush-metaphor-for-creating-HTML-a... Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.