Skip to content
Snippets Groups Projects
Select Git revision
  • c38503cef8f575781f7f555f175ccc33feac6746
  • master default protected
  • e-infra2
  • ci-megalinter-speedup
  • e-infra
  • envri-hub-new-aai
  • egi-b2drop-no-collapse
  • lfs
  • gpu_staging
  • resurrect-testing-ownloud
  • experiments/collab
  • update_claim_group_keys
  • envri-hub
  • enable_rtc
  • eosc-ui
  • future/jupyterhub-5.x
  • versioning
  • eosc-templating
  • staging1-raw-image
  • token-exchange
  • del-users
21 results

extra

  • settings.php 1.20 KiB
    <?php
    /**
     * english language file for oauthgeneric plugin
     *
     * @author Andreas Gohr <dokuwiki@cosmocode.de>
     */
    
    $lang['key'] = 'The Application UID';
    $lang['secret'] = 'The Application Secret';
    $lang['authurl'] = 'URL to the authentication endpoint';
    $lang['tokenurl'] = 'URL to the token endpoint';
    $lang['userurl'] = 'URL to the user info API endpoint (must return JSON about the authenticated user)';
    $lang['authmethod'] = 'Authorization method used when talking to the user API';
    $lang['scopes'] = 'Scopes to request (comma separated)';
    
    $lang['json-user'] = 'Access to the username in dot notation';
    $lang['json-name'] = 'Access to the full name in dot notation';
    $lang['json-mail'] = 'Access to the user email in dot notation';
    $lang['json-grps'] = 'Access to the user groups in dot notation';
    
    $lang['label'] = 'Label to display on the login button';
    $lang['color'] = 'Color to use with the login button';
    
    $lang['authmethod_o_0'] = 'OAuth Header';
    $lang['authmethod_o_1'] = 'Bearer Header';
    $lang['authmethod_o_6'] = 'Token Header';
    $lang['authmethod_o_2'] = 'Query String v1';
    $lang['authmethod_o_3'] = 'Query String v2';
    $lang['authmethod_o_4'] = 'Query String v3';
    $lang['authmethod_o_5'] = 'Query String v4';