Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update the comment on the output_list proc. Use the output_list proc from capi3ref.in to process session.in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | mobile-friendly |
Files: | files | file ages | folders |
SHA1: |
6f74e2171b8f1870aa532b42989bf8af |
User & Date: | drh 2016-09-01 00:54:41.268 |
Context
2016-09-01
| ||
01:30 | Modify the output of the "search" script so that it works better on mobile screens. (check-in: a4e77179b1 user: drh tags: mobile-friendly) | |
00:54 | Update the comment on the output_list proc. Use the output_list proc from capi3ref.in to process session.in. (check-in: 6f74e2171b user: drh tags: mobile-friendly) | |
00:48 | Reformat the core and aggregate function descriptions in a way that works better on mobile. Use the "output_list" proc for the lists of pragma and aggregate and core functions. (check-in: fc4a66aa03 user: drh tags: mobile-friendly) | |
Changes
Changes to pages/capi3ref.in.
︙ | ︙ | |||
253 254 255 256 257 258 259 | } hd_putsnl "\];" } # Output HTML/JS that displays the list $lx in multiple columns # under the assumption that each column is $w pixels wide. # | | > > > | > | > > > > > | 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | } hd_putsnl "\];" } # Output HTML/JS that displays the list $lx in multiple columns # under the assumption that each column is $w pixels wide. # # $lx is a list of triples. Each triple is {KEYWORD LABEL S}. The # S determines a suffix added to each list element: # # 0: Add nothing (the default and common case) # 1: Add the "(exp)" suffix # 2: Strike through the text and do not hyperlink # 3: Strike through the text and add ¹ # 4: Add ² # 5: Add ³ # # This routine is used to generate lists in other modules as well: # lang.in, pragma.in, session.in. # proc output_list {title w lx} { global listcount hd if {![info exists listcount]} { set listcount 1 } else { incr listcount |
︙ | ︙ |
Changes to pages/session.in.
︙ | ︙ | |||
188 189 190 191 192 193 194 | proc convert_keyword_to_filename {oldname} { set oldname [string tolower $oldname] regsub {^sqlite_} $oldname {c_} oldname regsub {^sqlite3_} $oldname {} name return $name.html } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 188 189 190 191 192 193 194 195 196 197 198 199 200 201 | proc convert_keyword_to_filename {oldname} { set oldname [string tolower $oldname] regsub {^sqlite_} $oldname {c_} oldname regsub {^sqlite3_} $oldname {} name return $name.html } hd_open_aux session/intro.html hd_header Introduction hd_enable_main 0 hd_keywords *session-capi {Session Extension C-language Interface} </tcl> |
︙ | ︙ | |||
315 316 317 318 319 320 321 | hd_header {List Of SQLite Objects} hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Objects:</h2> <tcl> | | | 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | hd_header {List Of SQLite Objects} hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Objects:</h2> <tcl> output_list {} 300 [lsort $objlist] hd_enable_main 0 hd_putsnl {<p>Other lists: <a href="constlist.html">Constants</a> and <a href="funclist.html">Functions</a>.} hd_close_aux hd_enable_main 1 hd_putsnl {<hr>} |
︙ | ︙ | |||
348 349 350 351 352 353 354 | hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Constants:</h2> <tcl> set clist [lsort -index 1 $clist] | | | 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Constants:</h2> <tcl> set clist [lsort -index 1 $clist] output_list {} 400 $clist hd_enable_main 0 hd_putsnl {<p>Other lists: <a href="objlist.html">Objects</a> and <a href="funclist.html">Functions</a>.</p>} hd_enable_main 1 hd_close_aux hd_putsnl {<hr>} |
︙ | ︙ | |||
383 384 385 386 387 388 389 | hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Functions:</h2> <tcl> set funclist [lsort -index 1 $funclist] | | | 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | hd_enable_main 0 hd_putsnl {<a href="intro.html"><h2>Session Module C Interface</h2></a>} hd_enable_main 1 </tcl> <h2>Functions:</h2> <tcl> set funclist [lsort -index 1 $funclist] output_list {} 300 $funclist hd_enable_main 0 hd_putsnl {<p>Other lists: <a href="constlist.html">Constants</a> and <a href="objlist.html">Objects</a>.</p>} hd_enable_main 1 hd_close_aux hd_putsnl {<hr>} |
︙ | ︙ |