| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <meta charset="UTF-8"/> | 3 <meta charset="UTF-8"/> |
| 4 <title>Analysis Server API Specification</title> | 4 <title>Analysis Server API Specification</title> |
| 5 </head> | 5 </head> |
| 6 <body> | 6 <body> |
| 7 <h1>Analysis Server API Specification</h1> | 7 <h1>Analysis Server API Specification</h1> |
| 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1
> | 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1
> |
| 9 <p> | 9 <p> |
| 10 This document contains a specification of the API provided by | 10 This document contains a specification of the API provided by |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 <p> | 806 <p> |
| 807 The length of the text to be replaced if the remainder | 807 The length of the text to be replaced if the remainder |
| 808 of the identifier containing the cursor is to be | 808 of the identifier containing the cursor is to be |
| 809 replaced when the suggestion is applied (that is, the | 809 replaced when the suggestion is applied (that is, the |
| 810 number of characters in the existing identifier). | 810 number of characters in the existing identifier). |
| 811 </p> | 811 </p> |
| 812 </field> | 812 </field> |
| 813 <field name="results"> | 813 <field name="results"> |
| 814 <list><ref>CompletionSuggestion</ref></list> | 814 <list><ref>CompletionSuggestion</ref></list> |
| 815 <p> | 815 <p> |
| 816 The completion suggestions being reported. | 816 The completion suggestions being reported. The |
| 817 notification contains all possible completions at the |
| 818 requested cursor position, even those that do not match |
| 819 the characters the user has already typed. This allows |
| 820 the client to respond to further keystrokes from the |
| 821 user without having to make additional requests. |
| 817 </p> | 822 </p> |
| 818 </field> | 823 </field> |
| 819 <field name="last"> | 824 <field name="last"> |
| 820 <ref>bool</ref> | 825 <ref>bool</ref> |
| 821 <p> | 826 <p> |
| 822 True if this is that last set of results that will be | 827 True if this is that last set of results that will be |
| 823 returned for the indicated completion. | 828 returned for the indicated completion. |
| 824 </p> | 829 </p> |
| 825 </field> | 830 </field> |
| 826 </params> | 831 </params> |
| (...skipping 2211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3038 <h2>Errors</h2> | 3043 <h2>Errors</h2> |
| 3039 <p> | 3044 <p> |
| 3040 This section contains a list of all of the errors that are | 3045 This section contains a list of all of the errors that are |
| 3041 produced by the server and the data that is returned with each. | 3046 produced by the server and the data that is returned with each. |
| 3042 </p> | 3047 </p> |
| 3043 <p> | 3048 <p> |
| 3044 TBD | 3049 TBD |
| 3045 </p> | 3050 </p> |
| 3046 </body> | 3051 </body> |
| 3047 </html> | 3052 </html> |
| OLD | NEW |