Changeset 30379
- Timestamp:
- 02/20/08 18:42:45 (9 months ago)
- Files:
-
- doc/nuxeo-book/trunk/pom.xml (modified) (2 diffs)
- doc/nuxeo-book/trunk/src/docbook/desktop-integration/index.xml (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/nuxeo-book/trunk/pom.xml
r30237 r30379 25 25 26 26 <executions> 27 < execution>27 <!--execution> 28 28 <id>build-pdf-doc</id> 29 29 <phase>pre-site</phase> … … 41 41 <foCustomization>${docbook.source}/resources/xsl/nuxeo-docbook-fopdf.xsl</foCustomization> 42 42 </configuration> 43 </execution >43 </execution--> 44 44 45 45 <execution> doc/nuxeo-book/trunk/src/docbook/desktop-integration/index.xml
r30267 r30379 277 277 Before and after editing the document, the editor plugin 278 278 can fetches a list of configurable actions to call on the 279 server through SOAP (lock/unlock, check in/ check out,280 validate, ...).279 server through SOAP or REST GET (lock/unlock, check in/ 280 check out, validate, ...). 281 281 </listitem> 282 282 <listitem> … … 303 303 <para> 304 304 <literal> 305 nxedit: //localhost:8080/nuxeo/nxliveedit.faces?action=edit&repoID=[repoID]&docRef=[docRef]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&conversationId=[SEAM_CONVERSATION_ID]305 nxedit:http://localhost:8080/nuxeo/nxliveedit.faces?action=edit&repoID=[repoID]&docRef=[docRef]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&conversationId=[SEAM_CONVERSATION_ID] 306 306 </literal> 307 307 </para> … … 323 323 <listitem> 324 324 <literal> 325 nxedit: //localhost:8080/nuxeo/nxliveedit.faces?action=create&repoID=[repoID]&mimetype=[mimetype]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&docType=[docType]&conversationId=[SEAM_CONVERSATION_ID]325 nxedit:http://localhost:8080/nuxeo/nxliveedit.faces?action=create&repoID=[repoID]&mimetype=[mimetype]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&docType=[docType]&conversationId=[SEAM_CONVERSATION_ID] 326 326 </literal> 327 327 </listitem> 328 328 </itemizedlist> 329 329 </listitem> 330 330 331 <listitem> 331 332 user case#3: docid and field path of the original blob AND … … 336 337 <listitem> 337 338 <literal> 338 nxedit: //localhost:8080/nuxeo/nxliveedit.faces?action=createFromTemplate&templateRepoID=[templateRepoID]&templateDocRef=[templateDocRef]&templateSchema=[templateSchema]&templateBlobField=[templateBlobField]&repoID=[repoID]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&docType=[docType]&conversationId=[SEAM_CONVERSATION_ID]339 nxedit:http://localhost:8080/nuxeo/nxliveedit.faces?action=createFromTemplate&templateRepoID=[templateRepoID]&templateDocRef=[templateDocRef]&templateSchema=[templateSchema]&templateBlobField=[templateBlobField]&repoID=[repoID]&schema=[schema]&blobField=[blobField]&filenameField=[filenameField]&docType=[docType]&conversationId=[SEAM_CONVERSATION_ID] 339 340 </literal> 340 341 </listitem> … … 358 359 359 360 <para> 360 The Bootstrap client protocol handler should also be able to361 interpret variant of the previous URIs that specify the362 protocol (http or https), eg:361 The Bootstrap client protocol must strip the "nxedit:" prefix 362 of the URI to get the HTTP URL and thus work either with SSL 363 or not: 363 364 364 365 <itemizedlist> … … 409 410 <para> 410 411 In order to generate valid 411 <literal>nxedit: //</literal>412 UR Ls it is strongly advised to use the JSF functions defined412 <literal>nxedit:</literal> 413 URIs it is strongly advised to use the JSF functions defined 413 414 in the 414 415 <literal> … … 429 430 <literal>liveEditUrl(DocumentModel)</literal> 430 431 : get the 431 <literal>nxedit: //</literal>432 URL to edit a document file attach ement (default File-like432 <literal>nxedit:</literal> 433 URL to edit a document file attachment (default File-like 433 434 types) 434 435 </listitem> … … 438 439 liveEditUrl(DocumentModel, String, String, String) 439 440 </literal> 440 : get the nxedit: // URL to edit a document proviging441 schema,blob field and filename field names441 : get the nxedit: URI to edit a document providing schema, 442 blob field and filename field names 442 443 </listitem> 443 444 444 445 <listitem> 445 446 <literal>liveCreateUrl(String)</literal> 446 : get the nxedit: // urlto create a new document of type447 : get the nxedit: URI to create a new document of type 447 448 File providing the mimetype as argument 448 449 </listitem> … … 452 453 liveCreateUrl(String, String, String, String, String) 453 454 </literal> 454 : get the nxedit: // urlto create a new document with455 : get the nxedit: URI to create a new document with 455 456 parameters: mimetype, doctype, schema, blob and filename 456 457 field names … … 461 462 liveCreateFromTemplateUrl(DocumentModel) 462 463 </literal> 463 : get the nxedit: // URLto create a new document of type464 : get the nxedit: URI to create a new document of type 464 465 File reusing the content of the blob of the provided 465 466 template DocumentModel (assumed to have the "file" … … 472 473 String, String, String, String, String) 473 474 </literal> 474 : get the nxedit: // URLto create a new document from475 : get the nxedit: URI to create a new document from 475 476 template. Parameters are: template DocumentModel, template 476 477 schema, template blob field, target document type, target
