[pywin32-checkins] pywin32/isapi install.py,1.11.2.2,1.11.2.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2009-01-28 11:29:59
|
Update of /cvsroot/pywin32/pywin32/isapi In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv4331/isapi Modified Files: Tag: py3k install.py Log Message: merge various trunk changes Index: install.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/isapi/install.py,v retrieving revision 1.11.2.2 retrieving revision 1.11.2.3 diff -C2 -d -r1.11.2.2 -r1.11.2.3 *** install.py 5 Jan 2009 12:49:52 -0000 1.11.2.2 --- install.py 28 Jan 2009 11:29:52 -0000 1.11.2.3 *************** *** 294,301 **** def AssignScriptMaps(script_maps, target, update='replace'): ! """ ! @param script_maps ScriptMapParameter[] ! @param target An IIS Virtual Directory to assign the script maps ! @param update How to update the maps ('start', 'end', or 'replace') """ # determine which function to use to assign script maps --- 294,305 ---- def AssignScriptMaps(script_maps, target, update='replace'): ! """Updates IIS with the supplied script map information. ! ! script_maps is a list of ScriptMapParameter objects ! ! target is an IIS Virtual Directory to assign the script maps to ! ! update is a string indicating how to update the maps, one of ('start', ! 'end', or 'replace') """ # determine which function to use to assign script maps |