svn path=/Website/trunk/; revision=16422
This commit is contained in:
Peter Koerhuis
2012-12-28 15:09:19 +00:00
parent 89a03813e6
commit cc4a9c9ecb
345 changed files with 2280 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,15 @@
[ADO]
ConnectionString = "File Name=..\Oracle.udl"
Database_Name = "ORACLE"
[SYSTEM]
Loglevel = "1"
User = 'DEMO'
[KTO_KANDIDATEN]
LocalPath = 'c:\Websites\Facilitor\curs&demo\Cust\demo\Export\KTO_KANDIDATEN'
ExportFilePrefix = 'KTO_KANDIDATEN'
ExportFilePostfix = '.csv'
BackupFileTimeStamp = 'yyyymmdd'
LogFilePostfix = '.log'
System = '1'

View File

@@ -0,0 +1,21 @@
REM GEN_EXPORT_KTO_KANDIDATEN
REM
REM DEMO
REM
REM Exporteert
REM
REM Context : roep deze file aan indien nodig, of schedule deze
REM Verseist: de randvoorwaarde voor het gebruik van gen_export
REM
REM $Revision$
REM $Modtime: 5-02-09 16:12 $
REM
REM (c) 2009, SG facilitor bv, +31 (53) 4800710, info@sgfacilitor.nl
REM
REM ================================================== create exportfile
..\..\..\utils\gen_export\gen_export.exe KTO_KANDIDATEN
REM ================================================== cleanup

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
CUST/DEMO/Pictures/spot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 B

View File

@@ -0,0 +1,74 @@
// 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: 16-03-07 11:19 $
//
[SYSTEM]
// The FULL FYSICAL (LOCAL) PATH to the Facilitor webroot folder (containing a.o. global.asa)
FacilitorHome = "c:/Websites/Facilitor/curs&demo"
[ADO]
ConnectionString = "File Name=..\Oracle.udl "
Database_Name = "ORACLE"
CustomerId = "DEMO"
[GENERAL]
FlexfilesFolder = "c:/Websites/Facilitor/curs&demo/cust/demo/flexfiles/"
;// 0 = as attachments, 1 = in body
NotificationInMailBody = "1"
;// stylesheet to be applied for notifications
NotificationXSL = "../xsl/cust.xsl"
;// Mail subject prefix for orders (to be followed by ordernr)
SubjectPrefix = "Facilitor bestelling: Bestelopdracht nr."
;// the fixed From address for Facilitor orders
FromAddress = "noreply@demo.facilitor.nl"
;// optional reply address if that is different from FromAddress
ReplyAddress = "p.koerhuis@sgfacilitor.nl"
;// Level of logging (0-3) for troubleshooting purposes
LogLevel = 255
;// 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 = "127.0.0.1:8888"
;// SOAP Certificate reference
SoapCertificateName = LOCAL_MACHINE\My\it.dijkoraad.nl
;; Minuten
NotificationDelay=1
LogDestination = 3
EmergencyMailAddress = "p.koerhuis@sgfacilitor.nl"
CustOrders = 0
; // force this email address for test purposes
ForceMailAddress = "p.koerhuis@sgfacilitor.nl"
; // force this order address for test purposes
ForceOrderAddress = "mailto:p.koerhuis@sgfacilitor.nl"
; // force this mobile number for test purposes
ForceFromAddress = "noreply@demo.facilitor.nl"
ForceMobile = "31651330622"
MailBodyCharSet="unicode-1-1-utf-7"
UseSenderAsReplyTo=1
[SMS]
SmsAccount = ""
;// SMS accountinfo
UID = ""
PWD = ""
ReplyPhone = ""
SMSProtocol = ""

View File

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

78
CUST/DEMO/Voorraad.asp Normal file
View File

