source: trunk/editDisplay.html@ 4

Last change on this file since 4 was 4, checked in by Kris Deugau, 20 years ago

Import "new" IPDB development:

March 2004 through end of August 2004

Changes include:

-> Entirely new method of allocating IP space; which should

hopefully reduce the amount of messiness in allocations.

-> IP address processing provided by NetAddr::IP rather than

homebrew code

-> Change DB to PostgreSQL to eliminate some of the problems

caused by using MySQL, and to gain native RDBMS support for
IP addresses.

-> Using NetAddr::IP and Postgres allows (eventually, with

PG >= 7.4) IPV6 without any code changes. In theory.

-> Logging so that if someone makes a change that turns out

to have been wrong for some reason, Blame Can Be Assigned.

-> General code cleanups (split IPDB.pm from CommonWeb.pm,

for instance)

File size: 1.6 KB
Line 
1<div class="heading"><div class="indent">Edit the information below</div></div>
2
3<table class="indent" size="33%" cellspacing=1 bgcolor="black">
4<form method="POST" action="main.cgi">
5<input type="hidden" name="action" value="update">
6<input type="hidden" name="block" value="$$BLOCK$$">
7
8<tr class="color1"><td class=heading>IP block:</td><td colspan=2 class="regular">$$BLOCK$$</td></tr>
9
10<tr class="color2"><td class=heading>City:</td><td colspan=2 class="regular">$$CITY$$<input type=hidden name=city value="$$CITY$$"></td></tr>
11
12<tr class="color1"><td class=heading>Type:</td><td colspan=2 class=regular>$$FULLTYPE$$
13<input type=hidden name=alloctype value="$$TYPE$$"></td></tr>
14
15<tr class="color2"><td class=heading>CustID:</td><td colspan=2 class="regular">
16<input type=text name=custid value="$$CUSTID$$" maxlength=15 class="regular"></td></tr>
17
18<tr class="color1"><td class="heading">Description/Name:</td><td colspan=2 class="regular">
19<input type="text" name="desc" value="$$DESC$$" maxlength=64 size=64 class="regular"></td></tr>
20
21<tr class="color2"><td class="heading" valign="top">Notes:</td><td class="regular">
22<textarea rows="8" cols="64" name="notes" class="regular">$$NOTES$$</textarea></td></tr>
23
24<tr class="color1"><td colspan=2 class=regular><div class="center">
25<input type="submit" value=" Update this block " class="regular">
26</div></td></tr></form>
27<form method="POST" action="main.cgi">
28<tr class=color2><td colspan=2 class="regular"><div class=center>
29<input type="hidden" name="action" value="delete">
30<input type="hidden" name="block" value="$$BLOCK$$">
31<input type=submit value=" Delete this block ">
32</div></td></tr>
33</form>
34
35</table>
36</br>
Note: See TracBrowser for help on using the repository browser.