summaryrefslogtreecommitdiff
path: root/jarmonbuild/yuidoc_template/main.tmpl
diff options
context:
space:
mode:
Diffstat (limited to 'jarmonbuild/yuidoc_template/main.tmpl')
-rw-r--r--jarmonbuild/yuidoc_template/main.tmpl695
1 files changed, 0 insertions, 695 deletions
diff --git a/jarmonbuild/yuidoc_template/main.tmpl b/jarmonbuild/yuidoc_template/main.tmpl
deleted file mode 100644
index 15dce3e..0000000
--- a/jarmonbuild/yuidoc_template/main.tmpl
+++ /dev/null
@@ -1,695 +0,0 @@
-#encoding UTF-8
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html xmlns:yui="http://yuilibrary.com/rdf/1.0/yui.rdf#">
-<head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
- <title>API: $modulename #if $classname# $classname #end if# #if $filename# $filename #end if#</title>
-
- <link rel="stylesheet" type="text/css" href="assets/reset-fonts-grids-min.css#if $timestamp#?stamp=$timestamp#end if#" />
- <link rel="stylesheet" type="text/css" href="assets/api.css#if $timestamp#?stamp=$timestamp#end if#" />
-
- <script type="text/javascript" src="assets/api-js#if $timestamp#?stamp=$timestamp#end if#"></script>
- <script type="text/javascript" src="assets/ac-js#if $timestamp#?stamp=$timestamp#end if#"></script>
-</head>
-
-<body id="yahoo-com">
-
-<div id="doc3" class="yui-t2">
- <div id="hd">
- <h1><a href="$projecturl" title="$projectname">$projectname v$version API Documentation</a></h1>
- <h3>$moduletitle&nbsp; <span class="subtitle">$version</span></h3>
- <a href="./index.html" title="$projectname">$projectname</a>
- #if $modulename
- &gt; <a href="./${cleansedmodulename}.html" title="$modulename">$modulename</a>
- #if $classname# &gt; $classname #end if#
- #if $filename# &gt; $filename (source view) #end if#
- #end if
- <form onsubmit="return false">
- <div id="propertysearch">
- Search: <input autocomplete="off" id="searchinput" />
- <div id="searchresults">
- &nbsp;
- </div>
- </div>
- </form>
- </div>
-
- <div id="bd">
- <div id="yui-main">
- <div class="yui-b">
- <form action="#" name="yui-classopts-form" method="get" id="yui-classopts-form">
- <fieldset>
- <legend>Filters</legend>
- <span class="classopts"><input type="checkbox" name="show_private" id="show_private" /> <label for="show_private">Show Private</label></span>
- <span class="classopts"><input type="checkbox" name="show_protected" id="show_protected" /> <label for="show_protected">Show Protected</label></span>
- <span class="classopts"><input type="checkbox" name="show_deprecated" id="show_deprecated" /> <label for="show_deprecated">Show Deprecated</label></span>
- </fieldset>
- </form>
- #if $index
-
- <div class="summary description">
- This is the API documentation for
- <a href="$projecturl">$projectname</a>.
- <p>Choose a module name from the list for more information.</p>
- </div>
-
- #end if
-
- #if $filename
- <div id="srcout">
- <style>
- #doc3 .classopts { display:none; }
- </style>
- $highlightcontent
- </div>
- #else if $classname
- <h2>
- #if $access#<code>$access</code>#end if#
-
- #if $static#<code>$static</code>#end if#
- #if $final#<code>$final</code>#end if#
- Class <b property="yui:name">$classname</b>
- <span class="extends">
- #if $extends
- - extends <a href="${extends}.html" title="$extends">$extends</a>
- #end if
- </span>
-
- #if $uses
- <span class="extends" rel="yui:extends">
- - uses
- #set $i=0
- #for $provider in $uses##if $i > 0#, #end if#
- <span rel="extend" resource="${provider}.html">
- <a href="${provider}.html" property="yui:name" title="$provider">$provider</a>#set $i=$i+1#
- </span>
- #end for#
-
- </span>
- #end if
- </h2>
- <!-- class tree goes here -->
-
- #if $subclasses
- <dl class="subclasses" rel="yui:subclasses">
- <dt>Known Subclasses:</dt>
- <dd>
- #for $subclass in $subclasses
- <span rel="yui:subclass" resource="${subclass}.html">
- <a href="${subclass}.html" property="yui:name" title="$subclass">$subclass</a>
- </span>
- #end for
- </dd>
- </dl>
- #end if
-
- #if $deprecated
- <div class="deprecated"><strong>Deprecated:</strong> $deprecated</div>
- #end if
-
- #if $see
- <div class="deprecated"><strong>See also:</strong> $see</div>
- #end if
-
- <div class="summary description" property="yui:description">
- $description
- </div>
-
- #if $constructor
- <div class="section constructor details" rel="yui:constructor" resource="#constructor">
- <h3 id="constructor">Constructor</h3>
- <div class="content">
- <div class="detail">
- <strong property="yui:name">$classname</strong>
- <code>
- (
- #if $constructor.params
- #set $i=0
- #set $current=""
-
- #for $param in $constructor.params#
- #if $current != $param.name
- #if $i > 0#, #end if#
- #set $i = $i + 1
- #set $current = $param.name
- $param.name
- #end if
- #end for
- #end if
- )
- </code>
- <div class="description">
- #if $constructor.params
- <dl rel="yui:parameters">
- <dt>Parameters:</dt>
- #for $param in $constructor.params
- <dd rel="yui:parameter">
- <code><span property="yui:name">$param.name</span>
- &lt;<span property="yui:type">$param.type</span>&gt;
- </code>
- <span property="yui:description">$param.description</span>
- </dd>
- #end for
- </dl>
- #end if
-
- #if $constructor.return
- <dl>
- <dt>Returns:</dt>
- <dd property="yui:return">
- $constructor.return
- </dd>
- </dl>
- #end if
-
- </div>
- </div>
- </div>
- </div>
- #end if
-
- <div rel="yui:properties" resource="#properties">
- #if $properties
- <div class="section field details">
- <h3 id="properties">Properties</h3>
- <div class="content">
- #for $property in $properties
- <div class="$property.access#if $property.deprecated# deprecated#end if#" rel="yui:property" resource="#property_$property.name">
- <h4><a name="property_$property.name" property="yui:name">$property.name</a>
- - <code>#if $property.access#$property.access #end if##if $property.static#$property.static #end if##if $property.final#$property.final #end if#<span property="yui:type">$property.type</span></code>
- </h4>
- <div class="detail">
- <div class="description" property="yui:description">
- $property.description
- </div>
- </div>
-
-
- #if $property.default
- <div class="default" property="yui:defaultValue">
- Default Value: $property.default
- </div>
- #end if
-
- #if $property.deprecated
- <div class="deprecated" property="yui:deprecated">
- <strong>Deprecated:</strong> $property.deprecated
- </div>
- #end if
-
- <hr />
- </div>
- #end for
- </div>
- </div>
- #end if
-
- #if $inherited.properties
- <div rel="yui:inheritance">
- #for $superclassname in $inherited.properties
- <div class="section field inheritance" rel="yui:superclass" resource="${superclassname}.html">
- <h4>Properties inherited from <a href="${superclassname}.html" property="yui:name" title="$superclassname">$superclassname</a>:</h4>
- <div class="content" rel="yui:properties">
- <code>
- #set i=0
- #set l=len($inherited.properties[$superclassname])-1
- #for $prop in $inherited.properties[$superclassname]#
- <span rel="yui:property" resource="${superclassname}.html#property_$prop.name">
- <a class="$prop.access#if $prop.deprecated# deprecated#end if#" href="${superclassname}.html#property_$prop.name" property="yui:name" title="$prop.name">$prop.name</a>#if $i<$l#<span class="$prop.access#if $prop.deprecated# deprecated#end if#">,</span>#end if#
- </span>
- #set i=i+1
- #end for#
- </code>
- </div>
- </div>
- #end for
- </div>
- #end if
- </div>
-
- <div rel="yui:methods" resource="#methods">
- #if $methods
- <div class="section method details">
- <h3 id="methods">Methods</h3>
- <div class="content">
- #for $method in $methods
- <div class="$method.access#if $method.deprecated# deprecated#end if#" rel="yui:method" resource="#method_$method.name">
- <h4>
- <a name="method_$method.name">$method.name</a></h4>
- <div class="detail" >
- <code>
- #if $method.access# $method.access #end if#
- #if $method.static# $method.static #end if#
- #if $method.final# $method.final #end if#
- $method.return.type
- <strong property="yui:name">$method.name</strong>
- (
- #if $method.params
- #set $i=0
- #set $current = ""
- #for $param in $method.params#
- #if $current != $param.name
- #if $i > 0#, #end if#
- #set $i = $i + 1
- #set $current = $param.name
- $param.name
- #end if#
- #end for#
- #end if
- )
- </code>
-
- <div class="description" property="yui:description">
- $method.description
- </div>
-
- <div class="description">
-
- #if $method.params
- <dl rel="yui:parameters">
- <dt>Parameters:</dt>
- #for $param in $method.params
- <dd rel="yui:parameter">
- <code><span property="yui:name">$param.name</span>
- &lt;<span property="yui:type">$param.type</span>&gt;
- </code>
- <span property="yui:description">$param.description</span>
- </dd>
- #end for
- </dl>
- #end if
-
- #if $method.return.description
- <dl>
- <dt>Returns:
- <code property="yui:return">
- #if $method.return.type
- $method.return.type
- #end if
- </code></dt>
- <dd property="yui:returnInfo">$method.return.description</dd>
- </dl>
- #end if
-
- #if $method.chainable
- <div class="chainable">
- <strong>Chainable:</strong> This method is chainable.
- </div>
- #end if
-
-
- #if $method.deprecated
- <div class="deprecated">
- <strong>Deprecated</strong> $method.deprecated
- </div>
- #end if
-
- </div>
-
- </div>
- <hr />
- </div>
- #end for
- </div>
- </div>
- #end if
-
- #if $inherited.methods
- <div rel="yui:inheritance">
- #for $superclassname in $inherited.methods
- <div class="section field inheritance" rel="yui:superclass" resource="${superclassname}.html">
- <h4>Methods inherited from <a href="${superclassname}.html" property="yui:name" title="$superclassname">$superclassname</a>:</h4>
- <div class="content" rel="yui:methods">
- <code>
- #set i=0
- #set l=len($inherited.methods[$superclassname])-1
- #for $method in $inherited.methods[$superclassname]
- <span rel="yui:method" resource="${superclassname}.html#method_$method.name">
- <a class="$method.access#if $method.deprecated# deprecated#end if#" href="${superclassname}.html#method_$method.name" property="yui:name" title="$method.name">$method.name</a>#if $i<$l#<span class="$method.access#if $method.deprecated# deprecated#end if#">,</span>#end if#
- </span>
- #set i=i+1
- #end for
- </code>
- </div>
- </div>
- #end for
- </div>
- #end if
- </div>
-
- <div rel="yui:events" resource="#events">
- #if $events
- <div class="section method details">
- <h3 id="events">Events</h3>
- <div class="content">
- #for $event in $events
- <div class="$event.access#if $event.deprecated# deprecated#end if#" rel="yui:event" resource="#event_$event.name">
- <h4>
- <a name="event_$event.name">$event.name</a></h4>
- <div class="detail">
- <code>
- #if $event.access# $event.access #end if#
- #if $event.static# $event.static #end if#
- #if $event.final# $event.final #end if#
- <strong property="yui:name">$event.name</strong>
-
- (
- #if $event.params
- #set $i=0
- #set $current = ""
- #for $param in $event.params#
- #if $current != $param.name
- #if $i > 0#, #end if#
- #set $i = $i + 1
- #set $current = $param.name
- $param.name
- #end if#
- #end for#
- #end if
- )
-
- </code>
-
- <div class="description" property="yui:description">
- $event.description
- </div>
-
- <div class="description">
-
-
- #if $event.params
- <dl rel="yui:parameters">
- <dt>Parameters:</dt>
- #for $param in $event.params
- <dd rel="yui:parameter">
- <code><span property="yui:name">$param.name</span>
- &lt;<span property="yui:type">$param.type</span>&gt;
- </code>
- <span property="yui:description">$param.description</span>
- </dd>
-
- #end for
- </dl>
- #end if
-
- #if $event.bubbles
- <div class="bubbles">
- <strong>Bubbles:</strong> This event bubbles to <a href="${event.bubbles}.html" title="$event.bubbles">$event.bubbles</a>.
- </div>
- #end if
- #if $event.preventable
- <div class="preventable">
- <strong>Preventable:</strong> This event is preventable by method e.preventDefault(). The default function executed by this event is $event.preventable.
- </div>
- #end if
-
- #if $event.deprecated
- <div class="deprecated">
- <strong>Deprecated</strong> $event.deprecated
- </div>
- #end if
- </div>
-
- </div>
- <hr />
- </div>
- #end for
- </div>
- </div>
- #end if
-
-
- #if $inherited.events
- <div rel="yui:inheritance">
- #for $superclassname in $inherited.events
- <div class="section field inheritance" rel="yui:superclass" resource="${superclassname}.html">
- <h4>Events inherited from <a href="${superclassname}.html" property="yui:name" title="$superclassname">$superclassname</a>:</h4>
- <div class="content" rel="yui:events">
- <code>
- #set i=0
- #set l=len($inherited.methods[$superclassname])-1
- #for $event in $inherited.events[$superclassname]
- #set i=i+1
- <span rel="yui:event" resource="${superclassname}.html#event_$event.name">
- <a class="$event.access#if $event.deprecated# deprecated#end if#" href="${superclassname}.html#event_$event.name" property="yui:name" title="$event.name">$event.name</a>#if $i<$l#<span class="$event.access#if $event.deprecated# deprecated#end if#">,</span>#end if##set i=i+1#
- </span>
- #end for#
- </code>
- </div>
- </div>
- #end for
- </div>
- #end if
- </div>
-
- <div rel="yui:attributes" resource="#configattributes">
- #if $configs
- <div class="section field details">
- <h3 id="configattributes">Configuration Attributes</h3>
- <div class="content">
- #for $config in $configs
- <div class="$config.access#if $config.deprecated# deprecated#end if#" rel="yui:attribute" resource="#config_$config.name">
- <h4><a name="config_$config.name">$config.name</a>
- <code>- #if $config.access#$config.access #end if##if $config.static#$config.static #end if##if $config.writeonce#$config.writeonce #end if##if $config.final#$config.final #end if#<span property="yui:type">$config.type</span></code>
- </h4>
- <div class="detail">
- <div class="description" property="yui:description">
- $config.description
- </div>
- </div>
-
- #if $config.deprecated
- <div class="deprecated">
- <strong>Deprecated</strong> $config.deprecated
- </div>
- #end if
-
- #if $config.default
- <div class="default">
- Default Value: $config.default
- </div>
- #end if
-
- <hr />
- </div>
- #end for
-
- </div>
- </div>
- #end if
-
- #if $inherited.configs
- <div rel="yui:inheritance">
- #for $superclassname in $inherited.configs
- <div class="section field inheritance" rel="yui:superclass" resource="${superclassname}.html">
- <h4>Configuration attributes inherited from <a href="${superclassname}.html" property="yui:name" title="$superclassname">$superclassname</a>:</h4>
- <div class="content" rel="yui:attributes">
- <code>
- #set i=0
- #set l=len($inherited.configs[$superclassname])-1
- #for $config in $inherited.configs[$superclassname]
- #set i=i+1
- <span rel="yui:attribute" resource="${superclassname}.html#config_$config.name">
- <a class="$config.access#if $config.deprecated# deprecated#end if#" href="${superclassname}.html#config_$config.name" property="yui:name" title="$config.name">$config.name</a>#if $i<$l#<span class="$config.access#if $config.deprecated# deprecated#end if#">,</span>#end if#
- </span>
- #set i=i+1
- #end for#
- </code>
- </div>
- </div>
- #end for
- </div>
- #end if
- </div>
-
- #else if $modulename
-
- <h3>Module: $modulename
-
- #if $beta
- <span class="description"><em>Beta</em></span>
- #end if
-
- #if $experimental
- <span class="description"><em>Experimental</em></span>
- #end if
-
- </h3>
- <div class="description summary">
- $moduledesc
- </div>
-
-
- #if $requires
- <div class="content">
- Requires: $requires
- </div>
- #end if
- #if $optional
- <div class="content">
- Optional: $optional
- </div>
- #end if
-
- <div class="yui-gc">
- <div class="yui-u first">
-
- #if $classnames
- <p>This module contains the following classes:</p>
- <script>
- //var YUI_CLASS_LIST = $classList;
- </script>
- <div id="splash_classList">
- <ul>
- #set $counter = 0
- #for $classNames in $classList_raw
- <li><a href="${classNames.name}.html" title="$classNames.name" id="class_${counter}">$classNames.guessedname</a></li>
- #set $counter = $counter + 1
- #end for
- </ul>
- </div>
- #end if
- </div>
- <div class="yui-u">
- #set count = 0;
- #for $info in $submodules
- #set count = count + 1
- #end for
- #if count != 0
- <div class="submodules">
- <h4>Submodules:</h4>
- <dl>
- #for $info in $submodules
- <dt><code>$info</code></dt>
- <dd>$subdata[$info].description</dd>
- #end for
- </dl>
- </div>
- #end if
-
- </div>
- </div>
-
- #end if
- </div>
- </div>
- <div class="yui-b">
- <div class="nav">
-
- #if $modulenames
- <div id="moduleList" class="module">
- <h4>Modules</h4>
- <ul class="content">
- #for $moduledef in $modulenames
- #set $css = ""
- #if $moduledef == $modulename
- #set $css = "selected"
- #end if
- #set $cleansedname = $cleansedmodulenames[$moduledef]
- <li class="$css"><a href="${cleansedname}.html" title="$moduledef">$moduledef</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $classnames
- <div id="classList" class="module">
- <h4>Classes</h4>
- <ul class="content">
- #for $classdef in $classnames
- #set $css = ""
- #if $classdef == $classname
- #set $css = "selected"
- #end if
- <li class="$css"><a href="${classdef}.html" title="$classdef">$classdef</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $filenames
- <div id="fileList" class="module">
- <h4>Files</h4>
- <ul class="content">
- #for $filedef in $filenames
- #set $css = ""
- #if $filedef == $filename
- #set $css = "selected"
- #end if
- <li class="$css"><a href="${filedef}.html" title="$filedef">$filedef</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $properties
- <div id="propertyList" class="module">
- <h4>Properties</h4>
- <ul class="content">
- #for $prop in $properties
- <li class="${prop.access}#if $prop.deprecated# deprecated#end if#"><a href="#property_${prop.name}" title="$prop.name">$prop.name</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $methods
- <div id="methodsList" class="module">
- <h4>Methods</h4>
- <ul class="content">
- #for $method in $methods
- <li class="${method.access}#if $method.deprecated# deprecated#end if#"><a href="#method_${method.name}" title="$method.name">$method.name</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $events
- <div id="eventsList" class="module">
- <h4>Events</h4>
- <ul class="content">
- #for $event in $events
- <li class="${event.access}#if $event.deprecated# deprecated#end if#"><a href="#event_${event.name}" title="$event.name">$event.name</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- #if $configs
- <div id="configList" class="module">
- <h4>Configuration Attributes</h4>
- <ul class="content">
- #for $config in $configs
- <li class="${config.access}#if $config.deprecated# deprecated#end if#"><a href="#config_${config.name}" title="$config.name">$config.name</a></li>
- #end for
- </ul>
- </div>
- #end if
-
- </div>
- </div>
- </div>
- <div id="ft">
- <hr />
- Copyright &copy; $year $copyrighttag All rights reserved.
- </div>
-</div>
-<script type="text/javascript">
- #if $index
- YAHOO.yuidoc.init();
- #end if
-
- var ALL_YUI_PROPS = $allprops;
-</script>
-#if $ydn
-<!-- Yahoo! Web Analytics - All rights reserved -->
-<script type="text/javascript" src="http://d.yimg.com/mi/ywa.js"></script>
-<script type="text/javascript">
-YWA.getTracker("10001393677061").submit();
-</script>
-<noscript>
-<div><img src="http://a.analytics.yahoo.com/p.pl?a=10001393677061&amp;js=no" width="1" height="1" alt="" /></div>
-</noscript>
-#end if
-</body>
-</html>