Repository: cayenne Updated Branches: refs/heads/STABLE-4.0 e4eb10f03 -> b3dae546f
http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/modelMap8.html ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/modelMap8.html b/docs/doc/src/main/resources/doc/schema/3.0/modelMap8.html deleted file mode 100644 index 9ccaf43..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/modelMap8.html +++ /dev/null @@ -1,578 +0,0 @@ -<!DOCTYPE html - PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Schema documentation for component cay:post-persist</title> - <link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /><script type="text/javascript"> - <!-- - var propertiesBoxes= new Array('properties_id54', - 'properties_id55'); - - - var usedByBoxes= new Array('usedBy_id54', - 'usedBy_id55'); - - var sourceBoxes= new Array('source_id54', - 'source_id55'); - - - var diagramBoxes= new Array('diagram_id54'); - - - var attributesBoxes= new Array('attributes_id54'); - - - var button_prefix = 'button_'; - - /** - * Returns an element in the current HTML document. - * - * @param elementID Identifier of HTML element - * @return HTML element object - */ - function getElementObject(elementID) { - var elemObj = null; - if (document.getElementById) { - elemObj = document.getElementById(elementID); - } - return elemObj; - } - - /** - * Switches the state of a collapseable box, e.g. - * if it's opened, it'll be closed, and vice versa. - * - * @param boxID Identifier of box - */ - function switchState(boxID) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(button_prefix + boxID); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (boxObj.style.display == "none") { - // Box is closed, so open it - openBox(boxObj, buttonObj); - } else if (boxObj.style.display == "block") { - // Box is opened, so close it - closeBox(boxObj, buttonObj); - } - } - - /** - * Opens a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function openBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "block"; - - // Change text of button - if (boxObj.style.display == "block") { - buttonObj.src = "images/button_minus.gif"; - } - } - } - - /** - * Closes a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function closeBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "none"; - - // Change text of button - if (boxObj.style.display == "none") { - buttonObj.src = "images/button_plus.gif"; - } - } - } - - function switchStateForAll(buttonObj, boxList) { - if (buttonObj == null) { - // button not found - } else if (buttonObj.value == "+") { - // Expand all - expandAll(boxList); - buttonObj.value = "-"; - } else if (buttonObj.value == "-") { - // Collapse all - collapseAll(boxList); - buttonObj.value = "+"; - } - } - - /** - * Closes all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function collapseAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - closeBox(boxObj, buttonObj); - } - } - - /** - * Open all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function expandAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - openBox(boxObj, buttonObj); - } - } - - /** - * Update the message presented in the title of the html page. - * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'" - * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'" - * - If no split we always present: "Documentation for 'MainSchema.xsd'" - */ - function updatePageTitle(message) { - top.document.title = message; - } - - - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function findAndFloat(id, x_displacement, y_displacement){ - - var element = getElementObject(id); - - window[id + "_obj"] = element; - - if(document.layers) { - element.style = element; - } - - element.current_y = y_displacement; - element.first_time = true; - - element.floatElement = function(){ - // It may be closed by an user action. - - // Target X and Y coordinates. - var x, y; - - var myWidth = 0, myHeight = 0; - if( typeof( window.innerWidth ) == 'number' ) { - //Non-IE - myWidth = window.innerWidth; - myHeight = window.innerHeight; - } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { - //IE 6+ in 'standards compliant mode' - myWidth = document.documentElement.clientWidth; - myHeight = document.documentElement.clientHeight; - } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { - //IE 4 compatible - myWidth = document.body.clientWidth; - myHeight = document.body.clientHeight; - } - - - x = myWidth - x_displacement; - - var ns = (navigator.appName.indexOf("Netscape") != -1); - y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? - document.documentElement.scrollTop : document.body.scrollTop; - y = y + y_displacement; - - // The current y is the current coordinate of the floating element. - // This should be at the limit the y target coordinate. - this.current_y += (y - this.current_y)/1.25; - - // Add the pixels constant after the values - // and move the element. - var px = document.layers ? "" : "px"; - this.style.left = x + px; - this.style.top = this.current_y + px; - - setTimeout(this.id + "_obj.floatElement()", 100); - } - - element.floatElement(); - return element; - } - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function selectTOCGroupBy(id){ - var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type'); - // Make all the tabs invisible. - for (i = 0; i < 3; i++){ - var tab = getElementObject(selectIds[i]); - tab.style.display = 'none'; - } - var selTab = getElementObject(id); - selTab.style.display = 'block'; - } - - - --></script></head> - <body> - <div id="global_controls" class="globalControls" style="position:absolute;right:0;"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <h3>Showing:</h3> - <table> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, attributesBoxes);" - class="control" /></span><span class="globalControlName">Attributes </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, diagramBoxes);" - class="control" /></span><span class="globalControlName">Diagrams</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, propertiesBoxes);" - class="control" /></span><span class="globalControlName">Properties </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, sourceBoxes);" - class="control" /></span><span class="globalControlName">Source</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, usedByBoxes);" - class="control" /></span><span class="globalControlName">Used by </span></td> - </tr> - </table> - <div align="right"><span><input type="button" - onclick="getElementObject('global_controls').style.display = 'none';" - value="Close" /></span></div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div><a id="id54"></a><div class="componentTitle">Element <span class="qname">cay:post-persist</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>http://cayenne.apache.org/schema/3.0/modelMap</td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Diagram</b></div> - <div class="floatRight"><input id="button_diagram_id54" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('diagram_id54');" - class="control" /></div> - </td> - <td class="diagram"> - <div id="diagram_id54" style="display:block"><img alt="Diagram" border="0" src="images/modelMap.html13.jpeg" - usemap="#modelMap_46_html13" /><map name="modelMap_46_html13" id="modelMap_46_html13"> - <area alt="modelMap8.tmp#id55" href="modelMap8.html#id55" coords="140,43,264,85" /></map></div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id54" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id54');" - class="control" /></div> - </td> - <td> - <div id="properties_id54" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">content: - - </td> - <td><b>complex</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id54" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id54');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id54" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Elements </td> - <td><b><a href="modelMap6.html#id51" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:entity-listener')">cay:entity-listener</a></b>, <b><a href="modelMap1.html#id33" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-entity')">cay:obj-entity</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Attributes</b></div> - <div class="floatRight"><input id="button_attributes_id54" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('attributes_id54');" - class="control" /></div> - </td> - <td> - <div id="attributes_id54" style="display:block"> - <table class="attributesTable"> - <thead> - <tr> - <th>QName</th> - <th>Type</th> - <th>Fixed</th> - <th>Default</th> - <th>Use</th> - <th>Annotation</th> - </tr> - </thead> - <tr> - <td class="firstColumn"><b><a href="modelMap8.html#id55" target="mainFrame" title="No namespace" - onclick="updatePageTitle('Schema documentation for component method-name')">method-name</a></b></td> - <td><b>xs:string</b></td> - <td></td> - <td></td> - <td>required</td> - <td> - <div class="annotation"></div> - </td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id54" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id54');" - class="control" /></div> - </td> - <td> - <div id="source_id54" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"post-persist"</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:complexType</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"method-name"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:complexType></span><span class="tokenIndent"> -</span><span class="tokenElement"></xs:element></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table><a id="id55"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="modelMap8.html#id54" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-persist')">cay:post-persist</a></b>/@method-name</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>No namespace</td> - </tr> - <tr> - <td class="firstColumn"><b>Type</b></td> - <td><b>xs:string</b></td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id55" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id55');" - class="control" /></div> - </td> - <td> - <div id="properties_id55" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">use: - - </td> - <td><b>required</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id55" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id55');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id55" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Element </td> - <td><b><a href="modelMap8.html#id54" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:post-persist')">cay:post-persist</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id55" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id55');" - class="control" /></div> - </td> - <td> - <div id="source_id55" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"method-name"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - <div class="footer"> - <hr /> - <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor. - </div> - </div><script type="text/javascript"> - <!-- - // The namespace is the selected option in the TOC combo. - - // The corresponding div is already visible conf. to its style attr. - - var selectToc = getElementObject('selectTOC'); - if(selectToc != null){ - // It can be null when having chunking, the combo of the TOC is in another frame. - selectToc.selectedIndex = 2; - } - - - // Floats the toolbar. - var globalControls = getElementObject("global_controls"); - - if(globalControls != null){ - var browser=navigator.appName; - var version = parseFloat(navigator.appVersion.split('MSIE')[1]); - - var IE6 = false; - if ((browser=="Microsoft Internet Explorer") && (version < 7)){ - IE6 = true; - } - - //alert (IE6 + " |V| " + version); - - if(IE6){ - // On IE 6 the 'fixed' property is not supported. We must use javascript. - globalControls.style.position='absolute'; - // The global controls will do not exist in the TOC frame, when chunking. - findAndFloat("global_controls", 225, 30); - } else { - globalControls.style.position='fixed'; - } - - globalControls.style.right='0'; - } - --></script></body> -</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/modelMap9.html ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/modelMap9.html b/docs/doc/src/main/resources/doc/schema/3.0/modelMap9.html deleted file mode 100644 index c597586..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/modelMap9.html +++ /dev/null @@ -1,578 +0,0 @@ -<!DOCTYPE html - PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> - <title>Schema documentation for component cay:pre-update</title> - <link rel="stylesheet" href="xsdDocHtml.css" type="text/css" /><script type="text/javascript"> - <!-- - var propertiesBoxes= new Array('properties_id56', - 'properties_id57'); - - - var usedByBoxes= new Array('usedBy_id56', - 'usedBy_id57'); - - var sourceBoxes= new Array('source_id56', - 'source_id57'); - - - var diagramBoxes= new Array('diagram_id56'); - - - var attributesBoxes= new Array('attributes_id56'); - - - var button_prefix = 'button_'; - - /** - * Returns an element in the current HTML document. - * - * @param elementID Identifier of HTML element - * @return HTML element object - */ - function getElementObject(elementID) { - var elemObj = null; - if (document.getElementById) { - elemObj = document.getElementById(elementID); - } - return elemObj; - } - - /** - * Switches the state of a collapseable box, e.g. - * if it's opened, it'll be closed, and vice versa. - * - * @param boxID Identifier of box - */ - function switchState(boxID) { - var boxObj = getElementObject(boxID); - var buttonObj = getElementObject(button_prefix + boxID); - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else if (boxObj.style.display == "none") { - // Box is closed, so open it - openBox(boxObj, buttonObj); - } else if (boxObj.style.display == "block") { - // Box is opened, so close it - closeBox(boxObj, buttonObj); - } - } - - /** - * Opens a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function openBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "block"; - - // Change text of button - if (boxObj.style.display == "block") { - buttonObj.src = "images/button_minus.gif"; - } - } - } - - /** - * Closes a collapseable box. - * - * @param boxObj Collapseable box - * @param buttonObj Button controlling box - */ - function closeBox(boxObj, buttonObj) { - if (boxObj == null || buttonObj == null) { - // Box or button not found - } else { - // Change 'display' CSS property of box - boxObj.style.display = "none"; - - // Change text of button - if (boxObj.style.display == "none") { - buttonObj.src = "images/button_plus.gif"; - } - } - } - - function switchStateForAll(buttonObj, boxList) { - if (buttonObj == null) { - // button not found - } else if (buttonObj.value == "+") { - // Expand all - expandAll(boxList); - buttonObj.value = "-"; - } else if (buttonObj.value == "-") { - // Collapse all - collapseAll(boxList); - buttonObj.value = "+"; - } - } - - /** - * Closes all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function collapseAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - closeBox(boxObj, buttonObj); - } - } - - /** - * Open all boxes in a given list. - * - * @param boxList Array of box IDs - */ - function expandAll(boxList) { - var idx; - for (idx = 0; idx < boxList.length; idx++) { - var boxObj = getElementObject(boxList[idx]); - var buttonObj = getElementObject(button_prefix + boxList[idx]); - openBox(boxObj, buttonObj); - } - } - - /** - * Update the message presented in the title of the html page. - * - If the documentation was splited by namespace we present something like: "Documentation for namespace 'ns'" - * - If the documentation was splited by location we present somehing like: "Documentation for 'Schema.xsd'" - * - If no split we always present: "Documentation for 'MainSchema.xsd'" - */ - function updatePageTitle(message) { - top.document.title = message; - } - - - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function findAndFloat(id, x_displacement, y_displacement){ - - var element = getElementObject(id); - - window[id + "_obj"] = element; - - if(document.layers) { - element.style = element; - } - - element.current_y = y_displacement; - element.first_time = true; - - element.floatElement = function(){ - // It may be closed by an user action. - - // Target X and Y coordinates. - var x, y; - - var myWidth = 0, myHeight = 0; - if( typeof( window.innerWidth ) == 'number' ) { - //Non-IE - myWidth = window.innerWidth; - myHeight = window.innerHeight; - } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) { - //IE 6+ in 'standards compliant mode' - myWidth = document.documentElement.clientWidth; - myHeight = document.documentElement.clientHeight; - } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) { - //IE 4 compatible - myWidth = document.body.clientWidth; - myHeight = document.body.clientHeight; - } - - - x = myWidth - x_displacement; - - var ns = (navigator.appName.indexOf("Netscape") != -1); - y = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? - document.documentElement.scrollTop : document.body.scrollTop; - y = y + y_displacement; - - // The current y is the current coordinate of the floating element. - // This should be at the limit the y target coordinate. - this.current_y += (y - this.current_y)/1.25; - - // Add the pixels constant after the values - // and move the element. - var px = document.layers ? "" : "px"; - this.style.left = x + px; - this.style.top = this.current_y + px; - - setTimeout(this.id + "_obj.floatElement()", 100); - } - - element.floatElement(); - return element; - } - - /** - * Finds an HTML element by its ID and makes it floatable over the normal content. - * - * @param x_displacement The difference in pixels to the right side of the window from - * the left side of the element. - * @param y_displacement The difference in pixels to the right side of the window from - * the top of the element. - */ - function selectTOCGroupBy(id){ - var selectIds = new Array('toc_group_by_namespace', 'toc_group_by_location', 'toc_group_by_component_type'); - // Make all the tabs invisible. - for (i = 0; i < 3; i++){ - var tab = getElementObject(selectIds[i]); - tab.style.display = 'none'; - } - var selTab = getElementObject(id); - selTab.style.display = 'block'; - } - - - --></script></head> - <body> - <div id="global_controls" class="globalControls" style="position:absolute;right:0;"> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <h3>Showing:</h3> - <table> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, attributesBoxes);" - class="control" /></span><span class="globalControlName">Attributes </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, diagramBoxes);" - class="control" /></span><span class="globalControlName">Diagrams</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, propertiesBoxes);" - class="control" /></span><span class="globalControlName">Properties </span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, sourceBoxes);" - class="control" /></span><span class="globalControlName">Source</span></td> - </tr> - <tr> - <td><span><input type="checkbox" value="-" checked="checked" - onclick="switchStateForAll(this, usedByBoxes);" - class="control" /></span><span class="globalControlName">Used by </span></td> - </tr> - </table> - <div align="right"><span><input type="button" - onclick="getElementObject('global_controls').style.display = 'none';" - value="Close" /></span></div> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - </div><a id="id56"></a><div class="componentTitle">Element <span class="qname">cay:pre-update</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>http://cayenne.apache.org/schema/3.0/modelMap</td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Diagram</b></div> - <div class="floatRight"><input id="button_diagram_id56" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('diagram_id56');" - class="control" /></div> - </td> - <td class="diagram"> - <div id="diagram_id56" style="display:block"><img alt="Diagram" border="0" src="images/modelMap.html26.jpeg" - usemap="#modelMap_46_html26" /><map name="modelMap_46_html26" id="modelMap_46_html26"> - <area alt="modelMap9.tmp#id57" href="modelMap9.html#id57" coords="134,43,258,85" /></map></div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id56" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id56');" - class="control" /></div> - </td> - <td> - <div id="properties_id56" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">content: - - </td> - <td><b>complex</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id56" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id56');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id56" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Elements </td> - <td><b><a href="modelMap6.html#id51" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:entity-listener')">cay:entity-listener</a></b>, <b><a href="modelMap1.html#id33" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:obj-entity')">cay:obj-entity</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Attributes</b></div> - <div class="floatRight"><input id="button_attributes_id56" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('attributes_id56');" - class="control" /></div> - </td> - <td> - <div id="attributes_id56" style="display:block"> - <table class="attributesTable"> - <thead> - <tr> - <th>QName</th> - <th>Type</th> - <th>Fixed</th> - <th>Default</th> - <th>Use</th> - <th>Annotation</th> - </tr> - </thead> - <tr> - <td class="firstColumn"><b><a href="modelMap9.html#id57" target="mainFrame" title="No namespace" - onclick="updatePageTitle('Schema documentation for component method-name')">method-name</a></b></td> - <td><b>xs:string</b></td> - <td></td> - <td></td> - <td>required</td> - <td> - <div class="annotation"></div> - </td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id56" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id56');" - class="control" /></div> - </td> - <td> - <div id="source_id56" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:element</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"pre-update"</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:complexType</span><span class="tokenElement">></span><span class="tokenIndent"> - </span><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"method-name"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span><span class="tokenIndent"> - </span><span class="tokenElement"></xs:complexType></span><span class="tokenIndent"> -</span><span class="tokenElement"></xs:element></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table><a id="id57"></a><div class="componentTitle">Attribute <span class="qname"><b><a href="modelMap9.html#id56" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-update')">cay:pre-update</a></b>/@method-name</span></div> - <table class="rt"> - <tr> - <td class="rt_cornerTopLeft"></td> - <td class="rt_lineTop"></td> - <td class="rt_cornerTopRight"></td> - </tr> - <tr> - <td class="rt_lineLeft"></td> - <td class="rt_content"> - <table class="component"> - <tbody> - <tr> - <td class="firstColumn"><b>Namespace</b></td> - <td>No namespace</td> - </tr> - <tr> - <td class="firstColumn"><b>Type</b></td> - <td><b>xs:string</b></td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Properties</b></div> - <div class="floatRight"><input id="button_properties_id57" type="image" src="images/button_minus.gif" - value="-" - onclick="switchState('properties_id57');" - class="control" /></div> - </td> - <td> - <div id="properties_id57" style="display:block"> - <table class="propertiesTable"> - <tr> - <td class="firstColumn">use: - - </td> - <td><b>required</b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Used by</b></div> - <div class="floatRight"><input id="button_usedBy_id57" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('usedBy_id57');" - class="control" /></div> - </td> - <td> - <div id="usedBy_id57" style="display:block"> - <table class="usedByTable"> - <tr> - <td class="firstColumn">Element </td> - <td><b><a href="modelMap9.html#id56" target="mainFrame" - title="http://cayenne.apache.org/schema/3.0/modelMap" - onclick="updatePageTitle('Schema documentation for component cay:pre-update')">cay:pre-update</a></b></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"> - <div class="floatLeft"><b>Source</b></div> - <div class="floatRight"><input id="button_source_id57" type="image" src="images/button_minus.gif" value="-" - onclick="switchState('source_id57');" - class="control" /></div> - </td> - <td> - <div id="source_id57" style="display:block"> - <table style="table-layout:fixed;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space: -o-pre-wrap;word-wrap: break-word;_white-space:pre;" - class="preWrapContainer"> - <tr> - <td width="100%"><pre><span class="tokenElement"><xs:attribute</span><span class="tokenAttrName"> name=</span><span class="tokenAttrValue">"method-name"</span><span class="tokenAttrName"> use=</span><span class="tokenAttrValue">"required"</span><span class="tokenAttrName"> type=</span><span class="tokenAttrValue">"xs:string"</span><span class="tokenElement">/></span></pre></td> - </tr> - </table> - </div> - </td> - </tr> - <tr> - <td class="firstColumn"><b>Schema location</b></td> - <td>file:/Users/ari/svn/cayenne/framework/cayenne-jdk1.5-unpublished/src/main/resources/org/apache/cayenne/schema/3.0/modelMap.xsd</td> - </tr> - </tbody> - </table> - </td> - <td class="rt_lineRight"></td> - </tr> - <tr> - <td class="rt_cornerBottomLeft"></td> - <td class="rt_lineBottom"></td> - <td class="rt_cornerBottomRight"></td> - </tr> - </table> - <div class="footer"> - <hr /> - <div align="center">XML Schema documentation generated by <a href="http://www.oxygenxml.com" target="_parent"><span class="oXygenLogo"><span class="redX"><</span>o<span class="redX">X</span>ygen<span class="redX">/></span></span></a><sup>®</sup> XML Editor. - </div> - </div><script type="text/javascript"> - <!-- - // The namespace is the selected option in the TOC combo. - - // The corresponding div is already visible conf. to its style attr. - - var selectToc = getElementObject('selectTOC'); - if(selectToc != null){ - // It can be null when having chunking, the combo of the TOC is in another frame. - selectToc.selectedIndex = 2; - } - - - // Floats the toolbar. - var globalControls = getElementObject("global_controls"); - - if(globalControls != null){ - var browser=navigator.appName; - var version = parseFloat(navigator.appVersion.split('MSIE')[1]); - - var IE6 = false; - if ((browser=="Microsoft Internet Explorer") && (version < 7)){ - IE6 = true; - } - - //alert (IE6 + " |V| " + version); - - if(IE6){ - // On IE 6 the 'fixed' property is not supported. We must use javascript. - globalControls.style.position='absolute'; - // The global controls will do not exist in the TOC frame, when chunking. - findAndFloat("global_controls", 225, 30); - } else { - globalControls.style.position='fixed'; - } - - globalControls.style.right='0'; - } - --></script></body> -</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/schema/3.0/xsdDocHtml.css ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/schema/3.0/xsdDocHtml.css b/docs/doc/src/main/resources/doc/schema/3.0/xsdDocHtml.css deleted file mode 100644 index 17a1575..0000000 --- a/docs/doc/src/main/resources/doc/schema/3.0/xsdDocHtml.css +++ /dev/null @@ -1,554 +0,0 @@ -/*---------------------------------------- - Global ------------------------------------------*/ - -body{ -} -body, table { - font-family:arial, helvetica, sans-serif; - font-size:12px; -} - -@media print{ - body, table { - font-size:10px; - } -} - -/*-------------------------------------------- - Source code in the instance, source or - annotations. ---------------------------------------------*/ -span.tokenElement { - color: #000096; - background-color:inherit; -} -span.tokenAttrName { - color: #F5844C; - background-color:inherit; -} -span.tokenAttrValue { - color: #993300; - background-color:inherit; -} -span.tokenIndent { - color: #000000; - background-color:inherit; -} -span.tokenText { - color: #000000; - background-color:inherit; -} -span.tokenComment { - color: #006400; - background-color:inherit; -} -span.tokenCDATA { - color: #008C00; - background-color:inherit; -} -span.tokenPI { - color: #8B26C9; - background-color:inherit; -} -span.tokenEntity { - color: #969600; - background-color:inherit; -} -span.qname{ - color:#000096; - background-color:inherit; -} - -/*----------------------------------------- - Documentation sections. -------------------------------------------*/ - -div.componentTitle { - font-size:1.4em; - font-weight:bold; - text-align:left; - margin-top:1.4em; - margin-bottom:0.7em; -} -div.componentTitle{ -/* color:rgb(255, 160, 100);*/ - color:#333333; - background-color:inherit; -} - - -/* Tables. */ - -td, th { - padding:2px 2px 2px 5px; - text-align:left; - vertical-align:top; -} - -tr > th { - background-color:#C4DAF4; - color:inherit; -} - -/* Contrast for the titles*/ -table.component { - width:100%; - border-spacing:1px; -} - -@media print{ - table.component{ - border:1px solid gray; - border-collapse:collapse; - } - - table.component td{ - border:1px solid gray; - } -} - - - -table.component td.firstColumn{ -/* pink */ - /*background-color:#FFC0C0;*/ -/*green */ - /* background-color:#C0F0A0;*/ -/*bleu*/ - /*background-color:#89C6E2;*/ -/*orange*/ - /*background-color:#FFD697;*/ -/*brown*/ - /*background-color:#D5BC8E;*/ -/*lilla*/ - /*background-color:#DDDDFF;*/ -/*gray-bleu*/ - /*background-color:#CAD0DD;*/ -/*brown-light*/ - /*background-color:#DECFB8;*/ -/*gray-green*/ - /*background-color:#C6D0CD;*/ -/*bleu-2*/ - /*background-color:#B5D5FF;*/ -/*gray*/ - /*background-color:#CCCCCC;*/ - - -/*bleu */ -background-color:#C4DAF4; - - - - color:black; - width:12%; -} - -table.component table td.firstColumn{ - border:none; - background-color:#EAF1FB; - color: inherit; -} - -td.firstColumn b{ - font-weight:normal; -} - - -/* The Name and Expand/Collapse control are on the same line - but at different ends.*/ -td.firstColumn div.floatLeft{ - float:left; -} -td.firstColumn div.floatRight{ - float:right; -} - -/* Subtables */ -table.component table{ - width:100%; -} -table.component table, -table.component table td, -table.component table th{ - border:0; -} - - -/* Properties table */ -table.propertiesTable { - border-spacing:1px; -} -table.propertiesTable td.firstColumn{ - width:140px; - text-transform:capitalize; -} -/* Used by table */ -table.usedByTable { - border-spacing:1px; -} -table.usedByTable td.firstColumn{ - width:140px; - text-transform:capitalize; -} - -/* Facets table*/ -table.facetsTable { - border-spacing:1px; -} -table.facetsTable td.firstColumn{ - width:140px; - text-transform:capitalize; -} - -/* Attributes table */ -table.attributesTable { - border-spacing:1px; -} -table.attributesTable th{ - font-weight:normal; -} -table.attributesTable tr:hover{ - color:inherit; - background-color:#EAF1FB; -} - - -/* Identity constraints table */ -table.identityConstraintsTable { - border-spacing:1px; -} -table.identityConstraintsTable th{ - font-weight:normal; -} -table.identityConstraintsTable tr:hover{ - color:inherit; - background-color:#EAF1FB; -} - - - -/*--------------------------------------- - The diagram. -----------------------------------------*/ - -table.component td.diagram { - background-color:white; - color:inherit; -} - - -/* This table is a workaround for an IE bug regarding pre-wrap */ -table.preWrapContainer, -table.preWrapContainer td{ - border:0; - margin:0; - padding:0; -} - - -/* Annotations. */ -div.annotation{ -} -div.annotation pre{ - font-family:arial, helvetica, sans-serif; - margin:0; -} -div.annotation, -div.annotation table, -div.annotation table td{ - margin:0; - padding:0; -} - -/* Hierarchy */ -ul > li{ - list-style:none; -} - -ul { - margin:2px; - padding:0; -} - -ul ul li { - padding-left:10px; - - list-style-image:url('images/hierarchy_arrow.gif'); - list-style-position:inside; -} - -/*------------------------------------- - Rounded tables. ----------------------------------------*/ - -table.rt, -table.rt_with_bg{ - border-collapse:collapse; - border-spacing:0; - width:100%; -} -table.rt_with_bg{ - /*background-color:#C0F0A0;*/ - background-color:white; - color:inherit; -} - - -.rt_cornerTopLeft{ - background-color:transparent; - background-repeat:no-repeat; - background-position:right; - width:8px; - height:8px; - margin:0; - padding:0; -} -.rt_cornerTopLeft{ - background-image:url('images/corner_top_left.gif'); -} - - -.rt_cornerBottomLeft{ - background-color:transparent; - background-repeat:no-repeat; - background-position:right; - width:8px; - height:8px; - margin:0; - padding:0; -} -.rt_cornerBottomLeft{ - background-image:url('images/corner_bottom_left.gif'); -} - - -.rt_cornerTopRight{ - background-color:transparent; - background-repeat:no-repeat; - width:8px; - height:8px; - margin:0; - padding:0; - -} -.rt_cornerTopRight{ - background-image:url('images/corner_top_right.gif'); -} - - -.rt_cornerBottomRight{ - background-color:transparent; - background-repeat:no-repeat; - width:8px; - height:8px; - margin:0; - padding:0; - -} -.rt_cornerBottomRight{ - background-image:url('images/corner_bottom_right.gif'); -} - - -.rt_content{ - background-color:white; - color:inherit; - width:auto; - margin:0; - padding:0; -} - - -.rt_lineLeft{ - background-color:transparent; - background-repeat:repeat-y; - background-position:right; - width:8px; - margin:0; - padding:0; - -} -.rt_lineLeft{ - background-image:url('images/line_left.gif'); -} - - -.rt_lineRight{ - background-repeat:repeat-y; - width:8px; - margin:0; - padding:0; -} -.rt_lineRight{ - background-image:url('images/line_right.gif'); -} - - -.rt_lineTop{ - background-color:transparent; - background-repeat:repeat-x; - height:8px; - width:auto; - margin:0; - padding:0; -} -.rt_lineTop{ - background-image:url('images/line_top.gif'); -} - -.rt_lineBottom{ - background-color:transparent; - background-repeat:repeat-x; - height:8px; - width:auto; - margin:0; - padding:0; -} -.rt_lineBottom{ - background-image:url('images/line_bottom.gif'); -} - - -/* -------------------------------------- - Controls for bulk showing/hidding sections - from the documentation. -----------------------------------------*/ - -.globalControls h3{ - margin:0.1em; - font-size:1.2em; -} - -.globalControls table td{ - padding:0; - margin:0; -} - -.globalControls{ - position:fixed; - right:0; - background-color:transparent; - padding-left:0.5em; - padding-right:0.5em; - padding-bottom:0.5em; - width:190px; -} - -@media print{ - .globalControls{ - display:none; - } -} - -/* Expand/collapse of a single section. */ -input.control { - text-align:center; - vertical-align:middle; - padding:0; - padding-right:3px; - padding-bottom:2px; - -} - - -/* close button */ -td.rt_content div span input{ - font-size:0.8em; -} - -@media print{ - input.control{ - display:none; - } -} - - - - -/*----------------------------------------- - Navigation. -------------------------------------------*/ -a, a:visited { - color:rgb(0, 0, 150); - background-color:inherit; -} - -a:link, a:visited { - text-decoration:none; -} -a:hover { - text-decoration:underline; -} - -div.toTop{ - text-align:right; -} -div.toTop a{ - font-weight:normal; -} - - - - -/*------------------------------------------ - The second level of index. Floating DIVs --------------------------------------------*/ -.toc { -} -.toc div.verticalLayout, div.horizontalLayout{ - float:left; - display:block; - - background-color:white; - color:inherit; - - min-width:130px; - min-height:50px; - - padding:0.5em; -} -/* This is not used. */ -.toc div.verticalLayout { - clear:left; -} - -/* Hack for the IE - acts like a minimum height.*/ -* html .toc div.horizontalLayout, -* html .toc div.verticalLayout { - width:120px; - height:60px; -} - -.toc div.componentGroupTitle{ - font-weight:bold; - margin-bottom:0.5em; - color:black; - background-color:inherit; -} - -/* Namespacces or system ids in the TOC. */ -.toc .indexGroupTitle { - font-weight:bold; - margin-bottom:0.5em; -} - -/*---------------- - The footer. ------------------*/ -.footer{ - margin-top:3em; -} -.redX{ - color:red; - background-color:inherit; - font-size:1.2em; -} -.oXygenLogo{ - color:#1166DD; - background-color:inherit; - font-weight:bold; - font-size:1.2em; -} - - http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/docs/doc/src/main/resources/doc/style.css ---------------------------------------------------------------------- diff --git a/docs/doc/src/main/resources/doc/style.css b/docs/doc/src/main/resources/doc/style.css deleted file mode 100644 index 84adfb8..0000000 --- a/docs/doc/src/main/resources/doc/style.css +++ /dev/null @@ -1,292 +0,0 @@ -/* - Licensed to the Apache Software Foundation (ASF) under one - or more contributor license agreements. See the NOTICE file - distributed with this work for additional information - regarding copyright ownership. The ASF licenses this file - to you under the Apache License, Version 2.0 (the - "License"); you may not use this file except in compliance - with the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, - software distributed under the License is distributed on an - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - KIND, either express or implied. See the License for the - specific language governing permissions and limitations - under the License. -*/ -body, p, td, table, tr { - font-family: Verdana, arial, sans-serif; - font-size: 11px; - line-height: 16px; - color: #000000; - font-weight: normal; -} - -body { - margin: 0; - padding: 0; -} - -#ConfluenceContent { - text-align: left; - padding: 0 0 5px 10px; -} - -#cayenne_toc { - float: right; - width: 200px; - margin-top: 5px; - text-align: left; - padding: 5px; - background-color: #fff; -} - -#cayenne_toc ul { - border: 1px #778899 solid; -} - -#cayenne_toc ul ul { - border: 0; -} - -.pagetitle { - font-size: 22px; - font-weight: bold; - font-family: Arial, sans-serif; - color: #000000; -} -.header { - padding: 10px 0 10px 0px; - width: 100%; - border-bottom: 1px solid #778899; -} -.logoSpaceLink {color: #cc0000; text-decoration: none} -.logoSpaceLink a:link {color: #cc0000; text-decoration: none} -.logoSpaceLink a:visited {color: #cc0000; text-decoration: none} -.logoSpaceLink a:active {color: #cc0000; text-decoration: none} -.logoSpaceLink a:hover {color: #000000; text-decoration: none} - - -ul, ol { - margin-top: 2px; - margin-bottom: 2px; - padding-top: 0px; - padding-bottom: 0px; -} - -pre { - padding: 0px; - margin-top: 5px; - margin-left: 15px; - margin-bottom: 5px; - margin-right: 5px; - text-align: left; -} - -.code { - border: 1px dashed #666666; - font-size: 11px; - font-family: Courier; - margin: 10px; - line-height: 13px; -} - -.panel { - border: 1px dashed #666666; - margin: 10px; - margin-top: 0px; -} - -.panelHeader { - background-color: #f0f0f0; - border-bottom: 1px dashed #666666; - padding: 3px; - text-align: center; -} - -.panelContent { - background-color: #f0f0f0; - padding: 5px; -} - -.infopanel-heading { - font-weight: bold; - padding: 4px 0px 2px 0px; -} - -HR { - color: 3c78b5; - height: 1; -} - - -h1 { - font-size: 24px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - color: #000000; - border-bottom: 1px solid #666666; - padding: 2px; - margin: 36px 0px 4px 0px; -} - -h2 { - font-size: 18px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - border-bottom: 1px solid #666666; - padding: 2px; - margin: 27px 0px 4px 0px; -} - -h3 { - font-size: 14px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - padding: 2px; - margin: 21px 0px 4px 0px; -} - -h4 { - font-size: 12px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - padding: 2px; - margin: 18px 0px 4px 0px; -} - -h4.search { - font-size: 12px; - line-height: normal; - font-weight: normal; - background-color: #f0f0f0; - padding: 4px; - margin: 18px 0px 4px 0px; -} - -h5 { - font-size: 10px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - padding: 2px; - margin: 14px 0px 4px 0px; -} - -h6 { - font-size: 8px; - line-height: normal; - font-weight: bold; - background-color: #f0f0f0; - padding: 2px; - margin: 14px 0px 4px 0px; -} - -.smallfont { - font-size: 10px; -} -.descfont { - font-size: 10px; - color: #666666; -} -.smallerfont { - font-size: 9px; -} -.smalltext { - color: #666666; - font-size: 10px; -} -.smalltext a { - color: #666666; -} -.smalltext-blue { - color: #666666; - font-size: 10px; -} -.surtitle { - margin-left: 1px; - margin-bottom: 5px; - font-size: 14px; - color: #666666; -} - -.bottomshadow { - height: 12px; - background-image: url("../../../images/border/border_bottom.gif"); - background-repeat: repeat-x; -} - -.noteMacro { border-style: solid; border-width: 1px; border-color: #F0C000; background-color: #FFFFCE; text-align:left; margin-top: 5px; margin-bottom: 5px} -.warningMacro { border-style: solid; border-width: 1px; border-color: #c00; background-color: #fcc; text-align:left; margin-top: 5px; margin-bottom: 5px} -.infoMacro { border-style: solid; border-width: 1px; border-color: #3c78b5; background-color: #D8E4F1; text-align:left; margin-top: 5px; margin-bottom: 5px} -.tipMacro { border-style: solid; border-width: 1px; border-color: #090; background-color: #dfd; text-align:left; margin-top: 5px; margin-bottom: 5px} -.informationMacroPadding { padding: 5px 0 0 5px; } - -table.infoMacro td, table.warningMacro td, table.tipMacro td, table.noteMacro td, table.sectionMacro td { - border: none; -} - - -table.confluenceTable -{ - margin: 5px; - border-collapse: collapse; -} - -/* Added as a temporary fix for CONF-4223. The table elements appear to be inheriting the border: none attribute from the sectionMacro class */ -table.confluenceTable td.confluenceTd -{ - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: 3px 4px 3px 4px; -} - -/* Added as a temporary fix for CONF-4223. The table elements appear to be inheriting the border: none attribute from the sectionMacro class */ -table.confluenceTable th.confluenceTh -{ - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: 3px 4px 3px 4px; - background-color: #f0f0f0; - text-align: center; -} - -td.confluenceTd -{ - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: 3px 4px 3px 4px; -} - -th.confluenceTh -{ - border-width: 1px; - border-style: solid; - border-color: #ccc; - padding: 3px 4px 3px 4px; - background-color: #f0f0f0; - text-align: center; -} - - -.clearer { - clear: both; - display: block; - height: 1px; - margin-bottom: -1px; - font-size: 1px; - line-height: 1px; -} - -.copyright { - text-align: center; -} http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/modeler/cayenne-modeler-mac/src/main/resources/README.txt ---------------------------------------------------------------------- diff --git a/modeler/cayenne-modeler-mac/src/main/resources/README.txt b/modeler/cayenne-modeler-mac/src/main/resources/README.txt index 29a3f5f..eaee13e 100644 --- a/modeler/cayenne-modeler-mac/src/main/resources/README.txt +++ b/modeler/cayenne-modeler-mac/src/main/resources/README.txt @@ -5,7 +5,7 @@ MAC OS X INSTALLATION 1. "CayenneModeler.app" is the GUI modeler. Drag it to a folder where you normally put your applications (e.g. in the "Applications" folder). It - requires Java 7 or newer. + requires Java 8 or newer. 2. "cayenne-xxx" folder contains Cayenne documentation and runtime libraries. Drag it anywhere you would normally place such things. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cayenne/blob/b3dae546/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 4be33cc..aeb0c95 100644 --- a/pom.xml +++ b/pom.xml @@ -746,6 +746,10 @@ <version>2.2-beta-5</version> </plugin> <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.7</version> + </plugin> + <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.20.1</version> </plugin>