~ubuntu-branches/ubuntu/raring/trac-accountmanager/raring

« back to all changes in this revision

Viewing changes to README

  • Committer: Package Import Robot
  • Author(s): Leo Costela
  • Date: 2012-06-30 20:40:10 UTC
  • mfrom: (1.1.4)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20120630204010-xyoy9dnabof4jsbo
* new upstream checkout (closes: #654292)
* convert to dh short style and "--with python2"
* bump dh compat to 9
* update watch file for new version (0.3.2 based on setup.py; no 
  official release)
* move packaging to git (dump old out-of-sync history)
* debian/control: bump policy to 3.9.3 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
== Installation ==
6
6
 1. Run: python setup.py bdist_egg
7
 
 2. If necessary create a folder called "plugins" in your Trac environment.
8
 
 3. Copy the .egg file from the dist folder created by step 1 into the "plugins"
9
 
    directory of your Trac environment.
 
7
 2. If necessary, create a folder called "plugins" in your Trac environment.
 
8
 3. Copy the .egg file from the "dist" folder created by step 1
 
9
    into the "plugins" directory of your Trac environment.
10
10
 
11
11
== Configuration ==
12
 
Add one of the following sections to trac.ini to manage an Apache htpasswd or
13
 
htdigest file.
 
12
Add one of the following sections to trac.ini to get started.  See even 
 
13
more configuration examples for supported backends at
 
14
 http://trac-hacks.org/wiki/AccountManagerPlugin/AuthStores
14
15
 
15
16
=== Htpasswd ===
16
17
{{{
17
18
[account-manager]
 
19
; use an Apache htpasswd file
18
20
password_format = htpasswd
19
21
password_file = /path/to/trac.htpasswd
20
22
}}}
22
24
=== Htdigest ===
23
25
{{{
24
26
[account-manager]
 
27
; use an Apache htdigest file
25
28
password_format = htdigest
26
29
password_file = /path/to/trac.htdigest
27
30
htdigest_realm = TracDigestRealm
28
31
}}}
29
32
 
 
33
=== HttpAuth ===
 
34
{{{
 
35
[account-manager]
 
36
; use a page that is secured with HTTP Auth
 
37
authentication_url = http://hostname/path
 
38
password_store = HttpAuthStore
 
39
}}}