svn commit: r355996 - in head/net-mgmt/nedi: . files

Olli Hauer ohauer at FreeBSD.org
Sat May 31 17:29:04 UTC 2014


Author: ohauer
Date: Sat May 31 17:29:02 2014
New Revision: 355996
URL: http://svnweb.freebsd.org/changeset/ports/355996
QAT: https://qat.redports.org/buildarchive/r355996/

Log:
  - add stage support
  - use shebangfix
  - use WWWDIR instead ${PREFIX}/www/nedi
  - remove LATEST_LINK
  - bump PORTREVISION

Modified:
  head/net-mgmt/nedi/Makefile
  head/net-mgmt/nedi/files/pkg-message.in
  head/net-mgmt/nedi/pkg-descr
  head/net-mgmt/nedi/pkg-plist

Modified: head/net-mgmt/nedi/Makefile
==============================================================================
--- head/net-mgmt/nedi/Makefile	Sat May 31 16:37:58 2014	(r355995)
+++ head/net-mgmt/nedi/Makefile	Sat May 31 17:29:02 2014	(r355996)
@@ -3,10 +3,9 @@
 
 PORTNAME=	nedi
 DISTVERSION=	1.0.w
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net-mgmt
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/w
-EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Network Discovery and Monitoring tool
@@ -17,42 +16,34 @@ RUN_DEPENDS=	p5-Net-SNMP>=0:${PORTSDIR}/
 		p5-DBI>=0:${PORTSDIR}/databases/p5-DBI
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
-USES=		perl5
+USES=		tar:tgz perl5 shebangfix
+SHEBANG_FILES= *.pl
 NO_BUILD=	yes
 
-OPTIONS_DEFINE=	GD
-GD_DESC=	Use GD
+USE_PHP=	session snmp mysql
+WANT_PHP_WEB=	yes
 
-LATEST_LINK=	${PORTNAME}${PKGNAMESUFFIX}
+OPTIONS_DEFINE=	GD
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
-USE_PHP=	session snmp mysql
-WANT_PHP_WEB=	yes
-
 .if ${PORT_OPTIONS:MGD}
 USE_PHP+=	gd
 .endif
 
-NEDIDIR=	${PREFIX}/www/nedi
-
 SUB_FILES=	pkg-message
-SUB_LIST=	NEDIDIR=${NEDIDIR}
+PLIST_SUB+=	WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}
 
 post-patch:
-	@${REINPLACE_CMD} -e 's|/var/nedi|${NEDIDIR}|' ${WRKSRC}/html/inc/libgraph.php
+	@${REINPLACE_CMD} -e 's|/var/nedi|${WWWDIR}|' ${WRKSRC}/html/inc/libgraph.php
 	@${REINPLACE_CMD} -e "s|'/etc|'${PREFIX}/etc|" ${WRKSRC}/html/inc/libmisc.php
 	@${FIND} ${WRKSRC} \( -name *.bak -or -name *.orig \) -delete
 
 do-install:
