mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
* Reduce memory use significantly. The "last position of all stations" cache was unnecessarily holding a copy of the last packet from each station, eating 248 bytes per station (or more, if it was a long packet). It wasn't used for anything, so I removed the packet data from the structure, and it now uses 56 bytes per station. From about 13 megabytes to about 3 megabytes on a normal day. PR: ports/253296 Submitted by: freebsd-ports@dan.me.uk Reviewed by: portmgr Approved by: Maintainer
12 lines
501 B
HTML
12 lines
501 B
HTML
--- web/index.html.orig 2018-06-01 09:25:08 UTC
|
|
+++ web/index.html
|
|
@@ -284,8 +284,7 @@
|
|
{{ sel_c.cert_issuer }}
|
|
</p>
|
|
</script>
|
|
-
|
|
-<script type='text/JavaScript' src='jquery.min.js'></script>
|
|
+<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
|
|
<script type='text/JavaScript' src='jquery.flot.min.js'></script>
|
|
<script type='text/JavaScript' src='jquery.flot.time.min.js'></script>
|
|
<script type='text/JavaScript' src='jquery.flot.selection.min.js'></script>
|