Standardize ASP filenames: remove underscores
Renamed 45 ASP files to follow lowercase concatenated naming convention: - Direct handlers: save_machine_direct.asp -> savemachinedirect.asp - USB files: checkin_usb.asp -> checkinusb.asp - API files: api_usb.asp -> apiusb.asp - Map files: network_map.asp -> networkmap.asp - Printer files: printer_lookup.asp -> printerlookup.asp Also: - Updated 84+ internal references across all ASP and JS files - Deleted 6 test/duplicate files (editmacine.asp, test_*.asp) - Updated production migration guide with filename changes - Added rename scripts for Linux (bash) and Windows (PowerShell)
This commit is contained in:
@@ -66,10 +66,10 @@
|
||||
<i class="zmdi zmdi-time"></i> Checked Out
|
||||
</a>
|
||||
<% End If %>
|
||||
<a href="./checkout_usb.asp" class="btn btn-primary btn-sm">
|
||||
<a href="./checkoutusb.asp" class="btn btn-primary btn-sm">
|
||||
<i class="zmdi zmdi-arrow-right"></i> Checkout
|
||||
</a>
|
||||
<a href="./checkin_usb.asp" class="btn btn-secondary btn-sm">
|
||||
<a href="./checkinusb.asp" class="btn btn-secondary btn-sm">
|
||||
<i class="zmdi zmdi-arrow-left"></i> Check-in
|
||||
</a>
|
||||
<a href="./addusb.asp" class="btn btn-success btn-sm">
|
||||
@@ -165,15 +165,15 @@
|
||||
<td><%=Server.HTMLEncode(checkoutTime)%></td>
|
||||
<td>
|
||||
<% If IsNull(checkoutId) Then %>
|
||||
<a href="./checkout_usb.asp?serial=<%=Server.URLEncode(serialNum)%>" class="btn btn-sm btn-primary" title="Checkout this USB">
|
||||
<a href="./checkoutusb.asp?serial=<%=Server.URLEncode(serialNum)%>" class="btn btn-sm btn-primary" title="Checkout this USB">
|
||||
<i class="zmdi zmdi-arrow-right"></i>
|
||||
</a>
|
||||
<% Else %>
|
||||
<a href="./checkin_usb.asp?serial=<%=Server.URLEncode(serialNum)%>" class="btn btn-sm btn-success" title="Check-in this USB">
|
||||
<a href="./checkinusb.asp?serial=<%=Server.URLEncode(serialNum)%>" class="btn btn-sm btn-success" title="Check-in this USB">
|
||||
<i class="zmdi zmdi-arrow-left"></i>
|
||||
</a>
|
||||
<% End If %>
|
||||
<a href="./usb_history.asp?machineid=<%=machineId%>" class="btn btn-sm btn-secondary" title="View history">
|
||||
<a href="./usbhistory.asp?machineid=<%=machineId%>" class="btn btn-sm btn-secondary" title="View history">
|
||||
<i class="zmdi zmdi-time"></i>
|
||||
</a>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user