- Timestamp:
- 09/27/11 13:41:43 (13 years ago)
- Location:
- branches/htmlform
- Files:
-
- 1 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/htmlform/Makefile
r501 r505 41 41 cgi-bin/main.cgi cgi-bin/checkcusts.pl cgi-bin/newcity.cgi \ 42 42 cgi-bin/allocate.pl cgi-bin/search.cgi \ 43 cgi-bin/snCalc.cgi cgi-bin/ CommonWeb.pm cgi-bin/ipdb.psql \43 cgi-bin/snCalc.cgi cgi-bin/ipdb.psql \ 44 44 cgi-bin/consistency-check.pl \ 45 45 \ -
branches/htmlform/cgi-bin/admin.cgi
r491 r505 18 18 use HTML::Template; 19 19 use DBI; 20 use CommonWeb qw(:ALL);21 20 use CustIDCK; 22 21 #use POSIX qw(ceil); -
branches/htmlform/cgi-bin/allocate.pl
r490 r505 11 11 use warnings; 12 12 use DBI; 13 use CommonWeb qw(:ALL);14 13 use NetAddr::IP; 15 14 -
branches/htmlform/cgi-bin/combineblocks.pl
r417 r505 13 13 #use CGI::Carp qw(fatalsToBrowser); 14 14 use DBI; 15 #use CommonWeb qw(:ALL);16 15 #use POSIX qw(ceil); 17 16 use NetAddr::IP; -
branches/htmlform/cgi-bin/main.cgi
r504 r505 15 15 use HTML::Template; 16 16 use DBI; 17 use CommonWeb qw(:ALL);18 17 use CustIDCK; 19 18 use POSIX qw(ceil); … … 1084 1083 if ($@) { 1085 1084 my $msg = $@; 1086 carp "Transaction aborted because $msg";1087 1085 eval { $ip_dbh->rollback; }; 1088 1086 syslog "err", "$authuser could not update block/IP '$webvar{block}': '$msg'"; 1089 printError("Could not update block/IP $webvar{block}: $msg");1087 $page->param(err => "Could not update block/IP $webvar{block}: $msg"); 1090 1088 return; 1091 1089 } -
branches/htmlform/cgi-bin/newcity.cgi
r459 r505 16 16 use HTML::Template; 17 17 use DBI; 18 #use CommonWeb qw(:ALL);19 18 #use POSIX qw(ceil); 20 19 use NetAddr::IP; -
branches/htmlform/cgi-bin/newnode.cgi
r460 r505 16 16 use HTML::Template; 17 17 use DBI; 18 #use CommonWeb qw(:ALL);19 18 #use POSIX qw(ceil); 20 19 use NetAddr::IP; -
branches/htmlform/cgi-bin/search.cgi
r502 r505 17 17 use HTML::Template; 18 18 use DBI; 19 use CommonWeb qw(:ALL);20 19 use POSIX qw(ceil); 21 20 use NetAddr::IP; -
branches/htmlform/cgi-bin/snCalc.cgi
r499 r505 7 7 use HTML::Template; 8 8 use NetAddr::IP; 9 use CommonWeb qw(:ALL);;10 9 11 10 #file snCalc.cgi little subnet calculator app -
branches/htmlform/templates/update.tmpl
r476 r505 1 <TMPL_IF err> 2 <div class="regular err"> 3 <p><TMPL_VAR NAME=err></p> 4 <input type="button" value="Back" onclick="history.go(-1)"> 5 </div> 6 <TMPL_ELSE> 1 7 <div class="heading">Allocation info updated:</div> 2 8 … … 61 67 <a href="/ip/cgi-bin/main.cgi?action=<TMPL_IF backpool>listpool&pool=<TMPL_ELSE>showrouted&block=</TMPL_IF><TMPL_VAR NAME=backblock>">Back to <TMPL_VAR NAME=backblock></a> 62 68 </div> 69 </TMPL_IF>
Note:
See TracChangeset
for help on using the changeset viewer.