You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.org> on 1997/07/19 11:48:06 UTC

cvs commit: apache/src CHANGES mod_imap.c

dgaudet     97/07/19 02:48:06

  Modified:    src       CHANGES mod_imap.c
  Log:
  PR#807: Support frontpage image map syntax.
  
  Submitted by:	"Chris O'Byrne" <ob...@iol.ie>
  Reviewed by:	Dean Gaudet
  
  Revision  Changes    Path
  1.349     +4 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.348
  retrieving revision 1.349
  diff -C3 -r1.348 -r1.349
  *** CHANGES	1997/07/19 09:34:32	1.348
  --- CHANGES	1997/07/19 09:48:03	1.349
  ***************
  *** 1,4 ****
  --- 1,8 ----
    Changes with Apache 1.3
  + 
  +   *) Support the image map format of FrontPage.  For example:
  + 	rect /url.hrm 10 20 30 40
  +      ["Chris O'Byrne" <ob...@iol.ie>] PR#807
      
      *) PORT: -lresolv and -lsocks were in the wrong order for Solaris.
         ["Darren O'Shaughnessy" <da...@aaii.oz.au>] PR#846
  
  
  
  1.25      +1 -1      apache/src/mod_imap.c
  
  Index: mod_imap.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_imap.c,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -C3 -r1.24 -r1.25
  *** mod_imap.c	1997/07/17 22:27:36	1.24
  --- mod_imap.c	1997/07/19 09:48:04	1.25
  ***************
  *** 712,718 ****
    
        vertex = 0;
        while ( vertex < MAXVERTS &&  
  !      sscanf(string_pos, "%lf, %lf",
         &pointarray[vertex][X], &pointarray[vertex][Y])   == 2)
        {
    	/* Now skip what we just read... we can't use ANSIism %n */
  --- 712,718 ----
    
        vertex = 0;
        while ( vertex < MAXVERTS &&  
  !      sscanf(string_pos, "%lf%*[, ]%lf",
         &pointarray[vertex][X], &pointarray[vertex][Y])   == 2)
        {
    	/* Now skip what we just read... we can't use ANSIism %n */