Changeset 438 for trunk/cgi-bin
- Timestamp:
- 07/20/10 12:05:09 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/admin.cgi
r436 r438 548 548 <td>Recipients</td><td colspan=3><textarea name=reciplist cols=50 rows=5></textarea></td></tr> 549 549 <tr><td>Action</td><td> 550 <input type=radio name=msgaction value=a>Add 551 <input type=radio name=msgaction value=u>Update 552 <input type=radio name=msgaction value=d>Delete 553 <input type=radio name=msgaction value=s:>Special: <input name=special>(requires code changes) 550 <table><tr> 551 <td><input type=radio name=msgaction value=a>Add 552 <input type=radio name=msgaction value=u>Update 553 <input type=radio name=msgaction value=d>Delete 554 <input type=radio name=msgaction value=n>New listitem</td> 555 </tr><tr> 556 <td> 557 <input type=radio name=msgaction value=s:>Special: <input name=special>(requires code changes) 558 </td></tr></table> 554 559 </td> 555 560 <td>Failure?</td><td><input type=checkbox name=onfail></td></tr> 556 <tr><td> Allocation type:</td><td colspan=3>561 <tr><td>Event/Allocation type:</td><td colspan=3> 557 562 <table> 558 563 <tr> 559 564 <td><input type=radio name=alloctype value=a>All allocations</td> 560 565 <td><input type=radio name=alloctype value=.i>All static IPs</td> 566 <td><input type=radio name=alloctype value=ci>New city</td> 567 <td><input type=radio name=alloctype value=no>New node</td> 561 568 </tr> 562 569 <tr> … … 587 594 if ($webvar{msgaction} && $webvar{alloctype} && $webvar{reciplist}) { 588 595 $webvar{reciplist} =~ s/[\r\n]+/,/g; 596 $webvar{msgaction} = "f:$webvar{msgaction}" if $webvar{onfail}; 589 597 print "Adding notice to $webvar{reciplist} for ".dispNoticeCode($webvar{msgaction}.$webvar{alloctype}).":\n"; 590 598 $sth = $ip_dbh->prepare("INSERT INTO notify (action, reciplist) VALUES (?,?)"); 591 599 ##fixme: automagically merge reciplists iff action already exists 592 $webvar{msgaction} = "f:$webvar{msgaction}" if $webvar{onfail};593 600 $sth->execute($webvar{msgaction}.$webvar{alloctype}, $webvar{reciplist}); 594 601 if ($sth->err) { … … 816 823 # this should give an idea of the structure tho 817 824 if ($target eq 'a') { $action_out .= "all"; } 818 elsif ($target =~ /^\.i$/) {825 elsif ($target eq '.i') { 819 826 $action_out .= "all static IPs"; 820 827 }
Note:
See TracChangeset
for help on using the changeset viewer.