Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In the 'vtab.tcl' doc tool, work around some minor markup issues in the upstream docs. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cd424e7595178cc86ab6e827e1a09e7f |
User & Date: | mistachkin 2016-09-13 22:25:11.424 |
Context
2016-09-14
| ||
04:21 | More updates to the design-time installer tests. All build files necessary to run the test suite should be located in the same directory, which may be the output directory for the mixed-mode assembly. check-in: 16453a26ef user: mistachkin tags: trunk | |
04:04 | More updates to the design-time installer tests. Actually, this is not the correct fix for this issue. Closed-Leaf check-in: 06bc72ae98 user: mistachkin tags: mistake | |
2016-09-13
| ||
22:25 | In the 'vtab.tcl' doc tool, work around some minor markup issues in the upstream docs. check-in: cd424e7595 user: mistachkin tags: trunk | |
21:56 | Fix typo in the master release archive manifest. check-in: 4acb122a6b user: mistachkin tags: trunk | |
Changes
Changes to Doc/vtab.tcl.
︙ | ︙ | |||
63 64 65 66 67 68 69 | if {[string length [string trim $result]] == 0} then { return "" } } foreach escape [list \ | | | > > > | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | if {[string length [string trim $result]] == 0} then { return "" } } foreach escape [list \ {<b>} {</b>} {<br>} {</br>} {<dd>} {</dd>} {<dl>} {</dl>} \ {<dt>} {</dt>} {<li>} {</li>} {<ol>} {</ol>} {<tt>} {</tt>} \ {<ul>} {</ul>}] { regsub -all -- ($escape) $result {<![CDATA[\1]]>} result } regsub -all -- {≠} $result {\≠} result regsub -all -- {[(?:;)?} $result {[} result regsub -all -- {](?:;)?} $result {]} result if {$ltAndGt} then { regsub -all -- {<( |\"|\d|=)} $result {\<\1} result regsub -all -- {( |\"|\d|=)>} $result {\1\>} result } regsub -all -- { < } $result { \< } result regsub -all -- { > } $result { \> } result regsub -all -- {<div class="codeblock"><pre>} $result \ <para><code>\n${prefix} result regsub -all -- {</pre></div>} $result </code></para> result regsub -all -- {<blockquote><pre>} $result <para><code> result regsub -all -- {</pre></blockquote>} $result </code></para> result |
︙ | ︙ |
Changes to System.Data.SQLite/ISQLiteNativeModule.cs.
︙ | ︙ | |||
1057 1058 1059 1060 1061 1062 1063 | /// held within the argv[i] object, not the argv[i] /// object itself. /// </para> /// <para><code> /// <![CDATA[<dl>]]> /// <![CDATA[<dt>]]><![CDATA[<b>]]>argc = 1<![CDATA[</b>]]> /// <![CDATA[</dt>]]><![CDATA[<dd>]]>The single row with rowid equal to argv[0] is deleted. No insert occurs. | | | | | 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 | /// held within the argv[i] object, not the argv[i] /// object itself. /// </para> /// <para><code> /// <![CDATA[<dl>]]> /// <![CDATA[<dt>]]><![CDATA[<b>]]>argc = 1<![CDATA[</b>]]> /// <![CDATA[</dt>]]><![CDATA[<dd>]]>The single row with rowid equal to argv[0] is deleted. No insert occurs. /// <![CDATA[</dd>]]><![CDATA[<dt>]]><![CDATA[<b>]]>argc > 1 <![CDATA[<br>]]> argv[0] = NULL<![CDATA[</br>]]><![CDATA[</b>]]> /// <![CDATA[</dt>]]><![CDATA[<dd>]]>A new row is inserted with a rowid argv[1] and column values in /// argv[2] and following. If argv[1] is an SQL NULL, /// the a new unique rowid is generated automatically. /// <![CDATA[</dd>]]><![CDATA[<dt>]]><![CDATA[<b>]]>argc > 1 <![CDATA[<br>]]> argv[0] ≠ NULL <![CDATA[</br>]]><![CDATA[<br>]]> argv[0] = argv[1]<![CDATA[</br>]]><![CDATA[</b>]]> /// <![CDATA[</dt>]]><![CDATA[<dd>]]>The row with rowid argv[0] is updated with new values /// in argv[2] and following parameters. /// <![CDATA[</dd>]]><![CDATA[<dt>]]><![CDATA[<b>]]>argc > 1 <![CDATA[<br>]]> argv[0] ≠ NULL <![CDATA[</br>]]><![CDATA[<br>]]> argv[0] ≠ argv[1]<![CDATA[</br>]]><![CDATA[</b>]]> /// <![CDATA[</dt>]]><![CDATA[<dd>]]> The row with rowid argv[0] is updated with rowid argv[1] /// and new values in argv[2] and following parameters. This will occur /// when an SQL statement updates a rowid, as in the statement: /// <para><code> /// UPDATE table SET rowid=rowid+1 WHERE ...; /// </code></para> /// <![CDATA[</dd>]]><![CDATA[</dl>]]> |
︙ | ︙ |