pbwest 2003/01/20 06:59:18 Added: src/documentation/content/design/alt.design alt-design-frameset.html codeframe.html logo.html Log: Code documentation Revision Changes Path 1.1 xml-fop/src/documentation/content/design/alt.design/alt-design-frameset.html Index: alt-design-frameset.html =================================================================== <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <html> <head> <title>Alt Design Frameset</title> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <style> body { font-family: Verdana, Helvetica, sans-serif; } frame.logo {align=right;} .note { border: solid 1px #7099C5; background-color: #f0f0ff; } .note .label { background-color: #7099C5; color: #ffffff; } .content { padding: 5px 5px 5px 10px; font : Verdana, Helvetica, sans-serif; font-size : 90%; } </style> <script type="application/x-javascript"> <!-- var isWide = false; var isHigh = true; function widenCol() { if (isWide) { return; } fset = document.getElementById("altDesignFramesetCols"); fset.setAttribute("cols", "60%,*"); logowin = top.frames[0]; logodoc = logowin.document; wbutton = logodoc.getElementById("widenButton"); //tnode = document.createTextNode("<"); //tchild = wbutton.firstChild; wbutton.setAttribute("value", "<"); isWide = true; } function narrowCol() { if ( ! isWide) { return; } fset = document.getElementById("altDesignFramesetCols"); fset.setAttribute("cols", "200,*"); logowin = top.frames[0]; logodoc = logowin.document; wbutton = logodoc.getElementById("widenButton"); //tnode = document.createTextNode(">"); //tchild = wbutton.firstChild; //wbutton.replaceChild(tnode, tchild); wbutton.setAttribute("value", ">"); isWide = false; } function toggleColWidths() { if (isWide) { narrowCol(); } else { widenCol() } } function lengthenCol() { if (isHigh) { return; } fset = document.getElementById("altDesignFramesetRows"); fset.setAttribute("rows", "75%,*"); logowin = top.frames[0]; logodoc = logowin.document; lbutton = logodoc.getElementById("lengthenButton"); //tnode = document.createTextNode("^"); //tchild = lbutton.firstChild; //lbutton.replaceChild(tnode, tchild); lbutton.setAttribute("value", "^"); isHigh = true; } function shortenCol() { if ( ! isHigh) { return; } fset = document.getElementById("altDesignFramesetRows"); fset.setAttribute("rows", "100,*"); logowin = top.frames[0]; logodoc = logowin.document; lbutton = logodoc.getElementById("lengthenButton"); //tnode = document.createTextNode("v"); //tchild = lbutton.firstChild; //lbutton.replaceChild(tnode, tchild); lbutton.setAttribute("value", "v"); isHigh = false; } function toggleColHeights() { if (isHigh) { shortenCol(); } else { lengthenCol() } } function displayCode(src) { top.frames[1].location = src; widenCol(); shortenCol(); } function displayHtml(src) { top.frames[2].location = src; narrowCol(); lengthenCol(); } --> </script> </head> <frameset id="altDesignFramesetCols" cols="200,*"> <frameset id="altDesignFramesetRows" rows="75%,*"> <frame id="logoFrame" class="logo" style="padding: 0px; margin: 0px: border: 0px;" src="logo.html" scrolling="no"> <frame id= "codeDisplayFrame" class= "codeDisplay" src= "codeframe.html" > </frameset> <frame id="contents" src="properties/introduction.html"> </frameset> </html> 1.1 xml-fop/src/documentation/content/design/alt.design/codeframe.html Index: codeframe.html =================================================================== <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Frame for Code Display</title> <style type="text/css"> <!-- p { text-align:center } --> </style> </head> <body> <p>Frame for code display.</p> </body> </html> 1.1 xml-fop/src/documentation/content/design/alt.design/logo.html Index: logo.html =================================================================== <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Logo for Properties</title> <style type="text/css"> <!-- body { font-family: Verdana, Helvetica, sans-serif; background-image: url(../../images/logo.jpg); background-position: top center; background-repeat: no-repeat; background-attachment: fixed; background-color:#294563;border:0px;padding:0px:margin:0px } img {padding:0px;margin:0px;border:0px;} input {float:right;} input#widenButton {position:fixed; top: 0px; right: 0px} input#lengthenButton {position:fixed; top: 2em; right: 0px} li.toplevel {color: #CFDCED} .menu { margin: 0px; padding: 0px; } .menu a:link {color: white} .menu a:visited {color: white} .menu a:hover {color: #FFCC00} .menu ul { margin: 0px 0px 0px 20px; padding: 0px; } .content { padding: 5px 5px 5px 10px; font : small Verdana, Helvetica, sans-serif; font-size : 90%; } --> </style> </head> <body> <input id="widenButton" onclick="parent.toggleColWidths();return true;" type="button" value=">"> <input id="lengthenButton" onclick="parent.toggleColHeights();return true;" type="button" value="^"> <div id="menu" class="menu"> <ul> <li class="toplevel">Index <ul> <li> <a href="../../index.html" target="_parent">FOP Home</a> </li> <li> <a href="index.html" target="_parent">Alt Design</a> </li> </ul> </li> <li class="toplevel">Alt Design Properties</font> <ul> <li> <a href= "javascript:parent.displayHtml( 'properties/introduction.html' )" >Introduction</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/classes-overview.html' )" >Classes overview</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/PropertyConsts-class.html' )" >PropertyConsts</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/simple-properties.html' )" >Simple Properties</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/getInitialValue.html' )" >getInitialValue</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/enumerated-values.html' )" >Enumerated data</a> </li> <li> <a href= "javascript:parent.displayHtml( 'properties/propertyExpressions.html' )" >Property parsing</a> </li> </ul> </li> </ul> </div> </body> </html>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]