@@ -0,0 +1,78 @@
<%@language = "JavaScript" %>
<%
// Lees de vraagstelling in die via XML binnenkomt
var objReq = new ActiveXObject("MSXML2.DOMDocument.4.0");
objReq.load(Request);
if (objReq.parseError.errorCode != 0)
{
var myErr = objReq.parseError;
Response.Write("Error parsing request XML: " + myErr.reason);
Response.End;
}
// Zoek het partnummer
var strQuery = "stock_request/part/number";
objPart = objReq.selectSingleNode(strQuery);
if (!objPart)
{
Response.Write(strQuery + " not found in XML");
Response.End;
}
// Prepare result XML
//Response.Write("Part nummer : " + objPart.text);
//Response.End;
var l_voorraad = bepaal_voorraad_van_artikel(objPart.text);
var xmlDoc = new ActiveXObject("MSXML2.DOMDocument.4.0");
xmlDoc.appendChild(xmlDoc.createProcessingInstruction("xml", "version=\"1.0\" encoding=\"UTF-8\""))
rootElement = xmlDoc.createElement("stock_response");
elementPart = xmlDoc.createElement("part");
elementNumber = xmlDoc.createElement("number");
elementNumberText = xmlDoc.createTextNode(objPart.text);
elementNumber.appendChild(elementNumberText);
elementPart.appendChild(elementNumber);
elementAmount = xmlDoc.createElement("amount");
elementAmountText = xmlDoc.createTextNode(l_voorraad);
elementAmount.appendChild(elementAmountText);
elementPart.appendChild(elementAmount);
elementInfo = xmlDoc.createElement("infotext"); // infohtml bestaat ook
elementInfoText = xmlDoc.createTextNode("Voorraad opgevraagd op "+(new Date()) +
"\ndoor " + Request.ServerVariables("REMOTE_HOST") +
"\nvia: " + Request.ServerVariables("HTTP_HOST") + Request.ServerVariables("URL"));
elementInfo.appendChild(elementInfoText);
elementPart.appendChild(elementInfo);
elementStockTime = xmlDoc.createElement("time");
elementStockTimeText = xmlDoc.createTextNode(new Date());
elementStockTime.appendChild(elementStockTimeText);
elementPart.appendChild(elementStockTime);
rootElement.appendChild(elementPart);
xmlDoc.appendChild(rootElement);
Response.ContentType = "text/xml";
Response.Write(xmlDoc.xml);
function bepaal_voorraad_van_artikel(p_artnr){
var i = 0;
var l_digits = "0123456789";
var l_result = "";
while (i<2 && p_artnr != ""){
l_char = p_artnr.charAt(0);
if (l_digits.indexOf(l_char, 0) != -1){
l_result = l_result + l_char;
}
i=i+1;
p_artnr = p_artnr.substr(1);
}
if (l_result == ""){
l_result = "0"
}
return l_result;
}
%>

BIN
CUST/DEMO/Workflow_ICT.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@@ -0,0 +1,95 @@
html, body {
font-size:9pt;
font-family: Tahoma, Verdana, Arial;
position: relative;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #aaa;
}
div, table, tr, td, img {
position: relative;
margin: 0;
padding: 0;
border: 0;
}
#filler {
padding: 10px 40px;
}
a, a:visited {
text-decoration: none;
font-weight: bold;
}
ul {
margin: 0 0 0 20px;
padding-left: 0px;
}
ul a,
#mywelcometitle a,
#mywelcometitle a:visited,
ul a:visited {
text-decoration: none;
}
#mywelcometitle a {
font-weight: normal;
}
#mywelcometitle a.home {
font-weight: bold;
}
div#container {
position: relative;
width: 960px;
height: 100%;
margin: 0 auto;
background-color: #fff;
padding: 0;
}
div#headerblok {
background-image: url(/cust/demo/banner.png) no-repeat;
width: 100%;
height: 75px;
text-align: right;
}
div#zoek {
position: absolute;
bottom: 2px;
right: 2px;
}
div#phone_canvas {
float: left;
}
a#gids {
text-decoration: none;
font-weight: bold;
font-size: 120%;
}
div#hwrap {
width: 100%;
position: relative;
}
div#mywelcometitle {
position: relative;
float: left;
width: 167px;
height: 100%;
top: 0;
padding-left: 20px;
padding-top: 20px;
}
div#content {
position: relative;
float: left;
padding: 0px;
width: 750px;/*767px;*/
height: 550px;
top: 0;
}
div#clear {
float: none;
}
div#phonebookdetails {
margin-top: 50px;
margin-left: 500px;
}

View File

