Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Move anchors of core function definitions from the description to the function name. This gives better search results. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ae2755711937e2948b83d8e10450256b |
User & Date: | drh 2010-01-08 16:08:05.000 |
Context
2010-01-08
| ||
16:29 | Make sure search works even if the q= parameter is omitted. Suppress the s=Go parameter on queries. (check-in: 817a320509 user: drh tags: trunk) | |
16:08 | Move anchors of core function definitions from the description to the function name. This gives better search results. (check-in: ae27557119 user: drh tags: trunk) | |
15:38 | Add a tag missing from documentation headers built when search is not enabled. (check-in: 42ce6e37be user: dan tags: trunk) | |
Changes
Changes to pages/lang.in.
︙ | ︙ | |||
1595 1596 1597 1598 1599 1600 1601 | Section {Core Functions} corefunc {*corefunc} proc funcdef {syntax keywords desc} { hd_puts {<tr>} regsub -all {\s+} [string trim $syntax] {<br></br>} syntax regsub -all {\(([^*)]+)\)} $syntax {(<i>\1</i>)} syntax regsub -all {,} $syntax {</i>,<i>} syntax regsub -all {<i>\.\.\.</i>} $syntax {...} syntax | | < > > | 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 | Section {Core Functions} corefunc {*corefunc} proc funcdef {syntax keywords desc} { hd_puts {<tr>} regsub -all {\s+} [string trim $syntax] {<br></br>} syntax regsub -all {\(([^*)]+)\)} $syntax {(<i>\1</i>)} syntax regsub -all {,} $syntax {</i>,<i>} syntax regsub -all {<i>\.\.\.</i>} $syntax {...} syntax hd_puts "<td valign=\"top\" align=\"right\" width=\"120\">" if {[llength $keywords]==0} { regexp {[a-z_]+} $syntax name hd_fragment $name *$name "${name}() SQL function" } else { set fragname [lindex $keywords 0] regsub -all {[^a-z]} $fragname {} fragname hd_fragment $fragname eval hd_keywords [string map {\n { }} $keywords] } hd_puts "$syntax</td>" hd_puts {<td valign="top">} hd_resolve $desc hd_puts {</td></tr>} } </tcl> <p>The core functions shown below are available by default. [datefunc | Date & Time functions] and |
︙ | ︙ |