It's included as a txt file.
You'll see where I've got the start_device_list and list the display names, just to make sure that the map is loaded.
If I use the %device_log% instead of the display_name, I'll get the listing of the logs for each device.
Of course what I want is the listing of the all events for the map in chronological order which is what I expect the
%map_log% to accomplish.
When I get that working, I'd yank out the three lines you see commented as a sanity check.
Jay
At 08:39 AM 3/5/2003 -0500, you wrote:
Jay... Can you post your template so I can take a look at what your doing?
Thanks, ~Brian
----- Original Message ----- From: "Jay Drew" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, March 04, 2003 9:32 PM Subject: [WhatsUp Forum] Map_log tag not working
> I am running rev 8.00, release 2002 12 17 on a windows 98 SE . > The map_log tag doesn't return data. The map is in context, > If I do a start_device_list and ask for device log, I get a log for > each device in the map. > > Dave Habben reports it's working for him. I must be lucky. > I re-installed from a second copy of WUG, same results. > > Anyone else having this bug? > > Jay Drew > [EMAIL PROTECTED] > > > Please visit http://www.ipswitch.com/support/mailing-lists.html > to be removed from this list. > > An Archive of this list is available at: > http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/ >
Please visit http://www.ipswitch.com/support/mailing-lists.html to be removed from this list.
An Archive of this list is available at: http://www.mail-archive.com/whatsup_forum%40list.ipswitch.com/
<%IF% IS_USER_ACCESS_LOG>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
Whatsup Gold 8
maplogview.asp
----------------
Displays the entire log file for a map
-->
<html>
<head>
<%include% StandardPageHeader.asp>
<title>Name of machine here - MAP Log View</title>
<%CURRENT_MAP% (%url_value% map)>
<H1>Listing of events for map: <%map% name> </H1>
<%START_DEVICE_LIST%> <!-- Included this as a sanity check to see if a map is truly in
context -->
<%DEVICE% DISPLAY_NAME> <!-- Included this as a sanity check to see if a map is truly
in context -->
</head>
<body>
<pre>
<%MAP_LOG% -1> <!-- -1 means display everything -->
</pre>
<%END_DEVICE_LIST%> <!-- Included this as a sanity check to see if a map is truly in
context -->
<%INCLUDE% NavButtons.asp>
<%INCLUDE% StandardPageFooter.asp>
</body>
</html>
<%ELSE%>
<%INCLUDE% ErrorUnauthorizedAccess.asp>
<%ENDIF%>