@@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Uw intranet</title>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<script type="text/javascript">
function initPhonebook()
{
var phone = new facilitor.phonebook(document.getElementById("phone_canvas"));
}
</script>
<script type="text/javascript"
src="https://demo.facilitorlabs.nl/?API=PHONEBOOK&APIKEY=36893D43C6924BE1">
</script>
</head>
<body onload="initPhonebook();">
<div id="container">
<div id="headerblok">
<div id="headerprefix">intranet</div>
<div id="zoek">
<span style="float: left">Collega's zoeken</span><br>
<div id="phone_canvas"></div>
<!--<a id="gids" class="nieuwstitel" target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/prs/prs_phonebook.asp">-->
<a id="gids" class="nieuwstitel" target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/prs/prs_phonebook.asp">
&nbsp;Gids <img src="/appl/Pictures/find.png" />
</a>&nbsp;&nbsp;
</div>
</div>
<table width="100%" style="margin: 0; padding: 0;"><tr><td class="flexlabel"></td></tr></table>
<div id="hwrap">
<div id="mywelcometitle" class="fcltframeheader">
<a class="home" target="cntnt" href="/content.html">Home</a>
<br/></br>
<b>Regel zelf</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<b>Alternatief</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<!--
<b>Alternatief 2</b>
<ul>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
-->
<b>Menu</b>
<ul>
<li>Menuitem 1</li>
<li>Menuitem 2</li>
<li>Menuitem 3</li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/><br/><br/><br/><br/><br/><br/>
</div>
<div id="content">
<iframe name="cntnt" id="cntnt" src="/content.html" frameBorder="0" style="width: 99%; height: 99%;" />
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Uw intranet</title>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<script type="text/javascript">
function initPhonebook()
{
var phone = new facilitor.phonebook(document.getElementById("phone_canvas"));
}
</script>
<script type="text/javascript"
src="https://demo.facilitorlabs.nl/?API=PHONEBOOK&APIKEY=36893D43C6924BE1">
</script>
</head>
<body onload="initPhonebook();">
<div id="container">
<div id="headerblok">
<div id="headerprefix">Intranet</div>
<div id="zoek">
<span style="float: left">Finde Kollegen</span><br>
<div id="phone_canvas"></div>
<!--<a id="gids" class="nieuwstitel" target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/prs/prs_phonebook.asp">-->
<a id="gids" class="nieuwstitel" target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/prs/prs_phonebook.asp">
&nbsp;Verzeichnis <img src="/appl/Pictures/find.png" />
</a>&nbsp;&nbsp;
</div>
</div>
<table width="100%" style="margin: 0; padding: 0;"><tr><td class="flexlabel"></td></tr></table>
<div id="hwrap">
<div id="mywelcometitle" class="fcltframeheader">
<a class="home" target="cntnt" href="/content.html">Home</a>
<br/></br>
<b>Regel zelf</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Leeren M<>lleimer</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Urlaub</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Raum reservieren</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">B<EFBFBD>robedarf bestellen</a></li>
<li>Men<EFBFBD>option 4</li>
<li>Men<EFBFBD>option 5</li>
<li>...</li>
</ul>
<br/>
<b>Alternatief</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Leeren M<>lleimer</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Urlaub</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Raum reservieren</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">B<EFBFBD>robedarf bestellen</a></li>
<li>Men<EFBFBD>option 4</li>
<li>Men<EFBFBD>option 5</li>
<li>...</li>
</ul>
<br/>
<!--
<b>Alternatief 2</b>
<ul>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Leeren M<>lleimer</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Urlaub</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Raum reservieren</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">B<>robedarf bestellen</a></li>
<li>Men<65>option 4</li>
<li>Men<65>option 5</li>
<li>...</li>
</ul>
<br/>
-->
<b>Menu</b>
<ul>
<li>Men<EFBFBD>option 1</li>
<li>Men<EFBFBD>option 2</li>
<li>Men<EFBFBD>option 3</li>
<li>Men<EFBFBD>option 4</li>
<li>Men<EFBFBD>option 5</li>
<li>...</li>
</ul>
<br/><br/><br/><br/><br/><br/><br/>
</div>
<div id="content">
<iframe name="cntnt" id="cntnt" src="/content.html" frameBorder="0" style="width: 99%; height: 99%;" />
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Your Intranet</title>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<script type="text/javascript">
function initPhonebook()
{
var phone = new facilitor.phonebook(document.getElementById("phone_canvas"));
}
</script>
<script type="text/javascript"
src="https://demo.facilitorlabs.nl/?API=PHONEBOOK&APIKEY=36893D43C6924BE1">
</script>
</head>
<body onload="initPhonebook();">
<div id="container">
<div id="headerblok">
<div id="headerprefix">intranet</div>
<div id="zoek">
<span style="float: left">Find Colleagues</span><br>
<div id="phone_canvas"></div>
<!--<a id="gids" class="nieuwstitel" target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/prs/prs_phonebook.asp">-->
<a id="gids" class="nieuwstitel" target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/prs/prs_phonebook.asp">
&nbsp;Phonebook <img src="/appl/Pictures/find.png" />
</a>&nbsp;&nbsp;
</div>
</div>
<table width="100%" style="margin: 0; padding: 0;"><tr><td class="flexlabel"></td></tr></table>
<div id="hwrap">
<div id="mywelcometitle" class="fcltframeheader">
<a class="home" target="cntnt" href="/content.html">Home</a>
<br/></br>
<b>Self-service</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<b>Alternative</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<!--
<b>Alternative 2</b>
<ul>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
-->
<b>Menu</b>
<ul>
<li>Menuitem 1</li>
<li>Menuitem 2</li>
<li>Menuitem 3</li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/><br/><br/><br/><br/><br/><br/>
</div>
<div id="content">
<iframe name="cntnt" id="cntnt" src="/content.html" frameBorder="0" style="width: 99%; height: 99%;" />
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Your Intranet</title>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<script type="text/javascript">
function initPhonebook()
{
var phone = new facilitor.phonebook(document.getElementById("phone_canvas"));
}
</script>
<script type="text/javascript"
src="https://arfr.facilitorlabs.nl/?API=PHONEBOOK&APIKEY=36893D43C6924BE1">
</script>
</head>
<body onload="initPhonebook();">
<div id="container">
<div id="headerblok">
<div id="headerprefix">intranet</div>
<div id="zoek">
<span style="float: left">Trouver coll<6C>gues</span><br>
<div id="phone_canvas"></div>
<!--<a id="gids" class="nieuwstitel" target="cntnt" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/prs/prs_phonebook.asp">-->
<a id="gids" class="nieuwstitel" target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/prs/prs_phonebook.asp">
&nbsp;Annuaire <img src="/appl/Pictures/find.png" />
</a>&nbsp;&nbsp;
</div>
</div>
<table width="100%" style="margin: 0; padding: 0;"><tr><td class="flexlabel"></td></tr></table>
<div id="hwrap">
<div id="mywelcometitle" class="fcltframeheader">
<a class="home" target="cntnt" href="/content.html">Accueil</a>
<br/></br>
<b>Libre-Service</b>
<ul>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<b>Alternative</b>
<ul>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<!--
<b>Alternative 2</b>
<ul>
<li><a target="cntnt" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="cntnt" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="cntnt" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="cntnt" href="https://arfr.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
-->
<b>Menu</b>
<ul>
<li>Menuitem 1</li>
<li>Menuitem 2</li>
<li>Menuitem 3</li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/><br/><br/><br/><br/><br/><br/>
</div>
<div id="content">
<iframe name="cntnt" id="cntnt" src="/content.html" frameBorder="0" style="width: 99%; height: 99%;" />
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,94 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Uw intranet</title>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<script type="text/javascript">
function initPhonebook()
{
var phone = new facilitor.phonebook(document.getElementById("phone_canvas"));
}
</script>
<script type="text/javascript"
src="https://demo.facilitorlabs.nl/?API=PHONEBOOK&APIKEY=36893D43C6924BE1">
</script>
</head>
<body onload="initPhonebook();">
<div id="container">
<div id="headerblok">
<div id="headerprefix">intranet</div>
<div id="zoek">
<span style="float: left">Collega's zoeken</span><br>
<div id="phone_canvas"></div>
<!--<a id="gids" class="nieuwstitel" target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/prs/prs_phonebook.asp">-->
<a id="gids" class="nieuwstitel" target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/prs/prs_phonebook.asp">
&nbsp;Gids <img src="/appl/Pictures/find.png" />
</a>&nbsp;&nbsp;
</div>
</div>
<table width="100%" style="margin: 0; padding: 0;"><tr><td class="flexlabel"></td></tr></table>
<div id="hwrap">
<div id="mywelcometitle" class="fcltframeheader">
<a class="home" target="cntnt" href="/content.html">Home</a>
<br/></br>
<b>Regel zelf</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<b>Alternatief</b>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
<!--
<b>Alternatief 2</b>
<ul>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="cntnt" href="https://demo.facilitorlabs.nl/?noHeader=1&IHateTabs=1&noMenu=1&jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/>
-->
<b>Menu</b>
<ul>
<li>Menuitem 1</li>
<li>Menuitem 2</li>
<li>Menuitem 3</li>
<li>Menuitem 4</li>
<li>Menuitem 5</li>
<li>...</li>
</ul>
<br/><br/><br/><br/><br/><br/><br/>
</div>
<div id="content">
<iframe name="cntnt" id="cntnt" src="/content.html" frameBorder="0" style="width: 99%; height: 99%;" />
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<style>
html, body {
position: absolute;
color: #000;
background-color: #fff;
}
h1, h2, h3 {
font-size: 160%;
}
</style>
</head>
<body>
<div id="filler">
<h2>Welkom op onze intranetpagina</h2>
Hier vindt u alle informatie die u als werknemer nodig heeft.
<br/><br/><br/><br/>
<h2>Regel zelf</h2>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>...</li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/">Naar Facilitor</a></li>
</ul>
<br/><br/><br/><br/>
<!--
<h2>Lopende zaken</h2>
<iframe src="/appl/fac/fac_list.asp?urole=fe" width="100%" height="200" />
-->
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<style>
html, body {
position: absolute;
color: #000;
background-color: #fff;
}
h1, h2, h3 {
font-size: 160%;
}
</style>
</head>
<body>
<div id="filler">
<h2>Willkommen auf unsere Intranetseite</h2>
Hier finden sie alle Informationen die sie als Arbeitnehmer brauchen.
<br/><br/><br/><br/>
<h2>Selbstbedienung</h2>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Leeren M<>lleimer</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Urlaub</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Raum reservieren</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">B<EFBFBD>robedarf bestellen</a></li>
<li>...</li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/">Nach Facilitor</a></li>
</ul>
<br/><br/><br/><br/>
<!--
<h2>Lopende zaken</h2>
<iframe src="/appl/fac/fac_list.asp?urole=fe" width="100%" height="200" />
-->
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<style>
html, body {
position: absolute;
color: #000;
background-color: #fff;
}
h1, h2, h3 {
font-size: 160%;
}
</style>
</head>
<body>
<div id="filler">
<h2>Welcome to our intranet</h2>
Here you can find any and all information you may need.
<br/><br/><br/><br/>
<h2>Self-service</h2>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>...</li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/">To Facilitor</a></li>
</ul>
<br/><br/><br/><br/>
<!--
<h2>Lopende zaken</h2>
<iframe src="/appl/fac/fac_list.asp?urole=fe" width="100%" height="200" />
-->
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<style>
html, body {
position: absolute;
color: #000;
background-color: #fff;
}
h1, h2, h3 {
font-size: 160%;
}
</style>
</head>
<body>
<div id="filler">
<h2>Bienvenue <20> notre page intranet</h2>
Ici vous trouverez toutes les informations dont vous avez besoin en tant qu'employ<6F>.
<br/><br/><br/><br/>
<h2>Libre-Service</h2>
<ul>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Empty dustbins</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Day off</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Book a room</a></li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Order office supplies</a></li>
<li>...</li>
<li><a target="_blank" href="https://arfr.facilitorlabs.nl/">To Facilitor</a></li>
</ul>
<br/><br/><br/><br/>
<!--
<h2>Lopende zaken</h2>
<iframe src="/appl/fac/fac_list.asp?urole=fe" width="100%" height="200" />
-->
</div>
</body>
</html>

