Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Simplify the changes from the previous check-in. Disable excessive warnings by the NDoc3 post-processing tool. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
4179328477d03589648421652c4c5994 |
User & Date: | mistachkin 2013-07-10 02:13:12 |
Context
2013-07-10
| ||
02:51 | Add another test for the SQLiteConvert.TypeNameToDbType method. check-in: 0654be8b4b user: mistachkin tags: trunk | |
02:13 | Simplify the changes from the previous check-in. Disable excessive warnings by the NDoc3 post-processing tool. check-in: 4179328477 user: mistachkin tags: trunk | |
02:02 | Add post-processing of NDoc3 output for links that refer to protected overloaded methods of a base class. check-in: 5db202020b user: mistachkin tags: trunk | |
Changes
Changes to Doc/buildChm.tcl.
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
...
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
set patterns(.html,1) \ {"http://msdn\.microsoft\.com/en-us/library/(System\.Data\.SQLite\.(?:.*?))\(VS\.\d+\)\.aspx"} set patterns(.html,2) {System.Collections.Generic.IEnumerable`1} set patterns(.html,3) {System.Collections.Generic.IEnumerator`1} set patterns(.html,4) \ {"System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteFunction\.Dispose\.html"} set patterns(.html,5) \ {"System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.SetEstimatedCost\.html"} set patterns(.html,6) \ {"System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.SetTableError\.html"} set patterns(.html,7) \ {"System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.Dispose\.html"} set patterns(.html,8) \ {"System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteVirtualTableCursor\.Dispose\.html"} set subSpecs(.hhc,1) [readFileAsSubSpec [file join $path SQLite.NET.hhc]] set subSpecs(.hhp,1) {Default topic=welcome.html} set subSpecs(.hhp,2) {"welcome.html","welcome.html",,,,,} set subSpecs(.html,1) {"System.Data.SQLite~\1.html"} set subSpecs(.html,2) {9eekhta0} set subSpecs(.html,3) {78dfe2yb} set subSpecs(.html,4) \ {"System.Data.SQLite~System.Data.SQLite.SQLiteFunction.Dispose~Overloads.html"} set subSpecs(.html,5) \ {"System.Data.SQLite~System.Data.SQLite.SQLiteModule.SetEstimatedCost~Overloads.html"} set subSpecs(.html,6) \ {"System.Data.SQLite~System.Data.SQLite.SQLiteModule.SetTableError~Overloads.html"} set subSpecs(.html,7) \ {"System.Data.SQLite~System.Data.SQLite.SQLiteModule.Dispose~Overloads.html"} set subSpecs(.html,8) \ {"System.Data.SQLite~System.Data.SQLite.SQLiteVirtualTableCursor.Dispose~Overloads.html"} foreach fileName $fileNames { set fileName [file join $path $outputPath $fileName] # # NOTE: Make sure the file we need actually exists. # ................................................................................ } set patternCount [regsub -all -- $pattern $data $subSpec data] if {$patternCount > 0} then { incr count $patternCount } else { puts stdout "*WARNING* File \"$fileName\" does not match: $pattern" } } # # NOTE: If we actually performed some replacements, rewrite the file. # if {$count > 0} then { |
|
|
|
|
|
<
|
<
<
|
<
<
|
<
<
|
<
<
|
<
>
>
>
>
|
|
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
...
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
set patterns(.html,1) \ {"http://msdn\.microsoft\.com/en-us/library/(System\.Data\.SQLite\.(?:.*?))\(VS\.\d+\)\.aspx"} set patterns(.html,2) {System.Collections.Generic.IEnumerable`1} set patterns(.html,3) {System.Collections.Generic.IEnumerator`1} set patterns(.html,4) \ {"(System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteFunction\.Dispose)\.html"} set patterns(.html,5) \ {"(System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.SetEstimatedCost)\.html"} set patterns(.html,6) \ {"(System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.SetTableError)\.html"} set patterns(.html,7) \ {"(System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteModule\.Dispose)\.html"} set patterns(.html,8) \ {"(System\.Data\.SQLite~System\.Data\.SQLite\.SQLiteVirtualTableCursor\.Dispose)\.html"} set subSpecs(.hhc,1) [readFileAsSubSpec [file join $path SQLite.NET.hhc]] set subSpecs(.hhp,1) {Default topic=welcome.html} set subSpecs(.hhp,2) {"welcome.html","welcome.html",,,,,} set subSpecs(.html,1) {"System.Data.SQLite~\1.html"} set subSpecs(.html,2) {9eekhta0} set subSpecs(.html,3) {78dfe2yb} set subSpecs(.html,4) {"\1~Overloads.html"} set subSpecs(.html,5) {"\1~Overloads.html"} set subSpecs(.html,6) {"\1~Overloads.html"} set subSpecs(.html,7) {"\1~Overloads.html"} set subSpecs(.html,8) {"\1~Overloads.html"} foreach fileName $fileNames { set fileName [file join $path $outputPath $fileName] # # NOTE: Make sure the file we need actually exists. # ................................................................................ } set patternCount [regsub -all -- $pattern $data $subSpec data] if {$patternCount > 0} then { incr count $patternCount } else { # # NOTE: This will emit multiple warnings for each file, making things # a bit too noisy (by default). # # puts stdout "*WARNING* File \"$fileName\" does not match: $pattern" } } # # NOTE: If we actually performed some replacements, rewrite the file. # if {$count > 0} then { |