You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/08/16 20:27:22 UTC

svn commit: r432021 - /incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js

Author: mturyn
Date: Wed Aug 16 13:27:22 2006
New Revision: 432021

URL: http://svn.apache.org/viewvc?rev=432021&view=rev
Log:
The profile for building the single "xapcore" distribution file.

Added:
    incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js   (with props)

Added: incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js?rev=432021&view=auto
==============================================================================
--- incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js (added)
+++ incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js Wed Aug 16 13:27:22 2006
@@ -0,0 +1,131 @@
+// pull in the dependency list and define it in the var "dependencies". This
+// overrides the default built into getDependencyList.js. The bootstrap and
+// hostenv files are included by default and don't need to be included here,
+// but you can change the hostenv file that's included by setting the value of
+// the variable "hostenvType" (defaults to "browser").
+var dependencies = [
+
+
+
+"xap.util.Utils",
+"xap.util.LogFactory",
+"xap.util.XmlUtils",
+"xap.util.Character",
+"xap.util.HttpUtils",
+"xap.util.UidProvider",
+"xap.util.Hashtable",
+"xap.util.ResourceDictionary",
+"xap.util.MessageFormat",
+"xap.util.EscapeSyntaxParser",
+"xap.util.Exception",
+"xap.util.XapException",
+"xap.util.XapExceptionRes",
+"xap.util.Profiler",
+"xap.util.ObjectHierarchyAnalyzer",
+"xap.requestservice.RequestService",
+"xap.xml.sax.SaxContentHandler",
+"xap.xml.dom.Document",
+"xap.xml.dom.events.DomChangeEvent",
+"xap.xml.dom.events.StructureChangeListener",
+"xap.xml.dom.events.StructureChangeEvent",
+"xap.xml.dom.XapElement",
+"xap.xml.dom.events.ChangeRejectedException",
+"xap.xml.dom.events.AttributeChangeListener",
+"xap.xml.dom.events.AttributeChangeEvent",
+"xap.session.ClientSession",
+
+"xap.bridges.dojo.DojoWidgetBridge",
+"xap.bridges.dojo.DojoButtonBridge",
+"xap.bridges.dojo.DojoContentPaneBridge",
+"xap.bridges.dojo.DojoFloatingPaneBridge",
+"xap.bridges.dojo.DojoGenericWidgetBridge",
+"xap.bridges.dojo.DojoLayoutPaneBridge",
+
+"xap.bridges.dojo.DojoDatePickerBridge",
+"xap.bridges.dojo.DojoColorPaletteBridge",
+
+"xap.bridges.basic.DomNodeBridge",
+"xap.bridges.basic.AbstractBlackBoxWidgetBridge",
+
+
+
+"xap.util.ArrayHelper",
+
+"xap.xml.InvalidXmlException",
+"xap.xml.sax.SaxParser",
+"xap.xml.sax.ParserException",
+"xap.xml.sax.EmptyDocumentException",
+"xap.session.Container",
+
+"xap.xml.NamespaceHandler",
+"xap.xml.XalNamespaceHandler",
+"xap.mco.McoNamespaceHandler",
+
+"xap.macro.MacroNamespaceHandler",
+"xap.xml.xmodify.XmodifyNamespaceHandler",
+"xap.xml.NamespaceHandlerManager",
+
+"xap.xml.xmodify.Xmodify",
+
+
+"xap.xml.DocumentContainer",
+
+"xap.macro.Macro",
+"xap.taghandling.PluginRegistryImpl",
+"xap.taghandling.PluginRegistry",
+"xap.taghandling.AbstractTagImpl",
+"xap.taghandling.PluginDocumentHandler",
+"xap.session.ClientEvent",
+"xap.session.EventHandler",
+"xap.session.DeclarativeArgumentParser",
+
+
+
+"xap.bridges.zimbra.DwtControlBridge",
+"xap.bridges.zimbra.DwtCompositeBridge",
+"xap.bridges.zimbra.DwtLabelBridge",
+"xap.bridges.basic.TextViewBridge",
+"xap.bridges.zimbra.DwtButtonBridge",
+
+"xap.bridges.google.GoogleBridge",
+"xap.bridges.google.GoogleInfoWindowBridge",
+"xap.bridges.google.GoogleIconBridge",
+"xap.bridges.google.GoogleIconsBridge",
+"xap.bridges.google.GoogleMapBridge",
+"xap.bridges.google.GoogleMarkerBridge",
+"xap.bridges.google.GoogleMarkersBridge",
+
+
+"xap.bridges.zimbra.DwtTabBridge",
+"xap.bridges.zimbra.DwtTabViewBridge",
+"xap.bridges.zimbra.DwtTextFieldBridge",
+"xap.bridges.zimbra.DwtTreeBridge",
+"xap.bridges.zimbra.DwtTreeItemBridge",
+"xap.bridges.zimbra.DwtSplitterBridge",
+"xap.bridges.zimbra.DwtSplitChildBridge",
+"xap.bridges.zimbra.DwtVerticalLayoutPanelBridge",
+"xap.bridges.zimbra.DwtHorizontalLayoutPanelBridge",
+
+
+
+
+"xap.xml.InvalidXmlExceptionRes",
+"xap.xml.sax.ParserExceptionRes",
+"xap.xml.sax.EmptyDocumentExceptionRes",
+"xap.xml.xmodify.UpdateDirective",
+"xap.xml.xmodify.XmodifyException",
+"xap.xml.xmodify.CommandDirective",
+"xap.xml.xmodify.DirectiveSet",
+"xap.mco.McoInvocationException",
+"xap.mco.McoInvocationExceptionRes",
+"xap.requestservice.NetServiceListener",
+"xap.requestservice.HttpRequest" 
+
+
+];
+
+dependencies.prefixes = [["google", "src/google"],["xap", "src/xap"]];  
+
+// NOTE: this MUST be included or a list of files must be output via print()
+// manually.
+load("getDependencyList.js");

Propchange: incubator/xap/trunk/dojo/buildscripts/profiles/xap.profile.js
------------------------------------------------------------------------------
    svn:eol-style = native