28 lines
734 B
Plaintext
28 lines
734 B
Plaintext
<%@language = "javascript" %>
|
|
<% /*
|
|
$Revision$
|
|
$Id$
|
|
|
|
File: api.asp
|
|
Description: switchboard die doorstuurt naar de goede API-file
|
|
Parameters:
|
|
Context:
|
|
Note:
|
|
*/
|
|
|
|
DOCTYPE_Disable = 1;
|
|
LCL_Disable = 1;
|
|
ANONYMOUS_Allowed = 1;
|
|
FCLTEXPIRES = 8*60; // geen database interactie tenslotte
|
|
NO_ADDHEADER = 1; // common.inc voert wat globale acties hierdoor niet meer uit
|
|
var EXPIRED_PASSWORD_OK = true; // performance
|
|
%>
|
|
<!-- #include file="../Shared/common.inc"-->
|
|
<!-- #include file="../api/api.inc" -->
|
|
<%
|
|
var API = new API_func(); // controleert vanzelf
|
|
|
|
__Log("Transferring to: " + API.apidata.file);
|
|
Server.Transfer(API.apidata.file);
|
|
%><% ASPPAGE_END(); %>
|