| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 <h4>Options</h4> | 128 <h4>Options</h4> |
| 129 <blockquote> | 129 <blockquote> |
| 130 <dl> | 130 <dl> |
| 131 <dt>--no-error-notification</dt> | 131 <dt>--no-error-notification</dt> |
| 132 <dd> | 132 <dd> |
| 133 Disable notifications about errors (see analysis.error). If this | 133 Disable notifications about errors (see analysis.error). If this |
| 134 flag is not specified then notifications will be sent for all | 134 flag is not specified then notifications will be sent for all |
| 135 errors produced for all files in the actual analysis roots. | 135 errors produced for all files in the actual analysis roots. |
| 136 </dd> | 136 </dd> |
| 137 </dl> | 137 </dl> |
| 138 <dl> |
| 139 <dt>--file-read-mode</dt> |
| 140 <dd> |
| 141 An enumeration of the ways files can be read from disk. Some clients |
| 142 normalize end of line characters which would make the file offset and |
| 143 range information incorrect. The default option is <tt>as-is</tt>, but |
| 144 can also be set to <tt>normalize-eol-always</tt>. The default option |
| 145 (<tt>as-is</tt>) reads files as they are on disk. The |
| 146 <tt>normalize-eol-always</tt> option does the following: |
| 147 <ul> |
| 148 <li>'\r\n' is converted to '\n';</li> |
| 149 <li>'\r' by itself is converted to '\n';</li> |
| 150 <li>this happens regardless of the OS editor is running on.</li> |
| 151 </ul> |
| 152 </dd> |
| 153 </dl> |
| 138 </blockquote> | 154 </blockquote> |
| 139 <domain name="server"> | 155 <domain name="server"> |
| 140 <p> | 156 <p> |
| 141 The server domain contains API’s related to the execution of | 157 The server domain contains API’s related to the execution of |
| 142 the server. | 158 the server. |
| 143 </p> | 159 </p> |
| 144 <request method="getVersion"> | 160 <request method="getVersion"> |
| 145 <p>Return the version number of the analysis server.</p> | 161 <p>Return the version number of the analysis server.</p> |
| 146 <result> | 162 <result> |
| 147 <field name="version"> | 163 <field name="version"> |
| (...skipping 3554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3702 <h2>Errors</h2> | 3718 <h2>Errors</h2> |
| 3703 <p> | 3719 <p> |
| 3704 This section contains a list of all of the errors that are | 3720 This section contains a list of all of the errors that are |
| 3705 produced by the server and the data that is returned with each. | 3721 produced by the server and the data that is returned with each. |
| 3706 </p> | 3722 </p> |
| 3707 <p> | 3723 <p> |
| 3708 TBD | 3724 TBD |
| 3709 </p> | 3725 </p> |
| 3710 </body> | 3726 </body> |
| 3711 </html> | 3727 </html> |
| OLD | NEW |