/*
 * dhtml_config.js
 *
 * Version 0.1 20040706
 *
 * (c) Top 21 GmbH
 *
 */
var config = new Object();
config.lang = "DE";
config.debugLevel = "alert";
config.namespaces = new Object();
config.namespaces = [['xhtml', 'http://www.w3.org/1999/xhtml'],['xsl', 'http://www.w3.org/1999/XSL/Transform'],['solseit', 'http://www.solseit.de/dom'],['xsi', 'http://www.w3.org/2001/XMLSchema-instance']];
/**
 * Parameter:	label
 *					aktiv
 *					typ der Ansicht (data, style, render, renderedCode)
 *
 */
config.editorViews =
{
   editView :[lang.I18N.tabs.bearbeiten, true, 'render'], preView :[lang.I18N.tabs.vorschau, false, 'render'], xmlView :[lang.I18N.tabs.xml, false, 'data'], xslView :[lang.I18N.tabs.xsl, false, 'style'], htmlView :[lang.I18N.tabs.html, false, 'renderedCode'], logView :[lang.I18N.tabs.logdatei, false, 'log']
};
config.debugFunctions =
{
   checkXPath :["checkXPath"], getXMLObjectByXPath :["getXMLObjectByXPath"], getValueByXPath :["getValueByXPath"], getXMLCollectionByXPath: ["getXMLCollectionByXPath"]
};
config.bottomButtons =
{
   Speichern :[function(){saveDocument();}], Reset :[function(){resetDocument();}]
};

config.masterPath = "_xml/master/";