svn path=/Website/branches/v5.3.3/; revision=21025
This commit is contained in:
Maarten van der Heide
2014-03-17 11:40:51 +00:00
parent 4a1a6d526a
commit e4374a827f
8 changed files with 100 additions and 0 deletions

BIN
CUST/DCOL/banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

12
CUST/DCOL/cust.css Normal file
View File

@@ -0,0 +1,12 @@
/*
* $Revision$
* $Id$
*/
#headerblok {
background-position: 168px 0px;
}
span.menukop {
background-image: none;
padding-left: 2px;
}

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$
// $Id$
//
[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 = "DCOL"
[GENERAL]
;// 0 = as attachments, 1 = in body
NotificationInMailBody = "1"
;// stylesheet to be applied for notifications
NotificationXSL = "../xsl/cust.xsl"
;System2SystemXSL = "../xsl/dcol2sys.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@dcol.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\DCOL\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 DCOL

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/DCOL/tmpl_logo.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

8
CUST/DCOL/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>