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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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";
Note: See TracChangeset for help on using the changeset viewer.