Diff for /libwww/Robot/src/HTRobot.c between versions 1.86 and 1.87

version 1.86, 1999/03/05 20:03:03 version 1.87, 1999/03/07 17:17:19
Line 666  set_error_state_hyperdoc(HyperDoc * hd, Line 666  set_error_state_hyperdoc(HyperDoc * hd,
     }      }
 }  }
   
   #if 0
 PRIVATE int  PRIVATE int
 test_for_blank_spaces(char *uri)  test_for_blank_spaces(char *uri)
 {  {
Line 676  test_for_blank_spaces(char *uri) Line 676  test_for_blank_spaces(char *uri)
       return 1;        return 1;
   return 0;    return 0;
 }  }
   #endif
   
 /*      Create a Command Line Object  /*      Create a Command Line Object
 **      ----------------------------  **      ----------------------------
Line 1240  PRIVATE void RHText_foundAnchor (HText * Line 1240  PRIVATE void RHText_foundAnchor (HText *
   
         match = check_constraints(mr,mr->prefix, uri);          match = check_constraints(mr,mr->prefix, uri);
   
   #ifdef HT_POSIX_REGEX
           /* See if we should do a HEAD or a GET on this URI */
           if (match && mr->check) {
               check = regexec(mr->check, uri, 0, NULL, 0) ? NO : YES;
           }
   #endif
   
   #if 0
           /* This is already checked in HTParse.c */
         if(uri && test_for_blank_spaces(uri))          if(uri && test_for_blank_spaces(uri))
           follow = NO;            follow = NO;
         else if (mr->ndoc == 0) /* Number of Documents is reached */          else
   #endif
           if (mr->ndoc == 0) /* Number of Documents is reached */
           follow = NO;            follow = NO;
   
         /* Test whether we already have a hyperdoc for this document */          /* Test whether we already have a hyperdoc for this document */

Removed from v.1.86  
changed lines
  Added in v.1.87


Webmaster