~gary/python-openid/python-openid-2.2.1-patched

« back to all changes in this revision

Viewing changes to admin/makedoc

  • Committer: Launchpad Patch Queue Manager
  • Date: 2007-11-30 02:46:28 UTC
  • mfrom: (1.1.1 pyopenid-2.0)
  • Revision ID: launchpad@pqm.canonical.com-20071130024628-qktwsew3383iawmq
[rs=SteveA] upgrade to python-openid-2.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
rm -rf doc/*
4
4
epydoc --html --output doc/ --name "Python-OpenID" --top openid \
5
5
    --url "http://www.openidenabled.com/" --inheritance listed \
6
 
    --no-private \
7
 
    openid/__init__.py \
8
 
    openid/dh.py \
9
 
    openid/association.py \
10
 
    openid/consumer/__init__.py \
11
 
    openid/consumer/consumer.py \
12
 
    openid/consumer/discover.py \
13
 
    openid/server/__init__.py \
14
 
    openid/server/server.py \
15
 
    openid/server/trustroot.py \
16
 
    openid/store/__init__.py \
17
 
    openid/store/interface.py \
18
 
    openid/store/filestore.py \
19
 
    openid/store/dumbstore.py \
20
 
    openid/store/sqlstore.py
 
6
    --no-private -v \
 
7
    $( find openid -name '*.py' -and -not -path 'openid/test*' )