YASK#25941 Initiele levering ALLY

svn path=/Website/trunk/; revision=17794
This commit is contained in:
Maarten van der Heide
2013-04-29 14:52:06 +00:00
parent 9efdc1d27a
commit 296e7920c4
9 changed files with 115 additions and 0 deletions

8
CUST/ALLY/cust.css Normal file
View File

@@ -0,0 +1,8 @@
/*
* $Revision$
* $Id$
*/
#headerblok
{
background: url(header.png) no-repeat;
}

BIN
CUST/ALLY/header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

19
CUST/ALLY/sso.asp Normal file
View File

@@ -0,0 +1,19 @@
<%@ language = "JavaScript" %>
<% /*
$Revision$
$Id$
File: cust/ally/sso.asp
Description: Single Sign On script
Parameters:
Context:
Note:
*/ %>
<%
Session("customerId") = "ALLY";
ANONYMOUS_Allowed = 1;
%>
<!-- #include file="../../appl/Shared/common.inc" -->
<!-- #include file="../../appl/shared/login.inc" -->
<%
SecureSSO({ strSharedKey: "vvCnODNvhTDhRGbcWNNceDscJwaPmSbN", Timeout: 10}); //Sharedkey - Should be the same at customer side
%>

View File

@@ -0,0 +1,71 @@
// Putorders.ini
//
// SAMPLE configuration file for Facilitor PutOrders routine.
// This routine handles the internal Facilitor orders and notifications queueus and
// takes care of sending these messages into the world. It normally is the only way out
// for messages from Facilitor
//
// Several protocols are supported, like e-mail, SMS, FTP, HTTP and XML/SOAP
// Its actual behaviour (like which messages are send by what means) is defined
// by the applicationmanager using several settings, parameters and XSL stylesheets
//
// This sample needs to be copied to the ../../CUST/XXXX/Putorders folder, where
// all the actual and appropriate settings *need* to be altered on installation.
//
// $Revision$
// $Modtime: 11-01-12 14:26 $
//
[SYSTEM]
// The FULL FYSICAL (LOCAL) PATH to the Facilitor webroot folder (containing a.o. global.asa)
FacilitorHome = "d:/Apps/Facilitor/Fplace5i/"
[ADO]
ConnectionString = "File Name=..\Oracle.udl "
Database_Name = "ORACLE"
CustomerId = "ALLY"
[GENERAL]
;// 0 = as attachments, 1 = in body
NotificationInMailBody = "1"
;// stylesheet to be applied for notifications
NotificationXSL = "../xsl/cust.xsl"
;System2SystemXSL = "../xsl/ally2sys.xsl"
;// Mail subject prefix for orders (to be followed by ordernr)
SubjectPrefix = "Facilitor bestelopdracht nr."
;// the fixed From address for Facilitor orders
FromAddress = "no_reply@ally.facilitor.nl"
;// optional reply address if that is different from FromAddress
ReplyAddress = ""
;// Level of logging (0-3) for troubleshooting purposes
LogLevel = 1
;// INTERNET_FLAG_PASSIVE = 0x8000000, else = 0
ConnectionFlag = 0
;// 1 = Use Proxy Server (recognizes TIS FTP gateway only), 0 = don't use Proxy
UseProxy = 0
;// Proxy Server IP Address, only used when UseProxy = 1
ProxyServerIPAddress = ""
;// SOAP Certificate reference
;SoapCertificateName = LOCAL_MACHINE\My\it.dijkoraad.nl
;; Minuten
NotificationDelay=1
LogDestination = 3
;// force this email address for test purposes
ForceMailAddress = "m.vanderheide@sgfacilitor.nl"
;// force this order address for test purposes
ForceOrderAddress = "mailto:m.vanderheide@sgfacilitor.nl"
;// force this mobile number for test purposes
;//ForceMobile = ""
EmergencyMailAddress = "m.vanderheide@sgfacilitor.nl"
FlexfilesFolder = d:\Apps\Facilitor\Fplace5i\cust\ALLY\flexfiles\
CustOrders = 0
UseSenderAsReplyTo=1
MailBodyCharSet="unicode-1-1-utf-8"
[SMS]
;// SMS accountinfo
SmsAccount = ""
UID = ""
PWD = ""
ReplyPhone = ""
SMSProtocol = ""

View File

@@ -0,0 +1,4 @@
@echo off
REM Moet gescheduled worden (normaliter 1 keer per uur) om door de applicatiebeheerder
REM ingeregelde notificaties te genereren.
cscript ..\..\..\utils\gen_notify\gen_notify.js ../oracle.udl ALLY

View File

@@ -0,0 +1,4 @@
@echo off
REM Moet gescheduled worden (normaliter 1 keer per dag) om door de applicatiebeheerder
REM ingeregelde jobs (aanmaak van periodieke opdrachten) uit te voeren.
cscript ..\..\..\utils\gen_scheduler\gen_scheduler.js ../oracle.udl

View File

@@ -0,0 +1 @@
..\..\..\utils\putOrders\putOrders.exe

BIN
CUST/ALLY/tmpl_logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

8
CUST/ALLY/xsl/cust.xsl Normal file
View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxml="urn:schemas-microsoft-com:xslt" version="1.0">
<xsl:import href="../../../appl/shared/default.xsl"/>
<xsl:variable name="Rev">
<!-- Revision van deze cust.xsl -->
<xsl:value-of select="substring(translate('$Revision$', '$ ', ''), 10)"/>
</xsl:variable>
</xsl:stylesheet>