[Python-checkins] CVS: python/nondist/sf-html sf-faq.html,1.2,1.3

Peter Schneider-Kamp python-dev@python.org
Mon, 17 Jul 2000 10:42:29 -0700


Update of /cvsroot/python/python/nondist/sf-html
In directory slayer.i.sourceforge.net:/tmp/cvs-serv30592

Modified Files:
	sf-faq.html 
Log Message:

added question about removing directories
added developer <-> real name mapping
(Should this go on the web page?)



Index: sf-faq.html
===================================================================
RCS file: /cvsroot/python/python/nondist/sf-html/sf-faq.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** sf-faq.html	2000/07/14 20:03:31	1.2
--- sf-faq.html	2000/07/17 17:42:26	1.3
***************
*** 23,26 ****
--- 23,27 ----
    <li><a href="#g3">How can I change the pages at
    python.sourceforge.net?</a></li>
+   <li><a href="#g4">Who is who? What is a nowonder?</a></li>
  </ol>
  
***************
*** 31,34 ****
--- 32,36 ----
    <li><a href="#c3">Troubleshooting: "Permission Denied"</a></li>
    <li><a href="#c4">Where can I learn more about CVS?</a></li>
+   <li><a href="#c5">How can I remove a directory from the CVS tree?</a></li>
  </ol>
  
***************
*** 92,95 ****
--- 94,203 ----
    <tt>vi changeme.html</tt></blockquote>
  
+ <h3><a name="g4" id="g4"></a>1.4.:</h3>
+ 
+ <h4>Q: Who is who? What is a nowonder?</h4>
+ 
+ <h4>A:</h4>
+ To get the real name, click on <tt>"View members"</tt> in the <tt>"Developer
+ Info"</tt> field, then click on the user name you're unsure about.<br />
+ A recent [17.07.2000] list of mapping is given here:
+ 
+ <table>
+   <tbody>
+     <tr>
+       <td>akuchling</td>
+       <td>A.M. Kuchling</td>
+     </tr>
+     <tr>
+       <td>bwarsaw</td>
+       <td>Barry Warsaw</td>
+     </tr>
+     <tr>
+       <td>david_ascher</td>
+       <td>David Ascher</td>
+     </tr>
+     <tr>
+       <td>effbot</td>
+       <td>Fredrik Lundh</td>
+     </tr>
+     <tr>
+       <td>esr</td>
+       <td>Eric S. Raymond</td>
+     </tr>
+     <tr>
+       <td>fdrake</td>
+       <td>Fred L. Drake, Jr.</td>
+     </tr>
+     <tr>
+       <td>gstein</td>
+       <td>Greg Stein</td>
+     </tr>
+     <tr>
+       <td>gvanrossum</td>
+       <td>Guido van Rossum</td>
+     </tr>
+     <tr>
+       <td>gward</td>
+       <td>Greg Ward</td>
+     </tr>
+     <tr>
+       <td>jackjansen</td>
+       <td>Jack Jansen</td>
+     </tr>
+     <tr>
+       <td>jhylton</td>
+       <td>Jeremy Hylton</td>
+     </tr>
+     <tr>
+       <td>larsga</td>
+       <td>Lars Marius Garshol</td>
+     </tr>
+     <tr>
+       <td>lemburg</td>
+       <td>M.-A. Lemburg</td>
+     </tr>
+     <tr>
+       <td>marangoz</td>
+       <td>Vladimir Marangozov</td>
+     </tr>
+     <tr>
+       <td>mhammond</td>
+       <td>Mark Hammond</td>
+     </tr>
+     <tr>
+       <td>montanaro</td>
+       <td>Skip Montanaro</td>
+     </tr>
+     <tr>
+       <td>moshez</td>
+       <td>Moshe Zadka</td>
+     </tr>
+     <tr>
+       <td>nowonder</td>
+       <td>Peter Schneider-Kamp</td>
+     </tr>
+     <tr>
+       <td>prescod</td>
+       <td>Paul Prescod</td>
+     </tr>
+     <tr>
+       <td>sjoerd</td>
+       <td>Sjoerd Mullender</td>
+     </tr>
+     <tr>
+       <td>tim_one</td>
+       <td>Tim Bot</td>
+     </tr>
+     <tr>
+       <td>tmick</td>
+       <td>Trent Mick</td>
+     </tr>
+     <tr>
+       <td>twouters</td>
+       <td>Thomas Wouters</td>
+     </tr>
+   </tbody>
+ </table>
+ 
  <h1><a name="cvs" id="cvs"></a>2. CVS</h1>
  
***************
*** 168,171 ****
--- 276,296 ----
    <tt><a
    href="http://cvsbook.red-bean.com/cvsbook.html#Introduction">http://cvsbook.red-bean.com/cvsbook.html#Introduction</a></tt></blockquote>
+ 
+ <h3><a name="c5" id="c5"></a>2.5.:</h3>
+ 
+ <h4>Q: How can I remove a directory from the CVS tree?</h4>
+ 
+ <h4>A:</h4>
+ Simple answer: You cannot!<br />
+ More complicated answer: Remove all files from the directory, delete the
+ directory, use the -P (prune) option of the update command:
+ 
+ <blockquote>
+   <tt>cd the_directory</tt><br />
+   <tt>rm file1 file2 file3</tt><br />
+   <tt>cvs remove file1 file2 file3</tt><br />
+   <tt>cvs ci -m "removed all files" file1 file2 file3</tt><br />
+   <tt>cd ..</tt><br />
+   <tt>cvs update -P</tt></blockquote>
  
  <h1><a name="patches" id="patches"></a>3. Patches</h1>