View File

@@ -0,0 +1,38 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="/cust/demo/cust.css" title="cust" />
<link rel="stylesheet" type="text/css" href="/api_demo.css" title="apidemo" />
<style>
html, body {
position: absolute;
color: #000;
background-color: #fff;
}
h1, h2, h3 {
font-size: 160%;
}
</style>
</head>
<body>
<div id="filler">
<h2>Welkom op onze intranetpagina</h2>
Hier vindt u alle informatie die u als werknemer nodig heeft.
<br/><br/><br/><br/>
<h2>Regel zelf</h2>
<ul>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=885%26mld_defaultstdmelding=361%26urole=fe">Afvalbakken legen</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/mld/mld_edit_melding.asp?srtdisc=101%26disc=863%26mld_defaultstdmelding=917%26urole=fe">Vrije dag</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/res/res_reservering.asp?urole=fe">Reserveer een ruimte</a></li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/?jumpTo=appl/bes/bes_edit_bestelling.asp?dis_key=7%26urole=fe">Bestel kantoorartikelen</a></li>
<li>...</li>
<li><a target="_blank" href="https://demo.facilitorlabs.nl/">Naar Facilitor</a></li>
</ul>
<br/><br/><br/><br/>
<!--
<h2>Lopende zaken</h2>
<iframe src="/appl/fac/fac_list.asp?urole=fe" width="100%" height="200" />
-->
</div>
</body>
</html>

