Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="UTF-8"/> | 4 <meta charset="UTF-8"/> |
| 5 <title>Analysis Server API Specification</title> | 5 <title>Analysis Server API Specification</title> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <h1>Analysis Server API Specification</h1> | 8 <h1>Analysis Server API Specification</h1> |
| 9 <h1 style="color:#999999">Version <version>1.10.0</version></h1> | 9 <h1 style="color:#999999">Version <version>1.10.0</version></h1> |
|
Brian Wilkerson
2015/10/02 00:17:48
We need to bump the version number to 1.11.0, both
scheglov
2015/10/02 00:23:31
Note, that I forgot to change AnalysisServer.VERSI
pquitslund
2015/10/02 04:19:53
Good catch!
| |
| 10 <p> | 10 <p> |
| 11 This document contains a specification of the API provided by the | 11 This document contains a specification of the API provided by the |
| 12 analysis server. The API in this document is currently under | 12 analysis server. The API in this document is currently under |
| 13 development. Changes to the API will be accompanied by an update to the | 13 development. Changes to the API will be accompanied by an update to the |
| 14 protocol version number according to the principles of semantic | 14 protocol version number according to the principles of semantic |
| 15 versioning <a href="http://semver.org/">http://semver.org/</a>. | 15 versioning <a href="http://semver.org/">http://semver.org/</a>. |
| 16 </p> | 16 </p> |
| 17 <h2>Overview</h2> | 17 <h2>Overview</h2> |
| 18 <p> | 18 <p> |
| 19 The analysis server API is a bi-directional client-server | 19 The analysis server API is a bi-directional client-server |
| (...skipping 2000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2020 </field> | 2020 </field> |
| 2021 <field name="correction" optional="true"> | 2021 <field name="correction" optional="true"> |
| 2022 <ref>String</ref> | 2022 <ref>String</ref> |
| 2023 <p> | 2023 <p> |
| 2024 The correction message to be displayed for this error. The | 2024 The correction message to be displayed for this error. The |
| 2025 correction message should indicate how the user can fix | 2025 correction message should indicate how the user can fix |
| 2026 the error. The field is omitted if there is no correction | 2026 the error. The field is omitted if there is no correction |
| 2027 message associated with the error code. | 2027 message associated with the error code. |
| 2028 </p> | 2028 </p> |
| 2029 </field> | 2029 </field> |
| 2030 <field name="hasFix" optional="true"> | |
| 2031 <ref>bool</ref> | |
| 2032 <p> | |
| 2033 A hint to indicate to interested clients that this error has | |
| 2034 an associated fix (or fixes). | |
|
Brian Wilkerson
2015/10/02 00:17:48
This should make explicit that the absence of this
scheglov
2015/10/02 00:23:31
I might worth to document that this flag may be "f
pquitslund
2015/10/02 04:19:53
Done.
Brian Wilkerson
2015/10/02 13:58:58
Also, we should document whether or not we will ev
| |
| 2035 </p> | |
| 2036 </field> | |
| 2030 </object> | 2037 </object> |
| 2031 </type> | 2038 </type> |
| 2032 <type name="AnalysisErrorFixes"> | 2039 <type name="AnalysisErrorFixes"> |
| 2033 <p> | 2040 <p> |
| 2034 A list of fixes associated with a specific error | 2041 A list of fixes associated with a specific error |
| 2035 </p> | 2042 </p> |
| 2036 <object> | 2043 <object> |
| 2037 <field name="error"> | 2044 <field name="error"> |
| 2038 <ref>AnalysisError</ref> | 2045 <ref>AnalysisError</ref> |
| 2039 <p> | 2046 <p> |
| (...skipping 2298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4338 This section contains a list of all of the errors that are | 4345 This section contains a list of all of the errors that are |
| 4339 produced by the server and the data that is returned with each. | 4346 produced by the server and the data that is returned with each. |
| 4340 </p> | 4347 </p> |
| 4341 <p> | 4348 <p> |
| 4342 TBD | 4349 TBD |
| 4343 </p> | 4350 </p> |
| 4344 <h2 class="domain"><a name="index">Index</a></h2> | 4351 <h2 class="domain"><a name="index">Index</a></h2> |
| 4345 <index></index> | 4352 <index></index> |
| 4346 </body> | 4353 </body> |
| 4347 </html> | 4354 </html> |
| OLD | NEW |