Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Refinements to the prosupport.html page. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | mobile-friendly |
Files: | files | file ages | folders |
SHA1: |
cc74d20ccd1e925ba8bb9664daf85ad5 |
User & Date: | drh 2016-09-01 21:53:38.611 |
Context
2016-09-02
| ||
00:30 | Improve the cross-platform display of show/hide lists. (check-in: 84b8acdf6c user: drh tags: mobile-friendly) | |
2016-09-01
| ||
21:53 | Refinements to the prosupport.html page. (check-in: cc74d20ccd user: drh tags: mobile-friendly) | |
21:43 | Make the prosupport.html page local. (check-in: a65f9087ca user: drh tags: mobile-friendly) | |
Changes
Changes to pages/prosupport.in.
︙ | ︙ | |||
11 12 13 14 15 16 17 | global entrylist lappend entrylist $itemno $title $desc $cost $link1 $link2 } proc generate_support_html {} { global entrylist hd_putsnl "<div class='desktoponly'>" | | | | > | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | global entrylist lappend entrylist $itemno $title $desc $cost $link1 $link2 } proc generate_support_html {} { global entrylist hd_putsnl "<div class='desktoponly'>" hd_putsnl "<table border=0 cellspacing=20 width='100%'>" foreach {itemno title desc cost link1 link2} $entrylist { hd_puts "<tr><td valign=top><b>$itemno.</b></td>" hd_putsnl "<td valign=top><b>$title.</b> $desc</td>" hd_putsnl "<td valign=top width=165>$cost</td>" foreach {tag url} $link1 break hd_puts "<td valign=top align=left width=145>" hd_putsnl "<a class='button' href='$url'>$tag</a><br>" foreach {tag url} $link2 break hd_putsnl "<a class='button' href='$url'>$tag</a></td>" hd_putsnl "</tr>" } hd_putsnl "</table></div>" hd_putsnl "<div class='mobileonly'>" hd_putsnl "<ol>" foreach {itemno title desc cost link1 link2} $entrylist { |
︙ | ︙ |