Files
Facilitor/APPL/CAD/rap_algc.asp
Jos Groot Lipman 0b3bc6525b FSN#23111 Overal svn:needlock op, keyword expansion aan en $Modtime vervangen door $Id
svn path=/Website/trunk/; revision=6149
2012-04-15 16:16:32 +00:00

32 lines
939 B
Plaintext

<%@ language="javascript"%>
<% /*
$Revision$
$Id$
File: CAD/rap_algc.asp
Description: Inhoud van het ALG-tabblad van FG
*Concept* variant
Parameters: floorKey (required)
highlight (optional list of room-keys to filter)
Context: -
*/%>
<!-- #include file="../Shared/common.inc" -->
<!-- #include file="cad_contour_list.inc" -->
<%
var floorKey = getQParamInt("vKey", -1);
var highlight_arr = getQParamIntArray("highlight", []); // Comma-separated room_key_list (terrains). Optional
var outputmode = getQParamInt("outputmode", 0);
var showall = getQParamInt("showall", 0) == 1;
contour_list ( "*",
{ outputmode: outputmode,
showall: showall,
flr_key: floorKey,
concept: true,
highlight_arr: highlight_arr
}
);
%>