Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix handling of
|
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dcf4e23f9bec3d60b03d8cf4550a63db |
User & Date: | dan 2016-09-12 20:59:03.934 |
Context
2016-09-12
| ||
21:01 | Fix a typo in vtab.in. (check-in: 4df3244e10 user: dan tags: trunk) | |
20:59 |
Fix handling of
| |
20:54 | Add links to the Android Bindings repository. (check-in: 7bf5343c19 user: drh tags: trunk) | |
Changes
Changes to search/hdom.tcl.
︙ | ︙ | |||
108 109 110 111 112 113 114 115 116 117 118 119 120 121 | set aContentChecker(a) HtmlAnchorContent set aContentChecker(ul) HtmlUlContent set aContentChecker(ol) HtmlUlContent set aContentChecker(menu) HtmlUlContent set aContentChecker(dir) HtmlUlContent set aContentChecker(form) HtmlFormContent set aContentChecker(option) HtmlPcdataContent # Add content checkers for all self-closing tags. foreach x { area base br hr iframe img input isindex link meta param script style embed nextid wbr bgsound } { set aContentChecker($x) HtmlEmptyContent } | > > > > | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | set aContentChecker(a) HtmlAnchorContent set aContentChecker(ul) HtmlUlContent set aContentChecker(ol) HtmlUlContent set aContentChecker(menu) HtmlUlContent set aContentChecker(dir) HtmlUlContent set aContentChecker(form) HtmlFormContent set aContentChecker(option) HtmlPcdataContent set aContentChecker(li) HtmlLiContent set aContentChecker(dt) HtmlLiContent set aContentChecker(dd) HtmlLiContent set aContentChecker(dl) HtmlDlContent # Add content checkers for all self-closing tags. foreach x { area base br hr iframe img input isindex link meta param script style embed nextid wbr bgsound } { set aContentChecker($x) HtmlEmptyContent } |
︙ | ︙ |