BIN
CUST/DEMO/banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

0
CUST/DEMO/cust.css Normal file
View File

16
CUST/DEMO/custBU.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
if x%1==x goto usage
copy cust.css _huisstijlen\cust_%1.css
copy tmpl_logo.gif _huisstijlen\tmpl_logo_%1.gif
copy banner.png _huisstijlen\banner_%1.png
goto end
:usage
echo gebruik: %0 naam-van-prospect
echo Kopieert (bestanden van) huidige stijl over klantspecifieke stijl
:end
pause

16
CUST/DEMO/custSet.bat Normal file
View File

@@ -0,0 +1,16 @@
@echo off
if x%1==x goto usage
copy _huisstijlen\cust_%1.css cust.css
copy _huisstijlen\tmpl_logo_%1.gif tmpl_logo.gif
copy _huisstijlen\banner_%1.png banner.png
goto end
:usage
echo gebruik: %0 naam-van-prospect
echo Kopieert (bestanden van) klantspecifieke stijl over huidige stijl
:end
pause

464
CUST/DEMO/cust_demo.css Normal file
View File

@@ -0,0 +1,464 @@
/*
* $Revision$
* $Modtime: 15-02-12 14:31 $
*
*
* basiskleuren: #003353 (donkerblauw)
* #00b5e8 (lichtblauw)
* #f26522 (accentoranje)
* #b4cfe0 (achtergrondblauw)
*/
/* Titelbalk */
/*
@import url("jquery-ui-1.8.22.custom.css");
.tabclose, .tabcloseall {
color: #aadaf2;
}
.ui-layout-resizer, .uit-layout-toggler { display: none !important; }
.uit-layout-west { top: 75px !important; left: 0 !important; }
.ui-layout-center { top: 75px !important; left: 252px !important; }
*/
.ui-layout-resizer { /* all 'resizer-bars' */
background: #fff;
}
.ui-layout-toggler { /* all 'toggler-buttons' */
background: #aaa;
}
#headerblok {
background: url(banner.png) no-repeat;
background-color: #003353;
background-position: 0px 0px;
color: #fff;
}
/* Links & highlights */
#loggedinuser span:hover,
#headerhelp:hover,
#headerlogout:hover,
a.newstextFresh:hover,
a.newstext:hover,
#showbody input.details:hover,
span.ia:hover,
label.cadselect:hover,
#buttons ul li:hover,
table.filter td:hover p,
span.pscapt:hover,
#facforum #container a:hover {
text-decoration: none;
color: #f26522;
}
tr.flexcollapsable td:hover span,
.more:hover {
color: #f26522;
}
.ui-datepicker-calendar .ui-state-hover {
border: 1px solid #f26522;
}
/* "Demonstratie" */
div#headerprefix {
right: 33%;
padding-top: 0;
font-size: 260%;
color: #00b5e8;
}
/* Portal */
html, body, #editbody, #showbody, #listbody {
background-image: none;/*url(../Pictures/bodybgrnd.jpg);*/
background-color: #fff;
margin: 0;
padding: 0;
}
.ui-corner-all {
border-radius: 0;
}
#mynewsframe {
margin: 0;
padding: 0;
}
#facforum {
background-color: #fff;
border: none;
}
#facforum a,
#facforum #container ,
#facforum h5 {
border: none;
background: none;
margin: 0 4px;
}
#facforum #container {
border-bottom: 1px solid #00b5e8;
background-color: #fff;
}
#facforum h5 {
background: url(Pictures/gradient_light.png) #00b5e8 repeat-x left top;
}
#facforum h5 a {
color: #fff;
}
#facforum .ui-state-default .ui-icon {
background-image: url(images/ui-icons_ffffff_256x240.png);
}
#mywelcome,
#myactions,
#mymessages {
margin: 10px 4px 0px 4px;
padding: 0;
background: none;
border: none;
border-bottom: 2px solid #00b5e8;
}
#mywelcometitle {
background: url(Pictures/gradient_light.png) #00b5e8 repeat-x left top;
color: #fff;
padding: 0 0 3px 0;
}
#mywelcometitle strong {
color: #fff;
margin: 0;
padding: 0;
}
#mywelcometitle sup {
color: #f26522;
}
#mywelcomeinfo {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
color: #fff;
padding: 4px;
float: none;
font-style: normal;
border: none;
}
#mywelcomeframe {
height: auto;
}
#nieuwsbody {
background-color: #fff;
margin: 0;
border: none;
width: 100%;
}
.nieuwstitel {
color: #00b5e8;
}
.nieuwstekst {
border-bottom: none;
}
.listbody#usermessbody .fcltframeheader,
#listbody .fcltframeheader {
border: none;
}
.listbody table {
background-color: #fff;
}
#collapseblock table {
border: none;
border-bottom: 1px solid #ccc;
width: 100%;
}
.fcltframe {
background: none;
background-color: #fff;
border: 0px solid #00b5e8;
border: none;
margin-bottom: 5px;
}
/* Titels */
.fcltframeheader,
#search div.fcltblockhead {
background: url(Pictures/gradient_light.png) #00b5e8 repeat-x left top;
padding: 4px 5px 2px 5px;
/*background-color: #00b5e8;*/
}
/* Tekst van titels (overzichten, mijn facilitor, etc */
.fcltframeheader,
#search div.fcltblockhead,
.fcltframeheader span,
#search div.fcltblockhead span,
#iframerextratitle {
color: #fff;
}
/* Kaders om invulvelden */
body.modal .fcltblock,
#showbody .fcltblock,
#editbody .fcltblock {
border: none;
}
.fcltblock {
margin: 3px 0 3px 0;
}
.fcltblock .inside {
margin: 0px;
padding: 2px 3px;
}
#show, #edit {
padding: 0;
}
#showbody .fcltblock .inside {
background-color: #eee;
border: 1px solid #005387;
}
#showbody .fcltblockhead {
background-color: #005387;
color: #eee;
padding: 3px 0 5px 5px;
}
#editbody .fcltblock .inside {
border: 1px solid #003353;
border-top: none;
}
body.modal .fcltblockhead,
#editbody .fcltblockhead {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
color: #fff;
padding: 3px 0 5px 5px;
}
#showbody label,
#showbody input {
color: #222;
}
#showbody .details {
color: #22c;
}
/* Flexvelden type label */
td.flexlabel,
#showbody td.flexlabel label {
background-color: #00b5e8;
color: #fff;
border: none;
}
tr.flexcollapsed td {
color: #fff;
}
/* Selectiescherm */
#search {
background-image: none;
border: 1px solid #003353;
/*background-color: #eff8ff;*/
margin-bottom: 2px;
}
#search div.fcltblock {
background-color: #fff;
}
#search div.fcltblockhead {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
color: #fff;
padding-top: 1px;
}
#search div.fcltblock label {
color: #003353;
}
#buttons ul li {
color: #003353;
}
.rstable thead th {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
}
.rstable tfoot td {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
}
/* Verplichte velden */
* html .required, .required {
background-color:#d9f7ff;
border-left: 3px solid red;
}
input[type=text].required,
input[type=password].required,
select.required, option.required,
textarea.required {
background-color:#d9f7ff;
border-left: 3px solid red;
}
/* Menu */
.ui-layout-content {
background-color: #fff;
}
div#ProfFAC,
div#PersFAC,
div#MgtFAC {
background-color: #fff;
}
div#ProfFAC .menukop {
color: #003353;
}
div#ProfFAC ul li,
div#PersFAC ul li,
div#MgtFAC ul li {
background-color: #fff;
}
li.mk {
border-bottom: none;
border-top: 1px solid #00b5e8;
margin-top: 1px;
}
div#ProfFAC ul li li,
div#PersFAC ul li li {
border-bottom: none;
border-top: 1px solid #aaa;
margin-left: 5px;
}
div#PersFAC ul li li a,
div#ProfFAC ul li li a {
text-decoration: none;
color: #000;
}
div#PersFAC ul li li a:hover,
div#ProfFAC ul li li a:hover {
color: #f26522;
}
div#PersFAC ul li span.menukop {
color: #003353;
}
span.menukop {
background-image:url(Pictures/spot.png);
color: #00b5e8;
}
/* Portal (loketten) */
#portalbody {
/*background-color: #fff;*/
text-align: center;
}
#portalmenu h2 {
color: #003353;
padding: 10px 0 15px 0;
}
#portalmenu table {
margin: auto;
}
#portalmenu span.menuimg {
width: 200px;
margin-top: 10px;
}
#portalmenu span.menukop {
color: #f26522;
}
#portalmenu .more {
color: #00b5e8;
}
#portalmenu .more:hover {
color: #000;
}
#portalmenu a {
color: #000;
text-decoration: none;
}
#portalmenu a:hover {
color: #f26522;
}
/* Widgetportal */
#widgetportalbody #portalbody {
background-color: white;
text-align: center;
}
#widgetportalbody #portalmenu h2 {
color: #00b5e8;
padding: 0;
}
#widgetportalbody #portalmenu table {
margin: auto;
}
#widgetportalbody #portalmenu table tr td {
width: 230px;
background-color: white;
border: 0px solid #ddd;
padding: 2px 4px 0px 0px;
}
#widgetportalbody #portalmenu span.menuimg {
width: 100px;
float: left;
margin: 0;
display: block;
}
#widgetportalbody #portalmenu span.menukop {
text-align: left;
width: 130px;
padding: 0;
margin: 2px 0 4px 0;
display: block;
float: right;
font-size: 1.1em;
}
#widgetportalbody #portalmenu ul {
text-align: left;
width: 130px;
padding: 0;
margin: 0;
display: block;
float: right;
}
#widgetportalbody #portalmenu li.mi {
color: #003353;
font-size: 1.0em;
}
/* Widgets */
div.widget,
div.widgettitle {
border: none;
}
/* Search */
table.filter {
background-color: #fff;
border: 1px solid #00b5e8;
}
table.filter th {
background-color: #00b5e8;
}
/* Kalender */
.ui-datepicker-header.ui-widget-header,
.ui-dialog-titlebar.ui-widget-header {
background: url(Pictures/gradient_light.png) #00b5e8 repeat-x left top;
color: #fff;
}
.ui-datepicker-calendar th {
background: url(Pictures/gradient_dark.png) #003353 repeat-x left top;
}
/* Uren */
.modal th {
background: url(Pictures/gradient_light.png) #00b5e8 repeat-x left top;
}
/* API-portal */
#phonebookdetails a:link,
#phonebookdetails a:visited,
#filler a:link,
#filler a:visited {
color: #00b5e8;
font-weight: bold;
}
#mywelcometitle a:link,
#mywelcometitle a:visited,
#mywelcometitle u li {
color: #fff;
}
#phonebookdetails a:hover,
#mywelcometitle a:hover,
#filler ul li a:hover {
color: #f26522;
}
#filler h1, #filler h2, #filler h3 {
color: #003353;
}

