Changes between Version 2 and Version 3 of WebRpc


Ignore:
Timestamp:
Apr 25, 2007, 2:31:57 PM (17 years ago)
Author:
KSMarksPsych
Comment:

Still needs some cleanup. I need to figure out the method to Nicolas' madness.

Legend:

Unmodified
Added
Removed
Modified
  • WebRpc

    v2 v3  
    3838 * If an RPC fails, the returned XML document is
    3939
    40 {{{<error>
     40{{{
     41<error>
    4142    <error_num>N</error_num>
    4243    <error_string>xxx</error_string>
    43 </error>}}}
     44</error>
     45}}}
    4446
    4547where N is a BOINC error number and xxx is a textual description. BOINC error numbers are in lib/error_numbers.h; common errors are:
     
    8183        project_url/create_account.php
    8284 '''input'''::
    83         email_addr: email address         passwd_hash: the MD5 hash of the concatenation         of the user's password and the email address.                  user_name: the user name
     85        email_addr: email address         passwd_hash: the MD5 hash of the concatenation of the user's password and the email address.                  user_name: the user name
    8486 '''output'''::
    8587       
     
    9395        If the project already has an account with that email address, and a different password, it returns an error.         If an account with that email address exists and has the same password, it returns the authenticator.  Otherwise the project creates an account and returns the authenticator.
    9496
    95 
    9697== Look up account ==
    97 
    9898
    9999 '''URL'''::
     
    110110
    111111 '''action'''::
    112         If an account with the given email address doesn't exist, return an error.  If passwd_hash is given and is correct,     return the account key.
     112        If an account with the given email address doesn't exist, return an error.  If passwd_hash is given and is correct, return the account key.
    113113
    114114