Bug 94296

Summary: [PATCH] cvsweb.sgml <a name="..."></a> fixes
Product: Documentation Reporter: Rudolf Čejka <cejkar>
Component: Books & ArticlesAssignee: Remko Lodder <remko>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   

Description Rudolf Čejka 2006-03-10 10:10:00 UTC
 
 The current web design needs to have all
   <hX><a name="...">references</a></hX>
 in the following style:
   <a name="..."></a>
   <hX>references</hX>
 so this title does not look as a false non-functional link. The other
 benefit is that there is fine upper space at the top of page after
 referencing to this link. www/en/projects/projects.sgml already
 follows this style, but cvsweb.sgml (and I'm afraid that it is not
 only one) has been forgotten. Here is the patch:
 
 --- cvsweb.sgml.orig	Fri Mar 10 10:58:06 2006
 +++ cvsweb.sgml	Fri Mar 10 10:59:12 2006
 @@ -19,7 +19,8 @@
  	<li><a href="#resources">Resources</a></li>
        </ul>
        
 -    <h2><a name="about">What is CVSweb?</a></h2>
 +    <a name="about"></a>
 +    <h2>What is CVSweb?</h2>
  
      <p>CVSweb is a WWW interface for CVS repositories with which you
      can browse a file hierarchy on your browser to view each file's
 @@ -48,7 +49,8 @@
  
      <hr>
  
 -    <h2><a name="downloads">Downloads</a></h2>
 +    <a name="downloads"></a>
 +    <h2>Downloads</h2>
  
      <p>Download the tarball from the following sites.  The latest
      stable release is <strong>3.0.6</strong> (released 2005-09-25), see
 @@ -86,7 +88,8 @@
  
      <hr>
  
 -    <h2><a name="resources">Resources</a></h2>
 +    <a name="resources"></a>
 +    <h2>Resources</h2>
  
        <dl>
  	<dt>Project mailing list:</dt>
Comment 1 Remko Lodder freebsd_committer freebsd_triage 2006-03-11 14:11:18 UTC
State Changed
From-To: open->closed

Committed, thanks for the contribution! 


Comment 2 Remko Lodder freebsd_committer freebsd_triage 2006-03-11 14:11:18 UTC
Responsible Changed
From-To: freebsd-www->remko

I touched it last, make it mine.