View File

@@ -0,0 +1,88 @@
<?xml version="1.0"?>
<component>
<?component error="true" debug="true"?>
<registration
description="custfunctions"
progid="custfunction.wsc"
version="1.00"
classid="{4F51571C-1DFC-4769-B8DD-37B356378F12}"
>
</registration>
<public>
<!-- properties -->
<property name="Oracle">
<put/>
</property>
<property name="__Log">
<put/>
</property>
<property name="__DoLog">
<put/>
</property>
<property name="safe">
<put/>
</property>
<!-- methods -->
<method name="API_PHONEBOOK">
<PARAMETER name="prs_key"/>
<PARAMETER name="data"/>
</method>
</public>
<script language="javascript">
<![CDATA[
/* properties */
function put_Oracle(newValue) {Oracle = newValue};
function put___Log(newValue) {__Log = newValue};
function put___DoLog(newValue) {__DoLog = newValue};
function put_safe(newValue) {safe = newValue};
/*
$Revision$
$Id$
*/
API_PHONEBOOK =
function (prs_key, data)
{
var result = {};
//
// Hoofdlocatie
//
if (data.werkplekken.length)
{
var txt = "";
var wp;
var wplabel = "Hoofdlocatie:";
var loc_key = -1;
for (wp in data.werkplekken)
{
if (!data.werkplekken[wp].prs_werkplek_aanduiding.isVirtueel && wp < 1) // pak er maar eentje, TODO hoofdwerkplek
{
// trs += "<tr><td>"+wplabel+"</td><td>" + data.werkplekken[wp].prs_werkplek_aanduiding + "</td></tr>";
txt += data.werkplekken[wp].prs_werkplek_aanduiding;
loc_key = data.werkplekken[wp].alg_locatie_key;
}
}
result.demo_locatie = safe.html(txt);
}
//
// Klikbaar e-mailadres
//
if (data.prs_perslid_email)
{
result.demo_mailto = "<a href='mailto:" + data.prs_perslid_email + "'>" + data.prs_perslid_email + "</a>";
}
return result;
};
]]>
</script>
</component>

BIN
CUST/DEMO/dwf/31400105.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31405405.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406005.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406105.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406205.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406305.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406405.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406505.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31406605.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31407205.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31407305.dwf Normal file

Binary file not shown.

BIN
CUST/DEMO/dwf/31407405.dwf Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More