Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add post-processing of NDoc3 output for links that refer to protected overloaded methods of a base class. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5db202020bdd6712ca3e1bd7f909667c |
User & Date: | mistachkin 2013-07-10 02:02:52.267 |
Context
2013-07-10
| ||
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 | |
2013-07-09
| ||
01:00 | Final updates for release 1.0.87.0. check-in: bc2b80a373 user: mistachkin tags: trunk, release, release-1.0.87.0 | |
Changes
Changes to Doc/buildChm.tcl.
︙ | ︙ | |||
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | 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 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} foreach fileName $fileNames { set fileName [file join $path $outputPath $fileName] # # NOTE: Make sure the file we need actually exists. # if {![file isfile $fileName]} then { | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 120 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 172 | 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. # if {![file isfile $fileName]} then { |
︙ | ︙ |