Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not include sessions APIs in the main API documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
db417395747e0b8526b5a5d02fb4b5c0 |
User & Date: | drh 2013-04-10 15:02:07.129 |
Context
2013-04-14
| ||
20:55 | Fix a typo in the ON CONFLICT clause documentation. (check-in: 0042260937 user: drh tags: trunk) | |
2013-04-10
| ||
15:02 | Do not include sessions APIs in the main API documentation. (check-in: db41739574 user: drh tags: trunk) | |
2013-04-08
| ||
02:12 | Initial documentation updates for mmap_limit. (check-in: 4dd308afff user: drh tags: trunk) | |
Changes
Changes to pages/capi3ref.in.
︙ | ︙ | |||
55 56 57 58 59 60 61 62 63 64 65 66 67 68 | } # Read sqlite3.c line by line and extract interface definition # information (found in what was originally sqlite3.h). # while {![eof $in]} { set line [gets $in] incr lineno if {$phase==0} { # Looking for the CAPI3REF: keyword. This marks the beginning of # an interface definition. When the CAPI3REF keywords is seen, # record the interface title and then switch to "phase 1". # if {[regexp {^\*\* CAPI3REF: +(.*)} $line all tx]} { | > > > > > > > | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | } # Read sqlite3.c line by line and extract interface definition # information (found in what was originally sqlite3.h). # while {![eof $in]} { set line [gets $in] if {[regexp {^/\*+ Begin file sqlite3session} $line]} { while {![regexp {^/\*+ End of sqlite3session } $line] && ![eof $in]} { set line [gets $in] incr lineno } continue } incr lineno if {$phase==0} { # Looking for the CAPI3REF: keyword. This marks the beginning of # an interface definition. When the CAPI3REF keywords is seen, # record the interface title and then switch to "phase 1". # if {[regexp {^\*\* CAPI3REF: +(.*)} $line all tx]} { |
︙ | ︙ |