Changeset 319 for branches/stable


Ignore:
Timestamp:
04/03/06 16:31:11 (18 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Cosmetic fixups.
admin.cgi:

  • Added links to freespace.pl and consistency-check.pl from admin tools
  • Added note on user management noting global general read access

freespace.pl:

  • Added headings to output sections for clarity

All changed files:

  • Updated copyright lines
Location:
branches/stable/cgi-bin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/IPDB.pm

    r304 r319  
    77# Last update by $Author$
    88###
    9 # Copyright (C) 2004,2005 - Kris Deugau
     9# Copyright (C) 2004-2006 - Kris Deugau
    1010
    1111package IPDB;
  • branches/stable/cgi-bin/MyIPDB.pm

    r291 r319  
    88# Last update by $Author$
    99###
    10 # Copyright (C) 2004,2005 - Kris Deugau
     10# Copyright (C) 2004-2006 - Kris Deugau
    1111
    1212use IPDB 2.0 qw(:ALL);
  • branches/stable/cgi-bin/admin.cgi

    r294 r319  
    1010# Last update by $Author$
    1111###
    12 # Copyright (C) 2004,2005 - Kris Deugau
     12# Copyright (C) 2004-2006 - Kris Deugau
    1313
    1414use strict;
     
    9393<hr><a href="admin.cgi?action=showusers">Manage users</a> (add/remove users;  change
    9494internal access controls - note that this does NOT include IP-based limits)
     95<hr>Consistency check tools<br>
     96<a href="consistency-check.pl">General</a>:  Check general netblock consistency.<br>
     97<a href="freespace.pl">Free space</a>:  List total and aggregate free space.  Does not
     98include private networks (192.168.0.0/16, 172.16.0.0/12, 10.0.0.0/8)
    9599);
    96100} else {
     
    311315  print "Notes:<br>\n".
    312316        "<li>Admin users automatically get all other priviledges.\n".
     317        "<li>Everyone has basic read access.\n".
    313318        "<hr>Add new user:<form action=admin.cgi method=POST>\n".
    314319        "Username: <input name=username><br>\n".
  • branches/stable/cgi-bin/checkcusts.pl

    r318 r319  
    77# Last update by $Author$
    88###
    9 # Copyright (C) 2004,2005 Kris Deugau <kdeugau@vianet.ca>
     9# Copyright (C) 2004-2006 Kris Deugau
    1010
    1111use DBI;
  • branches/stable/cgi-bin/freespace.pl

    r317 r319  
    88# Last update by $Author$
    99###
    10 # Copyright (C) 2004,2005 - Kris Deugau
     10# Copyright (C) 2004-2006 - Kris Deugau
    1111
    1212use DBI;
     
    3838}
    3939
     40print "Free block counts:\n";
    4041foreach $size (sort {$a cmp $b} keys %numfree) {
    4142  print "/$size: $numfree{$size}\n";
     
    4950}
    5051
     52print "Aggregate free space:\n";
    5153foreach $size (sort {$a cmp $b} keys %numfree) {
    5254  print "/$size: $numfree{$size}\n";
  • branches/stable/cgi-bin/search.cgi

    r318 r319  
    99# Last update by $Author$
    1010###
    11 # Copyright 2005 Kris Deugau <kdeugau@deepnet.cx>
     11# Copyright 2005,2006 Kris Deugau
    1212
    1313use strict;             
Note: See TracChangeset for help on using the changeset viewer.