Ticket Change Details
Not logged in
Overview

Artifact ID: 4a23a0cd4fe6630239b786deaf2ad677046e1731
Ticket: 675aaa3458199c8832c6879b43325ffb2fd62e75
fossil says valid html element is invalid
User & Date: renez 2010-09-22 07:50:35
Changes

  1. comment changed to:
    <hr/> is a valid xhtml element. Fossil says it is not.
    However <hr /> and <hr id='hrid'/> are considered valid.
    
    The problem is in wikiformat.c:markupLength in the line
    
      while( isalnum(z[n]) ){ n++; }
    
    ==>  if( (c = z[n])!='>' && !isspace(c) ) return 0;
    
      while( (c = z[n])!=0 && (c!='>' || inparen) ){
    
  2. foundin changed to: "3243e63bba"
  3. private_contact changed to: "735ae1c8a572d669bafab35cf8b1f5116c325c86"
  4. severity changed to: "Important"
  5. status changed to: "Open"
  6. title changed to: "fossil says valid html element is invalid"
  7. type changed to: "Code_Defect"