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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 filesystem. The files whose content is overridden are | 475 filesystem. The files whose content is overridden are |
476 therefore seen by server as being files with the given | 476 therefore seen by server as being files with the given |
477 content, even if the files do not exist on the filesystem or | 477 content, even if the files do not exist on the filesystem or |
478 if the file path represents the path to a directory on the | 478 if the file path represents the path to a directory on the |
479 filesystem. | 479 filesystem. |
480 </p> | 480 </p> |
481 <params> | 481 <params> |
482 <field name="files"> | 482 <field name="files"> |
483 <map> | 483 <map> |
484 <key><ref>FilePath</ref></key> | 484 <key><ref>FilePath</ref></key> |
485 <value><ref>object</ref></value> | 485 <value> |
| 486 <union> |
| 487 <ref>AddContentOverlay</ref> |
| 488 <ref>ChangeContentOverlay</ref> |
| 489 <ref>RemoveContentOverlay</ref> |
| 490 </union> |
| 491 </value> |
486 </map> | 492 </map> |
487 <p> | 493 <p> |
488 A table mapping the files whose content has changed to a | 494 A table mapping the files whose content has changed to a |
489 description of the content change. Each value should be | 495 description of the content change. |
490 one of the following types: <a | |
491 href="#type_AddContentOverlay">AddContentOverlay</a>, <a | |
492 href="#type_ChangeContentOverlay">ChangeContentOverlay</a>, | |
493 or <a | |
494 href="#type_RemoveContentOverlay">RemoveContentOverlay</a>. | |
495 </p> | 496 </p> |
496 </field> | 497 </field> |
497 </params> | 498 </params> |
498 </request> | 499 </request> |
499 <request method="updateOptions"> | 500 <request method="updateOptions"> |
500 <p> | 501 <p> |
501 Update the options controlling analysis based on the given | 502 Update the options controlling analysis based on the given |
502 set of options. Any options that are not included in the | 503 set of options. Any options that are not included in the |
503 analysis options will not be changed. If there are options | 504 analysis options will not be changed. If there are options |
504 in the analysis options that are not valid an error will be | 505 in the analysis options that are not valid an error will be |
(...skipping 2560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3065 <h2>Errors</h2> | 3066 <h2>Errors</h2> |
3066 <p> | 3067 <p> |
3067 This section contains a list of all of the errors that are | 3068 This section contains a list of all of the errors that are |
3068 produced by the server and the data that is returned with each. | 3069 produced by the server and the data that is returned with each. |
3069 </p> | 3070 </p> |
3070 <p> | 3071 <p> |
3071 TBD | 3072 TBD |
3072 </p> | 3073 </p> |
3073 </body> | 3074 </body> |
3074 </html> | 3075 </html> |
OLD | NEW |