Changes between Version 7 and Version 8 of SQLAuthStorePlugin


Ignore:
Timestamp:
Apr 19, 2015, 12:38:20 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged as external

Legend:

Unmodified
Added
Removed
Modified
  • SQLAuthStorePlugin

    v7 v8  
    1 = SQL auth store plugin =
     1[[PageOutline(2-5,Contents,pullout)]]
    22
    3 == Description ==
     3= SQL auth store plugin
     4
     5== Description
    46
    57This plugin defines a SQL auth store backend for AccountManagerPlugin.
    68
    7 Under `account-manager` section you can configure:
    8  * `hash_method` (hash method used for storing/reading passwords from the database, like `HtPasswdHashMethod` or `HtDigestHashMethod`)
    9  * `sql_auth_table` (name of the table in the database)
    10  * `sql_read_only` (should the plugin also allow updating the table through Trac, `true` or `false`)
     9Under `account-manager` section of your `trac.ini` file you can configure the following:
     10 * `hash_method`: hash method used for storing/reading passwords from the database, like `HtPasswdHashMethod` or `HtDigestHashMethod`.
     11 * `sql_auth_table`: name of the table in the database.
     12 * `sql_read_only`: should the plugin also allow updating the table through Trac, `true` or `false`.
    1113
    12 For database connection Trac database connection is used. So the idea is that in the Trac database you create a table for users (or you can use something like PostgreSQL schema search path to combine multiple schemas together).
     14For database connection Trac database connection is used. So the idea is that in the Trac database you create a table for users or you can use something like PostgreSQL schema search path to combine multiple schemas together.
    1315
    1416Table schema is simple:
    1517 * `username`
    1618 * `password`
    17  * `admin` (if true, user will be both in `admins` and `users` permission groups, otherwise just `users`)
     19 * `admin`: if true, user will be both in `admins` and `users` permission groups, otherwise just `users`.
    1820
    19 == Bugs/Feature Requests ==
     21== Bugs/Feature Requests
    2022
    2123Please use [https://github.com/trac-hacks/trac-sqlauthstore/issues GitHub] for any issues you have with [wiki:SQLAuthStorePlugin].
    2224
    23 == Download ==
     25== Download
    2426
    2527Download the zipped source from [https://github.com/trac-hacks/trac-sqlauthstore/archive/master.zip here].
    2628
    27 == Source ==
     29== Source
    2830
    2931You can clone [wiki:SQLAuthStorePlugin] from [https://github.com/trac-hacks/trac-sqlauthstore here] using git, or [https://github.com/trac-hacks/trac-sqlauthstore browse the source] on GitHub.
    3032
    31 == Installation ==
     33== Installation
    3234
     35Run the following to install this plugin:
    3336{{{
    3437#!sh
     
    3841For more information, please follow [http://trac.edgewall.org/wiki/TracPlugins#InstallingaTracPlugin documentation] on how to install Trac's plugins.
    3942
    40 == Author/Contributors ==
     43== Author/Contributors
    4144
    4245'''Author:''' [wiki:mitar] [[BR]]