Send Netdot-devel mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://osl.uoregon.edu/mailman/listinfo/netdot-devel
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Netdot-devel digest..."
Today's Topics:
1. [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.4-76-gcd4e6c7 ([email protected])
----------------------------------------------------------------------
Message: 1
Date: Tue, 28 May 2013 18:19:02 -0700
From: [email protected]
Subject: [Netdot-devel] [SCM] Netdot branch netdot-1.0 updated.
netdot-1.0.4-76-gcd4e6c7
To: [email protected]
Message-ID: <[email protected]>
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Netdot".
The branch, netdot-1.0 has been updated
via cd4e6c76446830c3479b78e9521788f8e560f071 (commit)
from aa53227d6bcdc4a34208d6dedd2d90163a0e82bb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit cd4e6c76446830c3479b78e9521788f8e560f071
Author: Carlos Vicente <[email protected]>
Date: Tue May 28 21:18:41 2013 -0400
Sort list of switch ports in mac.html page
diff --git a/htdocs/management/mac.html b/htdocs/management/mac.html
index e3162ad..35b0b06 100644
--- a/htdocs/management/mac.html
+++ b/htdocs/management/mac.html
@@ -207,7 +207,7 @@ if ( $o ){
push @{$tstamps{$tstamp}}, $lnk;
}
foreach my $tstamp ( reverse sort keys %tstamps ){
- push @rows, [$tstamp, join ', ', @{$tstamps{$tstamp}}];
+ push @rows, [$tstamp, join ', ', sort @{$tstamps{$tstamp}}];
}
</%perl>
<!-- Display FWT -->
@@ -240,7 +240,7 @@ if ( $o ){
foreach my $ipid ( keys %{$tstamps{$tstamp}} ){
my $iplbl = Ipblock->retrieve($ipid)->get_label;
my $iplnk = "<a
href=\"../management/ip.html?id=$ipid\">$iplbl</a>";
- push @rows, [$tstamp, $iplnk, (join ', ',
@{$tstamps{$tstamp}{$ipid}})];
+ push @rows, [$tstamp, $iplnk, (join ', ', sort
@{$tstamps{$tstamp}{$ipid}})];
}
}
-----------------------------------------------------------------------
Summary of changes:
htdocs/management/mac.html | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Netdot
------------------------------
_______________________________________________
Netdot-devel mailing list
[email protected]
https://osl.uoregon.edu/mailman/listinfo/netdot-devel
End of Netdot-devel Digest, Vol 74, Issue 13
********************************************