Changes between Version 5 and Version 6 of ScriptAuthPlugin


Ignore:
Timestamp:
Nov 26, 2015, 10:42:01 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • ScriptAuthPlugin

    v5 v6  
    66
    77Similar to normal HTTP Authentication, this plugin uses explicit URL parameters for transferring the username and password to a web script that implements the check and returns the authentication result in the HTTP response code and content.
    8 When possible, the users email address is transferred and set as well.
     8When possible, the user's email address is transferred and set as well.
    99
    1010== Bugs/Feature Requests
     
    1414
    1515If you have any issues, create a
    16 [http://trac-hacks.org/newticket?component=ScriptAuthPlugin&owner=Carsten new ticket].
     16[/newticket?component=ScriptAuthPlugin new ticket].
    1717
    1818[[TicketQuery(component=ScriptAuthPlugin&group=type,format=progress)]]
    1919
    20 == Download and Source
     20== Download
    2121
    22 Download the zipped source from [download:scriptauthplugin here], check out [/svn/scriptauthplugin using Subversion], or [source:scriptauthplugin browse the source] with Trac.
     22Download the zipped source from [export:scriptauthplugin here].
     23
     24== Source
     25
     26Check out ScriptAuthPlugin from [/svn/scriptauthplugin here] using Subversion, or [source:scriptauthplugin browse the source] with Trac.
    2327
    2428== Installation
     
    4751Type them exactly like this in order to have them automatically replaced by the appropriate user details.
    4852
    49 The script at `script_auth_url` is expected to return `ok` followed by newline followed by the email address of the user
    50 as the HTTP content when the user details are valid, or anything else otherwise.
     53The script at `script_auth_url` is expected to return `ok` followed by newline followed by the email address of the user as the HTTP content when the user details are valid, or anything else otherwise.
    5154
    5255The HTTP result codes like 200 and 401 can unfortunately not (easily) be utilized with Python <= 2.4.
    5356
    5457An example for a script that implements authentication against the phpBB forum database is available [http://www.phpbb.de/community/viewtopic.php?p=1155503#p1155503 here].
    55 It is useful when you cannot use the PhpBbAuthPlugin directly, e.g. because the phpBB database is not accessible from your Trac host.
     58It is useful when you cannot use the PhpBbAuthPlugin directly, eg because the phpBB database is not accessible from your Trac host.
    5659
    5760== Recent Changes