-	@ ${MKDIR} -m 755 ${NEDIDIR}
-	@ ${CP} -r ${WRKSRC}/* ${NEDIDIR}
-	@ ${MV} ${NEDIDIR}/seedlist ${PREFIX}/etc/nedi.seedlist.sample
-	@ ${MV} ${NEDIDIR}/nedi.conf ${PREFIX}/etc/nedi.conf.sample
-	@ ${CHOWN} www ${NEDIDIR}/rrd
-
-post-install:
-	@ ${CAT} ${PKGMESSAGE}
+	@${MKDIR} ${STAGEDIR}${WWWDIR}
+	(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
+	${FIND} ${STAGEDIR}${WWWDIR} -name \*.pl | ${XARGS} ${CHMOD} 755
+	${MV} ${STAGEDIR}${WWWDIR}/seedlist ${STAGEDIR}${PREFIX}/etc/nedi.seedlist.sample
+	${MV} ${STAGEDIR}${WWWDIR}/nedi.conf ${STAGEDIR}${PREFIX}/etc/nedi.conf.sample
 
 .include <bsd.port.mk>

Modified: head/net-mgmt/nedi/files/pkg-message.in
==============================================================================
--- head/net-mgmt/nedi/files/pkg-message.in	Sat May 31 16:37:58 2014	(r355995)
+++ head/net-mgmt/nedi/files/pkg-message.in	Sat May 31 17:29:02 2014	(r355996)
@@ -5,13 +5,13 @@ To make NeDi work, do the following:
    Use the samples contained in that directory.
    
 2. (Optional) Create a directory where you want NeDi to store its
-   RRD files and link it to %%NEDIDIR%%/rrd:
+   RRD files and link it to %%WWWDIR%%/rrd:
 
-   rm -r %%NEDIDIR%%/rrd
+   rm -r %%WWWDIR%%/rrd
    mkdir -p /var/db/nedi/rrd
-   ln -s /var/db/nedi/rrd %%NEDIDIR%%/rrd
+   ln -s /var/db/nedi/rrd %%WWWDIR%%/rrd
    
-2. Change the directory to %%NEDIDIR%%.
+2. Change the directory to %%WWWDIR%%.
 
 3. Initialize the MySQL database. NeDi will do this for you, just type
    ./nedi.pl -i
@@ -21,9 +21,9 @@ To make NeDi work, do the following:
 
 5. Add a crontab entry like this:
 
-0 * * * *	root	%%NEDIDIR%%/nedi.pl -c > /tmp/nedi.lastrun
+0 * * * *	root	%%WWWDIR%%/nedi.pl -c > /tmp/nedi.lastrun
 
 6. Add an alias to Apache like this:
 
-Alias	/nedi	%%NEDIDIR%%/html
+Alias	/nedi	%%WWWDIR%%/html
 

Modified: head/net-mgmt/nedi/pkg-descr
==============================================================================
--- head/net-mgmt/nedi/pkg-descr	Sat May 31 16:37:58 2014	(r355995)
+++ head/net-mgmt/nedi/pkg-descr	Sat May 31 17:29:02 2014	(r355996)
@@ -5,6 +5,4 @@ stores information (such as MACs and IPs
 Later, you can use its web interface to easily locate nodes withing your
 network.
 
-WWW: http://nedi.sourceforge.net
-
-Cristian KLEIN <cristi at net.utcluj.ro>
+WWW: http://www.nedi.ch/

Modified: head/net-mgmt/nedi/pkg-plist
==============================================================================
--- head/net-mgmt/nedi/pkg-plist	Sat May 31 16:37:58 2014	(r355995)
+++ head/net-mgmt/nedi/pkg-plist	Sat May 31 17:29:02 2014	(r355996)
@@ -1,795 +1,797 @@
 etc/nedi.conf.sample
 etc/nedi.seedlist.sample
-www/nedi/inc/oui.txt
-www/nedi/inc/libsnmp.pl
-www/nedi/inc/libmsq.pl
-www/nedi/inc/libmon.pl
-www/nedi/inc/libmisc.pl
-www/nedi/inc/libcli-sshnet.pl
-www/nedi/inc/wlan.txt
-www/nedi/inc/iab.txt
-www/nedi/html/inc/ThemeN/folder.gif
-www/nedi/html/inc/ThemeN/link.gif
-www/nedi/html/inc/ThemeN/arrow.gif
-www/nedi/html/inc/ThemeN/theme.js
-www/nedi/html/inc/ThemeN/theme.css
-www/nedi/html/inc/snmpwalk.php
-www/nedi/html/inc/snmpget.php
-www/nedi/html/inc/libnod.php
-www/nedi/html/inc/libmsq.php
-www/nedi/html/inc/libmon.php
-www/nedi/html/inc/libmisc.php
-www/nedi/html/inc/libgraph.php
-www/nedi/html/inc/libdev.php
-www/nedi/html/inc/lang-ger.php
-www/nedi/html/inc/lang-eng.php
-www/nedi/html/inc/header.php
-www/nedi/html/inc/graph.php
-www/nedi/html/inc/footer.php
-www/nedi/html/inc/drawrrd.php
-www/nedi/html/inc/cal.js
-www/nedi/html/inc/browsedev.php
-www/nedi/html/inc/alarm3old.mp3
-www/nedi/html/inc/alarm3.mp3
-www/nedi/html/inc/alarm2.mp3
-www/nedi/html/inc/alarm1.mp3
-www/nedi/html/inc/JSCookMenu.js
-www/nedi/html/inc/Devsend.pl
-www/nedi/html/inc/style.css
-www/nedi/html/inc/CISCO-PRODUCTS-MIB.oid
-www/nedi/html/img/dev/phrd.png
-www/nedi/html/img/dev/w2gy.png
-www/nedi/html/img/dev/rbdb.png
-www/nedi/html/img/dev/apdb.png
-www/nedi/html/img/dev/adgn.png
-www/nedi/html/img/dev/genh.png
-www/nedi/html/img/dev/w3lg.png
-www/nedi/html/img/dev/rbpu.png
-www/nedi/html/img/dev/bwdb.png
-www/nedi/html/img/dev/adpu.png
-www/nedi/html/img/dev/csog.png
-www/nedi/html/img/dev/rmyw.png
-www/nedi/html/img/dev/genc.png
-www/nedi/html/img/dev/apbl.png
-www/nedi/html/img/dev/gens.png
-www/nedi/html/img/dev/d2db.png
-www/nedi/html/img/dev/vpbl.png
-www/nedi/html/img/dev/v2gn.png
-www/nedi/html/img/dev/rspu.png
-www/nedi/html/img/dev/w3rd.png
-www/nedi/html/img/dev/w2dp.png
-www/nedi/html/img/dev/w2og.png
-www/nedi/html/img/dev/d2bk.png
-www/nedi/html/img/dev/fwbl.png
-www/nedi/html/img/dev/rsog.png
-www/nedi/html/img/dev/rmgn.png
-www/nedi/html/img/dev/csbl.png
-www/nedi/html/img/dev/d2bl.png
-www/nedi/html/img/dev/rbog.png
-www/nedi/html/img/dev/rbrd.png
-www/nedi/html/img/dev/w2bk.png
-www/nedi/html/img/dev/lddb.png
-www/nedi/html/img/dev/bwpu.png
-www/nedi/html/img/dev/apgn.png
-www/nedi/html/img/dev/w2db.png
-www/nedi/html/img/dev/csyw.png
-www/nedi/html/img/dev/rsb2.png
-www/nedi/html/img/dev/bwyw.png
-www/nedi/html/img/dev/rbbl.png
-www/nedi/html/img/dev/d3be.png
-www/nedi/html/img/dev/w2ov.png
-www/nedi/html/img/dev/genr.png
-www/nedi/html/img/dev/bwgr.png
-www/nedi/html/img/dev/v2db.png
-www/nedi/html/img/dev/v2bl.png
-www/nedi/html/img/dev/v2pu.png
-www/nedi/html/img/dev/ldgn.png
-www/nedi/html/img/dev/w3br.png
-www/nedi/html/img/dev/d3bl.png
-www/nedi/html/img/dev/v2rd.png
-www/nedi/html/img/dev/w3cm.png
-www/nedi/html/img/dev/w2lg.png
-www/nedi/html/img/dev/csgn.png
-www/nedi/html/img/dev/rsbl.png
-www/nedi/html/img/dev/w3pu.png
-www/nedi/html/img/dev/rmpu.png
-www/nedi/html/img/dev/v2yw.png
-www/nedi/html/img/dev/aprd.png
-www/nedi/html/img/dev/d2pu.png
-www/nedi/html/img/dev/bwog.png
-www/nedi/html/img/dev/rmdb.png
-www/nedi/html/img/dev/rsgn.png
-www/nedi/html/img/dev/v2og.png
-www/nedi/html/img/dev/d3db.png
-www/nedi/html/img/dev/phdb.png
-www/nedi/html/img/dev/d3pu.png
-www/nedi/html/img/dev/phbl.png
-www/nedi/html/img/dev/w2bl.png
-www/nedi/html/img/dev/d2yw.png
-www/nedi/html/img/dev/rmog.png
-www/nedi/html/img/dev/adog.png
-www/nedi/html/img/dev/phyw.png
-www/nedi/html/img/dev/w2lr.png
-www/nedi/html/img/dev/w2pu.png
-www/nedi/html/img/dev/rsdb.png
-www/nedi/html/img/dev/ldyw.png
-www/nedi/html/img/dev/appu.png
-www/nedi/html/img/dev/w3bl.png
-www/nedi/html/img/dev/w2br.png
-www/nedi/html/img/dev/fwog.png
-www/nedi/html/img/dev/w3yw.png
-www/nedi/html/img/dev/w2lb.png
-www/nedi/html/img/dev/w2rd.png
-www/nedi/html/img/dev/d3gy.png
-www/nedi/html/img/dev/phpu.png
-www/nedi/html/img/dev/rmrd.png
-www/nedi/html/img/dev/w3db.png
-www/nedi/html/img/dev/w2cm.png
-www/nedi/html/img/dev/addb.png
-www/nedi/html/img/dev/w3og.png
-www/nedi/html/img/dev/apyw.png
-www/nedi/html/img/dev/mrgn.png
-www/nedi/html/img/dev/adbl.png
-www/nedi/html/img/dev/phgn.png
-www/nedi/html/img/dev/rbgn.png
-www/nedi/html/img/dev/w3gn.png
-www/nedi/html/img/dev/ldog.png
-www/nedi/html/img/dev/phog.png
-www/nedi/html/img/dev/rmbl.png
-www/nedi/html/img/dev/fwyw.png
-www/nedi/html/img/dev/csrd.png
-www/nedi/html/img/dev/bwbl.png
-www/nedi/html/img/dev/d3bk.png
-www/nedi/html/img/dev/w2pi.png
-www/nedi/html/img/dev/bwrd.png
-www/nedi/html/img/dev/ldrd.png
-www/nedi/html/img/dev/ldbl.png
-www/nedi/html/img/dev/rbyw.png
-www/nedi/html/img/dev/csbk.png
-www/nedi/html/img/dev/d2rd.png
-www/nedi/html/img/dev/adrd.png
-www/nedi/html/img/dev/w3lb.png
-www/nedi/html/img/dev/d3gn.png
-www/nedi/html/img/dev/rsrd.png
-www/nedi/html/img/dev/w2gn.png
-www/nedi/html/img/dev/d2gn.png
-www/nedi/html/img/dev/fwgn.png
-www/nedi/html/img/dev/apog.png
-www/nedi/html/img/dev/w3lr.png
-www/nedi/html/img/dev/d3rd.png
-www/nedi/html/img/dev/adyw.png
-www/nedi/html/img/dev/ldbk.png
-www/nedi/html/img/dev/w2yw.png
-www/nedi/html/img/dev/w3dp.png
-www/nedi/html/img/dev/rsyw.png
-www/nedi/html/img/dev/ldpu.png
-www/nedi/html/img/dev/d2og.png
-www/nedi/html/img/dev/vpgn.png
-www/nedi/html/img/dev/genf.png
-www/nedi/html/img/dev/genn.png
-www/nedi/html/img/dev/geng.png
-www/nedi/html/img/dev/mrog.png
-www/nedi/html/img/dev/mrrd.png
-www/nedi/html/img/dev/mrbl.png
-www/nedi/html/img/dev/mryw.png
-www/nedi/html/img/dev/vpog.png
-www/nedi/html/img/dev/vprd.png
-www/nedi/html/img/oui/xrx.png
-www/nedi/html/img/oui/a27.png
-www/nedi/html/img/oui/dec.png
-www/nedi/html/img/oui/ltx.png
-www/nedi/html/img/oui/lex.png
-www/nedi/html/img/oui/fs.png
-www/nedi/html/img/oui/ktc.png
-www/nedi/html/img/oui/nort.png
-www/nedi/html/img/oui/q.png
-www/nedi/html/img/oui/fic.png
-www/nedi/html/img/oui/acr.png
-www/nedi/html/img/oui/hp.png
-www/nedi/html/img/oui/vm.png
-www/nedi/html/img/oui/can.png
-www/nedi/html/img/oui/3com.png
-www/nedi/html/img/oui/gen.png
-www/nedi/html/img/oui/atec.png
-www/nedi/html/img/oui/min.png
-www/nedi/html/img/oui/intr.png
-www/nedi/html/img/oui/ent.png
-www/nedi/html/img/oui/tek.png
-www/nedi/html/img/oui/iee.png
-www/nedi/html/img/oui/sony.png
-www/nedi/html/img/oui/aix.png
-www/nedi/html/img/oui/lsy.png
-www/nedi/html/img/oui/pla.png
-www/nedi/html/img/oui/tya.png
-www/nedi/html/img/oui/a93.png
-www/nedi/html/img/oui/ava.png
-www/nedi/html/img/oui/ngr.png
-www/nedi/html/img/oui/ab.png
-www/nedi/html/img/oui/mot.png
-www/nedi/html/img/oui/tsa.png
-www/nedi/html/img/oui/gig.png
-www/nedi/html/img/oui/int.png
-www/nedi/html/img/oui/sgi.png
-www/nedi/html/img/oui/psi.png
-www/nedi/html/img/oui/asu.png
-www/nedi/html/img/oui/adt.png
-www/nedi/html/img/oui/nok.png
-www/nedi/html/img/oui/rco.png
-www/nedi/html/img/oui/next.png
-www/nedi/html/img/oui/ovl.png
-www/nedi/html/img/oui/adv.png
-www/nedi/html/img/oui/smc.png
-www/nedi/html/img/oui/kyo.png
-www/nedi/html/img/oui/sun.png
-www/nedi/html/img/oui/igr.png
-www/nedi/html/img/oui/acc.png
-www/nedi/html/img/oui/bcm.png
-www/nedi/html/img/oui/sva.png
-www/nedi/html/img/oui/qnt.png
-www/nedi/html/img/oui/emx.png
-www/nedi/html/img/oui/si.png
-www/nedi/html/img/oui/amb.png
-www/nedi/html/img/oui/cpl.png
-www/nedi/html/img/oui/brc.png
-www/nedi/html/img/oui/rtk.png
-www/nedi/html/img/oui/agi.png
-www/nedi/html/img/oui/atom.png
-www/nedi/html/img/oui/sts.png
-www/nedi/html/img/oui/apx.png
-www/nedi/html/img/oui/cis.png
-www/nedi/html/img/oui/rad.png
-www/nedi/html/img/oui/ibm.png
-www/nedi/html/img/oui/axis.png
-www/nedi/html/img/oui/a95.png
-www/nedi/html/img/oui/ncd.png
-www/nedi/html/img/oui/xylan.png
-www/nedi/html/img/oui/wdc.png
-www/nedi/html/img/oui/ply.png
-www/nedi/html/img/oui/de.png
-www/nedi/html/img/oui/fdry.png
-www/nedi/html/img/oui/dli.png
-www/nedi/html/img/oui/msi.png
-www/nedi/html/img/oui/snom.png
-www/nedi/html/img/oui/sam.png
-www/nedi/html/img/oui/rub.png
-www/nedi/html/img/oui/bek.png
-www/nedi/html/img/oui/rar.png
-www/nedi/html/img/oui/wis.png
-www/nedi/html/img/oui/sum.png
-www/nedi/html/img/oui/adtx.png
-www/nedi/html/img/oui/iwi.png
-www/nedi/html/img/32/3d.png
-www/nedi/html/img/32/fogr.png
-www/nedi/html/img/32/dglg.png
-www/nedi/html/img/32/cnic.png
-www/nedi/html/img/32/loko.png
-www/nedi/html/img/32/ngrn.png
-www/nedi/html/img/32/bomb.png
-www/nedi/html/img/32/umgr.png
-www/nedi/html/img/32/dev.png
-www/nedi/html/img/32/dtap.png
-www/nedi/html/img/32/dtxt.png
-www/nedi/html/img/32/dcub.png
-www/nedi/html/img/32/cog.png
-www/nedi/html/img/32/fido.png
-www/nedi/html/img/32/smil.png
-www/nedi/html/img/32/err.png
-www/nedi/html/img/32/cfg.png
-www/nedi/html/img/32/net.png
-www/nedi/html/img/32/blft.png
-www/nedi/html/img/32/dnet.png
-www/nedi/html/img/32/foor.png
-www/nedi/html/img/32/sys.png
-www/nedi/html/img/32/mobil.png
-www/nedi/html/img/32/spkr.png
-www/nedi/html/img/32/impt.png
-www/nedi/html/img/32/key.png
-www/nedi/html/img/32/bchk.png
-www/nedi/html/img/32/dlet.png
-www/nedi/html/img/32/bdwn.png
-www/nedi/html/img/32/dpie.png
-www/nedi/html/img/32/lokc.png
-www/nedi/html/img/32/stat.png
-www/nedi/html/img/32/fiqu.png
-www/nedi/html/img/32/fiap.png
-www/nedi/html/img/32/brgt.png
-www/nedi/html/img/32/nglb.png
-www/nedi/html/img/32/mem.png
-www/nedi/html/img/32/bup.png
-www/nedi/html/img/32/ring.png
-www/nedi/html/img/32/dprt.png
-www/nedi/html/img/32/prt.png
-www/nedi/html/img/32/dmobi.png
-www/nedi/html/img/32/fovi.png
-www/nedi/html/img/32/db.png
-www/nedi/html/img/32/pkg.png
-www/nedi/html/img/32/flop.png
-www/nedi/html/img/32/mail.png
-www/nedi/html/img/32/glok.png
-www/nedi/html/img/32/paint.png
-www/nedi/html/img/32/star.png
-www/nedi/html/img/32/ford.png
-www/nedi/html/img/32/bcls.png
-www/nedi/html/img/32/dglb.png
-www/nedi/html/img/32/tap.png
-www/nedi/html/img/32/cam.png
-www/nedi/html/img/32/fitr.png
-www/nedi/html/img/32/home.png
-www/nedi/html/img/32/neth.png
-www/nedi/html/img/32/casp.png
-www/nedi/html/img/32/dlok.png
-www/nedi/html/img/32/idea.png
-www/nedi/html/img/32/hwif.png
-www/nedi/html/img/32/foto.png
-www/nedi/html/img/32/brld.png
-www/nedi/html/img/32/nwin.png
-www/nedi/html/img/32/acs.png
-www/nedi/html/img/32/form.png
-www/nedi/html/img/32/bcnl.png
-www/nedi/html/img/32/book.png
-www/nedi/html/img/32/dlog.png
-www/nedi/html/img/32/scrn.png
-www/nedi/html/img/32/dumy.png
-www/nedi/html/img/32/neti.png
-www/nedi/html/img/32/user.png
-www/nedi/html/img/32/calc.png
-www/nedi/html/img/32/cubs.png
-www/nedi/html/img/32/ddum.png
-www/nedi/html/img/32/dmsc.png
-www/nedi/html/img/32/clock.png
-www/nedi/html/img/32/dbmb.png
-www/nedi/html/img/32/chart.png
-www/nedi/html/img/32/fobl.png
-www/nedi/html/img/32/bstp.png
-www/nedi/html/img/32/exit.png
-www/nedi/html/img/32/tabi.png
-www/nedi/html/img/32/fogy.png
-www/nedi/html/img/32/say.png
-www/nedi/html/img/32/glob.png
-www/nedi/html/img/32/eyes.png
-www/nedi/html/img/32/proxy.png
-www/nedi/html/img/32/edit.png
-www/nedi/html/img/32/rout.png
-www/nedi/html/img/32/find.png
-www/nedi/html/img/32/nic.png
-www/nedi/html/img/32/kons.png
-www/nedi/html/img/32/cfg2.png
-www/nedi/html/img/32/tab.png
-www/nedi/html/img/32/info.png
-www/nedi/html/img/32/wrte.png
-www/nedi/html/img/32/glof.png
-www/nedi/html/img/32/powr.png
-www/nedi/html/img/32/wglb.png
-www/nedi/html/img/32/tabt.png
-www/nedi/html/img/32/ele.png
-www/nedi/html/img/16/3d.png
-www/nedi/html/img/16/fogr.png
-www/nedi/html/img/16/dglg.png
-www/nedi/html/img/16/cnic.png
-www/nedi/html/img/16/loko.png
-www/nedi/html/img/16/ngrn.png
-www/nedi/html/img/16/umgr.png
-www/nedi/html/img/16/bomb.png
-www/nedi/html/img/16/dev.png
-www/nedi/html/img/16/dtap.png
-www/nedi/html/img/16/dtxt.png
-www/nedi/html/img/16/dcub.png
-www/nedi/html/img/16/cog.png
-www/nedi/html/img/16/fido.png
-www/nedi/html/img/16/wrte.png
-www/nedi/html/img/16/err.png
-www/nedi/html/img/16/cfg.png
-www/nedi/html/img/16/net.png
-www/nedi/html/img/16/blft.png
-www/nedi/html/img/16/dnet.png
-www/nedi/html/img/16/foor.png
-www/nedi/html/img/16/sys.png
-www/nedi/html/img/16/mobil.png
-www/nedi/html/img/16/spkr.png
-www/nedi/html/img/16/impt.png
-www/nedi/html/img/16/key.png
-www/nedi/html/img/16/bchk.png
-www/nedi/html/img/16/dlet.png
-www/nedi/html/img/16/bdwn.png
-www/nedi/html/img/16/dpie.png
-www/nedi/html/img/16/lokc.png
-www/nedi/html/img/16/stat.png
-www/nedi/html/img/16/fiqu.png
-www/nedi/html/img/16/fiap.png
-www/nedi/html/img/16/fitr.png
-www/nedi/html/img/16/brgt.png
-www/nedi/html/img/16/nglb.png
-www/nedi/html/img/16/mem.png
-www/nedi/html/img/16/bup.png
-www/nedi/html/img/16/smil.png
-www/nedi/html/img/16/dprt.png
-www/nedi/html/img/16/prt.png
-www/nedi/html/img/16/dmobi.png
-www/nedi/html/img/16/fovi.png
-www/nedi/html/img/16/db.png
-www/nedi/html/img/16/ring.png
-www/nedi/html/img/16/flop.png
-www/nedi/html/img/16/mail.png
-www/nedi/html/img/16/glok.png
-www/nedi/html/img/16/pkg.png
-www/nedi/html/img/16/star.png
-www/nedi/html/img/16/ford.png
-www/nedi/html/img/16/bcls.png
-www/nedi/html/img/16/dglb.png
-www/nedi/html/img/16/tap.png
-www/nedi/html/img/16/cam.png
-www/nedi/html/img/16/home.png
-www/nedi/html/img/16/paint.png
-www/nedi/html/img/16/casp.png
-www/nedi/html/img/16/dlok.png
-www/nedi/html/img/16/neth.png
-www/nedi/html/img/16/idea.png
-www/nedi/html/img/16/foto.png
-www/nedi/html/img/16/brld.png
-www/nedi/html/img/16/nwin.png
-www/nedi/html/img/16/acs.png
-www/nedi/html/img/16/hwif.png
-www/nedi/html/img/16/bcnl.png
-www/nedi/html/img/16/book.png
-www/nedi/html/img/16/dlog.png
-www/nedi/html/img/16/scrn.png
-www/nedi/html/img/16/form.png
-www/nedi/html/img/16/neti.png
-www/nedi/html/img/16/user.png
-www/nedi/html/img/16/calc.png
-www/nedi/html/img/16/dumy.png
-www/nedi/html/img/16/ddum.png
-www/nedi/html/img/16/dmsc.png
-www/nedi/html/img/16/cubs.png
-www/nedi/html/img/16/dbmb.png
-www/nedi/html/img/16/clock.png
-www/nedi/html/img/16/fobl.png
-www/nedi/html/img/16/bstp.png
-www/nedi/html/img/16/exit.png
-www/nedi/html/img/16/tabi.png
-www/nedi/html/img/16/fogy.png
-www/nedi/html/img/16/say.png
-www/nedi/html/img/16/glob.png
-www/nedi/html/img/16/eyes.png
-www/nedi/html/img/16/edit.png
-www/nedi/html/img/16/rout.png
-www/nedi/html/img/16/find.png
-www/nedi/html/img/16/nic.png
-www/nedi/html/img/16/kons.png
-www/nedi/html/img/16/cfg2.png
-www/nedi/html/img/16/tab.png
-www/nedi/html/img/16/info.png
-www/nedi/html/img/16/chart.png
-www/nedi/html/img/16/glof.png
-www/nedi/html/img/16/powr.png
-www/nedi/html/img/16/wglb.png
-www/nedi/html/img/16/tabt.png
-www/nedi/html/img/16/ele.png
-www/nedi/html/img/smiles/24.png
-www/nedi/html/img/smiles/21.png
-www/nedi/html/img/smiles/60.png
-www/nedi/html/img/smiles/41.png
-www/nedi/html/img/smiles/55.png
-www/nedi/html/img/smiles/61.png
-www/nedi/html/img/smiles/44.png
-www/nedi/html/img/smiles/52.png
-www/nedi/html/img/smiles/23.png
-www/nedi/html/img/smiles/7.png
-www/nedi/html/img/smiles/54.png
-www/nedi/html/img/smiles/58.png
-www/nedi/html/img/smiles/37.png
-www/nedi/html/img/smiles/46.png
-www/nedi/html/img/smiles/18.png
-www/nedi/html/img/smiles/32.png
-www/nedi/html/img/smiles/27.png
-www/nedi/html/img/smiles/42.png
-www/nedi/html/img/smiles/59.png
-www/nedi/html/img/smiles/13.png
-www/nedi/html/img/smiles/2.png
-www/nedi/html/img/smiles/40.png
-www/nedi/html/img/smiles/17.png
-www/nedi/html/img/smiles/25.png
-www/nedi/html/img/smiles/64.png
-www/nedi/html/img/smiles/67.png
-www/nedi/html/img/smiles/39.png
-www/nedi/html/img/smiles/49.png
-www/nedi/html/img/smiles/26.png
-www/nedi/html/img/smiles/66.png
-www/nedi/html/img/smiles/63.png
-www/nedi/html/img/smiles/4.png
-www/nedi/html/img/smiles/53.png
-www/nedi/html/img/smiles/16.png
-www/nedi/html/img/smiles/9.png
-www/nedi/html/img/smiles/34.png
-www/nedi/html/img/smiles/15.png
-www/nedi/html/img/smiles/33.png
-www/nedi/html/img/smiles/47.png
-www/nedi/html/img/smiles/5.png
-www/nedi/html/img/smiles/48.png
-www/nedi/html/img/smiles/19.png
-www/nedi/html/img/smiles/11.png
-www/nedi/html/img/smiles/50.png
-www/nedi/html/img/smiles/69.png
-www/nedi/html/img/smiles/6.png
-www/nedi/html/img/smiles/36.png
-www/nedi/html/img/smiles/20.png
-www/nedi/html/img/smiles/56.png
-www/nedi/html/img/smiles/68.png
-www/nedi/html/img/smiles/28.png
-www/nedi/html/img/smiles/29.png
-www/nedi/html/img/smiles/10.png
-www/nedi/html/img/smiles/8.png
-www/nedi/html/img/smiles/51.png
-www/nedi/html/img/smiles/62.png
-www/nedi/html/img/smiles/70.png
-www/nedi/html/img/smiles/14.png
-www/nedi/html/img/smiles/31.png
-www/nedi/html/img/smiles/3.png
-www/nedi/html/img/smiles/45.png
-www/nedi/html/img/smiles/35.png
-www/nedi/html/img/smiles/43.png
-www/nedi/html/img/smiles/38.png
-www/nedi/html/img/smiles/1.png
-www/nedi/html/img/smiles/57.png
-www/nedi/html/img/smiles/12.png
-www/nedi/html/img/smiles/22.png
-www/nedi/html/img/smiles/65.png
-www/nedi/html/img/smiles/30.png
-www/nedi/html/img/stair.png
-www/nedi/html/img/srv.png
-www/nedi/html/img/spd.png
-www/nedi/html/img/sep.png
-www/nedi/html/img/rsw.png
-www/nedi/html/img/rj45.png
-www/nedi/html/img/red.png
-www/nedi/html/img/qr.png
-www/nedi/html/img/qg.png
-www/nedi/html/img/ppp.png
-www/nedi/html/img/plug.png
-www/nedi/html/img/p45.png
-www/nedi/html/img/org.png
-www/nedi/html/img/netr.png
-www/nedi/html/img/neto.png
-www/nedi/html/img/netg.png
-www/nedi/html/img/nedie.jpg
-www/nedi/html/img/nedib.png
-www/nedi/html/img/nedi.png
-www/nedi/html/img/n.png
-www/nedi/html/img/nedi-n.png
-www/nedi/html/img/ksw.png
-www/nedi/html/img/gsw.png
-www/nedi/html/img/grn.png
-www/nedi/html/img/favicon.ico
-www/nedi/html/img/dwn.png
-www/nedi/html/img/dpx.png
-www/nedi/html/img/dl.png
-www/nedi/html/img/cityx.png
-www/nedi/html/img/citys.png
-www/nedi/html/img/citym.png
-www/nedi/html/img/cityl.png
-www/nedi/html/img/cityg.png
-www/nedi/html/img/chip.png
-www/nedi/html/img/cal.png
-www/nedi/html/img/bulby.png
-www/nedi/html/img/bulbr.png
-www/nedi/html/img/bulbg.png
-www/nedi/html/img/bulbb.png
-www/nedi/html/img/bsw.png
-www/nedi/html/img/blubg.png
-www/nedi/html/img/blu.png
-www/nedi/html/img/bldsr.png
-www/nedi/html/img/blds.png
-www/nedi/html/img/bldmr.png
-www/nedi/html/img/bldm.png
-www/nedi/html/img/bldhr.png
-www/nedi/html/img/bldh.png
-www/nedi/html/img/bldbr.png
-www/nedi/html/img/bldb.png
-www/nedi/html/img/bg.png
-www/nedi/html/img/bg.jpg
-www/nedi/html/img/ant.png
-www/nedi/html/img/4p45.png
-www/nedi/html/img/xr.png
-www/nedi/html/img/12p45.png
-www/nedi/html/img/xg.png
-www/nedi/html/img/wsw.png
-www/nedi/html/img/usw.png
-www/nedi/html/img/up.png
-www/nedi/html/img/ul.png
-www/nedi/html/img/tel.png
-www/nedi/html/img/tape.png
-www/nedi/html/img/stp.png
-www/nedi/html/test/write.php
-www/nedi/html/test/graph.php
-www/nedi/html/test/env.php
-www/nedi/html/test/calc.php
-www/nedi/html/User-Logout.php
-www/nedi/html/User-Accounts.php
-www/nedi/html/Reports-Wlan.php
-www/nedi/html/Reports-Nodes.php
-www/nedi/html/Reports-Networks.php
-www/nedi/html/Reports-Monitoring.php
-www/nedi/html/Reports-Modules.php
-www/nedi/html/Reports-Interfaces.php
-www/nedi/html/Reports-Incidents.php
-www/nedi/html/Reports-Devices.php
-www/nedi/html/Realtime-Spanningtree.php
-www/nedi/html/Realtime-Routes.php
-www/nedi/html/Realtime-Multicast.php
-www/nedi/html/Other-Template.php
-www/nedi/html/index.php
-www/nedi/html/Other-Plot.php
-www/nedi/html/Other-Linked.php
-www/nedi/html/Other-Info.php
-www/nedi/html/Other-Export.php
-www/nedi/html/Other-Defgen.php
-www/nedi/html/Other-Calculator.php
-www/nedi/html/Nodes-Stolen.php
-www/nedi/html/Nodes-Status.php
-www/nedi/html/Nodes-List.php
-www/nedi/html/Monitoring-Timeline.php
-www/nedi/html/Monitoring-Setup.php
-www/nedi/html/Monitoring-Messages.php
-www/nedi/html/Monitoring-Incidents.php
-www/nedi/html/Monitoring-Health.php
-www/nedi/html/Devices-Write.php
-www/nedi/html/Devices-Table.php
-www/nedi/html/Devices-Stock.php
-www/nedi/html/Devices-Status.php
-www/nedi/html/Devices-Map.php
-www/nedi/html/Devices-List.php
-www/nedi/html/Devices-Graph.php
-www/nedi/html/Devices-Config.php
-www/nedi/html/User-Radius_cp.php
-www/nedi/html/User-Radius.php
-www/nedi/html/User-Profile.php
-www/nedi/contrib/nediportcapacity.pl
-www/nedi/contrib/1.3.6.1.4.1.9.1.634.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.287.def
-www/nedi/contrib/1.3.6.1.4.1.3076.1.2.1.1.1.2.def
-www/nedi/contrib/1.3.6.1.4.1.9967.100.1100.1.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.507.def
-www/nedi/contrib/1.3.6.1.4.1.9967.100.2100.1.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.283.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.522.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.248.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.278.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.367.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.564.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.516.def
-www/nedi/contrib/msg.txt
-www/nedi/contrib/install.sh
-www/nedi/contrib/1.3.6.1.4.1.9.1.122.def
-www/nedi/contrib/1.3.6.1.4.1.9.1.485.def
-www/nedi/contrib/1.3.6.1.4.1.4935.1.3.def
-www/nedi/contrib/1.3.6.1.4.1.3854.1.2.2.1.1.def
-www/nedi/contrib/objid.txt
-www/nedi/contrib/renedi.pl
-www/nedi/contrib/install-nedi-on-ubuntu.sh
-www/nedi/contrib/1.3.6.1.4.1.9.1.565.def
-www/nedi/sysobj/other.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.59.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.58.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.46.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.45.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.44.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.42.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.40.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.39.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.38.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.34.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.31.def
-www/nedi/sysobj/1.3.6.1.4.1.9.5.28.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.749.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.717.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.716.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.695.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.694.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.685.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.634.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.620.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.617.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.616.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.615.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.614.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.578.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.577.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.576.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.565.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.564.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.563.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.561.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.558.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.552.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.544.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.540.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.533.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.525.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.516.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.507.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.503.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.502.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.501.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.497.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.485.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.480.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.471.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.469.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.467.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.466.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.448.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.431.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.429.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.428.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.427.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.416.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.414.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.390.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.368.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.367.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.366.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.362.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.359.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.325.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.324.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.313.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.301.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.30.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.283.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.282.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.278.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.27.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.248.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.246.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.223.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.222.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.221.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.219.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.218.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.217.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.214.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.209.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.19.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.186.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.168.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.14.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.125.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.122.def
-www/nedi/sysobj/1.3.6.1.4.1.9.1.110.def
-www/nedi/sysobj/1.3.6.1.4.1.5205.2.9.def
-www/nedi/sysobj/1.3.6.1.4.1.5205.2.18.def
-www/nedi/sysobj/1.3.6.1.4.1.4526.1.10.def
-www/nedi/sysobj/1.3.6.1.4.1.45.3.36.1.def
-www/nedi/sysobj/1.3.6.1.4.1.45.3.35.1.def
-www/nedi/sysobj/1.3.6.1.4.1.45.3.30.2.def
-www/nedi/sysobj/1.3.6.1.4.1.45.3.30.1.def
-www/nedi/sysobj/1.3.6.1.4.1.43.10.27.4.1.2.2.def
-www/nedi/sysobj/1.3.6.1.4.1.311.1.1.3.1.2.def
-www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.3.1.def
-www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.2.1.def
-www/nedi/sysobj/1.3.6.1.4.1.3076.1.2.1.1.1.2.def
-www/nedi/sysobj/1.3.6.1.4.1.1991.1.3.3.1.def
-www/nedi/sysobj/1.3.6.1.4.1.1991.1.1.def
-www/nedi/sysobj/1.3.6.1.4.1.11.2.3.7.11.33.3.1.1.def
-www/nedi/sysobj/1.3.6.1.4.1.11.2.3.7.11.19.def
-www/nedi/moni.pl
-www/nedi/trap.pl
-www/nedi/README
-www/nedi/syslog.pl
-www/nedi/nedi.pl
- at dirrm www/nedi/html/img/smiles
- at dirrm www/nedi/html/img/16
- at dirrm www/nedi/html/img/oui
- at dirrm www/nedi/html/img/32
- at dirrm www/nedi/html/log
- at dirrm www/nedi/html/test
- at dirrm www/nedi/html/img/dev
- at dirrm www/nedi/html/img
- at dirrm www/nedi/html/inc/ThemeN
- at dirrm www/nedi/html/inc
- at dirrm www/nedi/html
- at dirrm www/nedi/sysobj
- at dirrm www/nedi/contrib
- at dirrm www/nedi/rrd
- at dirrm www/nedi/inc
- at dirrm www/nedi
+%%WWWDIR%%/README
+%%WWWDIR%%/contrib/1.3.6.1.4.1.3076.1.2.1.1.1.2.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.3854.1.2.2.1.1.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.4935.1.3.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.122.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.248.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.278.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.283.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.287.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.367.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.485.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.507.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.516.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.522.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.564.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.565.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9.1.634.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9967.100.1100.1.def
+%%WWWDIR%%/contrib/1.3.6.1.4.1.9967.100.2100.1.def
+%%WWWDIR%%/contrib/install-nedi-on-ubuntu.sh
+%%WWWDIR%%/contrib/install.sh
+%%WWWDIR%%/contrib/msg.txt
+%%WWWDIR%%/contrib/nediportcapacity.pl
+%%WWWDIR%%/contrib/objid.txt
+%%WWWDIR%%/contrib/renedi.pl
+%%WWWDIR%%/html/Devices-Config.php
+%%WWWDIR%%/html/Devices-Graph.php
+%%WWWDIR%%/html/Devices-List.php
+%%WWWDIR%%/html/Devices-Map.php
+%%WWWDIR%%/html/Devices-Status.php
+%%WWWDIR%%/html/Devices-Stock.php
+%%WWWDIR%%/html/Devices-Table.php
+%%WWWDIR%%/html/Devices-Write.php
+%%WWWDIR%%/html/Monitoring-Health.php
+%%WWWDIR%%/html/Monitoring-Incidents.php
+%%WWWDIR%%/html/Monitoring-Messages.php
+%%WWWDIR%%/html/Monitoring-Setup.php
+%%WWWDIR%%/html/Monitoring-Timeline.php
+%%WWWDIR%%/html/Nodes-List.php
+%%WWWDIR%%/html/Nodes-Status.php
+%%WWWDIR%%/html/Nodes-Stolen.php
+%%WWWDIR%%/html/Other-Calculator.php
+%%WWWDIR%%/html/Other-Defgen.php
+%%WWWDIR%%/html/Other-Export.php
+%%WWWDIR%%/html/Other-Info.php
+%%WWWDIR%%/html/Other-Linked.php
+%%WWWDIR%%/html/Other-Plot.php
+%%WWWDIR%%/html/Other-Template.php
+%%WWWDIR%%/html/Realtime-Multicast.php
+%%WWWDIR%%/html/Realtime-Routes.php
+%%WWWDIR%%/html/Realtime-Spanningtree.php
+%%WWWDIR%%/html/Reports-Devices.php
+%%WWWDIR%%/html/Reports-Incidents.php
+%%WWWDIR%%/html/Reports-Interfaces.php
+%%WWWDIR%%/html/Reports-Modules.php
+%%WWWDIR%%/html/Reports-Monitoring.php
+%%WWWDIR%%/html/Reports-Networks.php
+%%WWWDIR%%/html/Reports-Nodes.php
+%%WWWDIR%%/html/Reports-Wlan.php
+%%WWWDIR%%/html/User-Accounts.php
+%%WWWDIR%%/html/User-Logout.php
+%%WWWDIR%%/html/User-Profile.php
+%%WWWDIR%%/html/User-Radius.php
+%%WWWDIR%%/html/User-Radius_cp.php
+%%WWWDIR%%/html/img/12p45.png
+%%WWWDIR%%/html/img/16/3d.png
+%%WWWDIR%%/html/img/16/acs.png
+%%WWWDIR%%/html/img/16/bchk.png
+%%WWWDIR%%/html/img/16/bcls.png
+%%WWWDIR%%/html/img/16/bcnl.png
+%%WWWDIR%%/html/img/16/bdwn.png
+%%WWWDIR%%/html/img/16/blft.png
+%%WWWDIR%%/html/img/16/bomb.png
+%%WWWDIR%%/html/img/16/book.png
+%%WWWDIR%%/html/img/16/brgt.png
+%%WWWDIR%%/html/img/16/brld.png
+%%WWWDIR%%/html/img/16/bstp.png
+%%WWWDIR%%/html/img/16/bup.png
+%%WWWDIR%%/html/img/16/calc.png
+%%WWWDIR%%/html/img/16/cam.png
+%%WWWDIR%%/html/img/16/casp.png
+%%WWWDIR%%/html/img/16/cfg.png
+%%WWWDIR%%/html/img/16/cfg2.png
+%%WWWDIR%%/html/img/16/chart.png
+%%WWWDIR%%/html/img/16/clock.png
+%%WWWDIR%%/html/img/16/cnic.png
+%%WWWDIR%%/html/img/16/cog.png
+%%WWWDIR%%/html/img/16/cubs.png
+%%WWWDIR%%/html/img/16/db.png
+%%WWWDIR%%/html/img/16/dbmb.png
+%%WWWDIR%%/html/img/16/dcub.png

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-head mailing list