Changeset 4088


Ignore:
Timestamp:
2003-04-03T15:15:36+12:00 (21 years ago)
Author:
dana
Message:

obfuscation code for IP addrs in report ID number added

Location:
trunk/gsdl/cgi-bin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/cgi-bin/gsdlsite.cfg

    r2115 r4088  
    33
    44# points to the GSDLHOME directory
    5 gsdlhome    **GSDLHOME**
     5gsdlhome    /nzdl/public_html/dana/gsdl
    66
    77# this is the http address of GSDLHOME
    88# if your webservers DocumentRoot is set to $GSDLHOME
    99# then httpprefix can remain commented out
    10 #httpprefix  /gsdl
     10httpprefix  http://nzdl2.cs.waikato.ac.nz/dana/gsdl
    1111
    1212# this is the http address of the directory which
     
    1414# if your webservers DocumentRoot is set to $GSDLHOME
    1515# then httpimg will be /images
    16 httpimg     /images
     16httpimg     http://nzdl2.cs.waikato.ac.nz/dana/gsdl/images
    1717
    1818# should contain the http address of this cgi script. This
     
    2626# to a high figure (like 10000) when everything is
    2727# working well.
    28 maxrequests 10000
     28maxrequests 1
  • trunk/gsdl/cgi-bin/perl.cgi

    r4085 r4088  
    1010$idno=$ENV{REMOTE_ADDR};
    1111$idno =~ s/\.//g;
     12$idno =~ tr/0123456789/1357902468/;
    1213$idno .= time;
    1314
  • trunk/gsdl/cgi-bin/usabcgi.pm

    r4084 r4088  
    4040    print "<style type=\"text/css\">\n";
    4141    print "\th1 {font-family: sans-serif; font-size: 20px}\n";
    42     print "\th2 {font-fanily: sans-serif; font-size: 14px; font-weight: bold; color: #009966}\n";
     42    print "\th2 {font-family: sans-serif; font-size: 14px; font-weight: bold; color: #009966}\n";
    4343    print "\tp.sans {font-family: sans-serif}\n";
    4444    print "\ttd.sans {font-family: sans-serif; vertical-align:top}\n";
Note: See TracChangeset for help on using the changeset viewer.