test-modify.c
上传用户:seven77cht
上传日期:2007-01-04
资源大小:486k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /***************************************
  2.   $Header$
  3.   HTML modification test program
  4.   ******************/ /******************
  5.   Written by Andrew M. Bishop
  6.   This file Copyright 2000 Andrew M. Bishop
  7.   It may be distributed under the GNU Public License, version 2, or
  8.   any higher version.  See section COPYING of the GNU Public license
  9.   for conditions under which this file may be redistributed.
  10.   ***************************************/
  11. #include <stdio.h>
  12. #include "wwwoffle.h"
  13. #include "config.h"
  14. #include "document.h"
  15. #include "misc.h"
  16. int main(int argc,char **argv)
  17. {
  18.  URL *Url;
  19.  AddCacheInfo=0;
  20.  AnchorModifyBegin[0]="<font color="#00B000">";
  21.  AnchorModifyBegin[1]="<font color="#B0B000">";
  22.  AnchorModifyBegin[2]="<font color="#B00000">";
  23.  AnchorModifyEnd[0]="</font>";
  24.  AnchorModifyEnd[1]="</font>";
  25.  AnchorModifyEnd[2]="</font>";
  26.  DisableHTMLScript=1;
  27.  DisableHTMLBlink=1;
  28.  if(argc==1)
  29.    {fprintf(stderr,"usage: test-modify <URL>n");return(1);}
  30.  Url=SplitURL(argv[1]);
  31.  init_buffer(0);
  32.  OutputHTMLWithModifications(1,0,Url);
  33.  FreeURL(Url);
  34.  return(0);
  35. }