Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg-security/TI12-security/trunk/python/MyProxyClient/documentation/Makefile@5357
Revision 5357,
642 bytes
checked in by pjkersha, 12 years ago
(diff) |
- fix to WS-Security signature handler 4Suite implementation (ndg.security.common.wssecurity.signaturehandler.foursuite) to ensure timestamp is checked correctly
- refactored ndg.security.common.wssecurity moving encryption handler development code into its own ndg.security.common.wssecurity.encryptionhandler package
- Fixed copyright on some remaining files that still had NERC/CCLRC
- further work on SSL CLient AuthN WSGI unit tests ndg.security.test.unit.wsgi.ssl
|
Line | |
---|
1 | # |
---|
2 | # Makefile to generate epydoc documentation for the MyProxy Client Package |
---|
3 | # |
---|
4 | # NERC Data Grid Project |
---|
5 | # |
---|
6 | # @author P J Kershaw 15/12/08 |
---|
7 | # |
---|
8 | |
---|
9 | # @copyright: (C) 2008 STFC |
---|
10 | # |
---|
11 | # @license: This software may be distributed under the terms of the Q Public |
---|
12 | # License, version 1.0 or later. |
---|
13 | # |
---|
14 | # $Id$ |
---|
15 | |
---|
16 | # Generate HTML from embedded epydoc text in source code. |
---|
17 | EPYDOC=epydoc |
---|
18 | EPYDOC_OUTDIR=. |
---|
19 | EPYDOC_NAME='MyProxy Client' |
---|
20 | EPYDOC_LOGFILE=epydoc.log |
---|
21 | EPYDOC_FRAMES_OPT=--no-frames |
---|
22 | epydoc: |
---|
23 | ${EPYDOC} ../myproxy -o ${EPYDOC_OUTDIR} --name ${EPYDOC_NAME} \ |
---|
24 | ${EPYDOC_FRAMES_OPT} --include-log --graph=all -v > ${EPYDOC_LOGFILE} |
---|
25 | |
---|
26 | clean: |
---|
27 | rm -f *.txt *.html *.gif |
---|
Note: See
TracBrowser
for help on using the repository browser.