|
|
@ -18,12 +18,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
|
|
|
|
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
|
|
|
|
"ip-address-pre": function ( a ) {
|
|
|
|
"ip-address-pre": function ( a ) {
|
|
|
|
if (!a) { return 0 }
|
|
|
|
|
|
|
|
var i, item;
|
|
|
|
var i, item;
|
|
|
|
var m = a.split("."),
|
|
|
|
var m, n;
|
|
|
|
n = a.split(":"),
|
|
|
|
var x, xa;
|
|
|
|
x = "",
|
|
|
|
|
|
|
|
xa = "";
|
|
|
|
if (!a) {
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a = a.replace(/<[\s\S]*?>/g, "");
|
|
|
|
|
|
|
|
m = a.split(".");
|
|
|
|
|
|
|
|
n = a.split(":");
|
|
|
|
|
|
|
|
x = "";
|
|
|
|
|
|
|
|
xa = "";
|
|
|
|
|
|
|
|
|
|
|
|
if (m.length == 4) {
|
|
|
|
if (m.length == 4) {
|
|
|
|
// IPV4
|
|
|
|
// IPV4
|
|
|
|