You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cvspass.html 2.4 KiB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <html>
  16. <head>
  17. <meta http-equiv="Content-Language" content="en-us">
  18. <link rel="stylesheet" type="text/css" href="../stylesheets/style.css">
  19. <title>CVSPass Task</title>
  20. </head>
  21. <body>
  22. <h2><a name="cvs">cvspass</a></h2>
  23. <h3>Description</h3>
  24. <p>Adds entries to a .cvspass file. Adding entries to this file has the same affect as a cvs login command.</p>
  25. <p><b>CVSNT Note</b>: CVSNT prefers users to store the passwords
  26. inside the registry. If the task doesn't seem to work for you, the
  27. most likely reason is that CVSNT ignores your .cvspass file
  28. completely. See <a
  29. href="http://issues.apache.org/bugzilla/show_bug.cgi?id=21657#c5">bug
  30. zilla report 21657</a> for recommended workarounds.</p>
  31. <h3>Parameters</h3>
  32. <table border="1" cellpadding="2" cellspacing="0">
  33. <tr>
  34. <td valign="top"><b>Attribute</b></td>
  35. <td valign="top"><b>Description</b></td>
  36. <td align="center" valign="top"><b>Required</b></td>
  37. </tr>
  38. <tr>
  39. <td valign="top">cvsroot</td>
  40. <td valign="top">the CVS repository to add an entry for.</td>
  41. <td align="center" valign="top">Yes</td>
  42. </tr>
  43. <tr>
  44. <td valign="top">password</td>
  45. <td valign="top">Password to be added to the password file.</td>
  46. <td align="center" valign="top">Yes</td>
  47. </tr>
  48. <tr>
  49. <td valign="top">passfile</td>
  50. <td valign="top">Password file to add the entry to.</td>
  51. <td align="center" valign="top">No, default is <code>~/.cvspass</code>.</td>
  52. </tr>
  53. </table>
  54. <h3>Examples</h3>
  55. <pre> &lt;cvspass cvsroot=&quot;:pserver:anoncvs@cvs.apache.org:/home/cvspublic&quot;
  56. password=&quot;anoncvs&quot;
  57. /&gt;</pre>
  58. <p>Adds an entry into the ~/.cvspass password file.</p>
  59. </body>
  60. </html>