ODS.VirtuosoOdsUbiquityPolls

  • Topic
  • Discussion
  • ODS.VirtuosoOdsUbiquityPolls(Last) -- DAVWikiAdmin? , 2017-06-29 07:33:02 Edit WebDAV System Administrator 2017-06-29 07:33:02

    Polls Ubiquity Commands

    1. establish OAuth session key for ODS Polls instance:

      Syntax: ods-set-poll-oauth <session_key> Example: ods-set-poll-oauth c4746c96bd8faa99798ad88448ba3bab

      • Example usage you can find here.
    2. create poll:

      Syntax: ods-create-poll <instance_id> name <name> [description <description>] [tags <tags>] [multi_vote <0|1>] [vote_result <0|1>] [vote_result_before <0|1>] [vote_result_opened <0|1>] [dateStart <dateStart>] [dateEnd <dateEnd>] [mode <S|M>] Syntax: ods-create-poll 10 name SPARQL Poll dateStart 2008.11.20

      • Example usage you can find here.
    3. get poll resource information by resource ID:

      Syntax: ods-get-poll-by-id <poll_id> Example: ods-get-poll-by-id 1001

    4. update poll by resource ID:

      Syntax: ods-update-poll <poll_id> name <name> [description <description>] [tags <tags>] [multi_vote <0|1>] [vote_result <0|1>] [vote_result_before <0|1>] [vote_result_opened <0|1>] [dateStart <dateStart>] [dateEnd <dateEnd>] [mode <S|M>] Syntax: ods-update-poll 1001 name SPARQL Poll dateStart 2008.11.22 dateEnd 2008.11.29

    5. delete poll by resource ID:

      Syntax: ods-delete-poll-by-id <poll_id> Example: ods-delete-poll-by-id 1001

    6. create poll question:

      Syntax: ods-create-poll-question <poll_id> questionNo <questionNo> text <text> [description <description>] [required <required>] [type <type>] [answer <answer>] Example: ods-create-poll-question 1001 questionNo 1 text Do you know SPARQL? answer answer_1=Yes&answer_2=No

    7. delete poll question:

      Syntax: ods-delete-poll-question <poll_id> questionNo <questionNo> Example: ods-delete-poll-question 1001 questionNo 2

    8. activate (open) poll for votes:

      Syntax: ods-activate-poll <poll_id> Example: ods-activate-poll 1001

    9. close poll for votes:

      Syntax: ods-close-poll <poll_id> Example: ods-close-poll 1001

    10. clear poll votes:

      Syntax: ods-clear-poll <poll_id> Example: ods-clear-poll 1001

    11. create vote to poll:

      Syntax: ods-vote-poll <poll_id> Example: ods-vote-poll 1001

    12. add answer to vote:

      Syntax: ods-poll-vote-answer <vote_id> questionNo <questionNo> answerNo <answerNo> value <value> Example: ods-poll-vote-answer 10001 questionNo 1 answerNo 1 value Yes

    13. get poll result:

      Syntax: ods-result-poll <poll_id> Example: ods-result-poll 1001

    14. create comment to existing poll ID:

      Syntax: ods-create-poll-comment <poll_id> title <title> body <body> author <author> authorMail <authorMail> authorUrl <authorUrl> Example: ods-create-poll-comment 1001 title RDF body OpenLink RDF Browser http://demo.openlinksw.com/rdfbrowser/ author demo authorMail demo@openlinksw.com authorUrl http://demo.openlinksw.com/dataspace/person/demo

    15. get poll comment information by resource ID:

      Syntax: ods-get-poll-comment-by-id <comment_id> Example: ods-get-poll-comment-by-id 10001

    16. delete poll comment by resource ID:

      Syntax: ods-delete-poll-comment <comment_id> Example: ods-delete-poll-comment 10001

    17. set poll instance options/properties:

      Syntax: ods-set-polls-options <instance_id> with <options> Example: ods-set-polls-options 10 with rows=20

    18. get poll instance options/properties:

      Syntax: ods-get-polls-options <instance_id> Example: ods-get-polls-options 10

    References