diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-11-10 11:46:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 11:46:54 +0100 |
commit | 8e5c63d035ef44a269b8c43430f43f5c8eebfb63 (patch) | |
tree | 1b915207b2b9f61951ddbf0ff2e687efd053d555 /plugins/javadoc/src/main/resources/views | |
parent | a44efd4ba0c2e4ab921ff75e0f53fc9335aa79db (diff) | |
download | dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.gz dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.bz2 dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.zip |
Restructure the project to utilize included builds (#3174)
* Refactor and simplify artifact publishing
* Update Gradle to 8.4
* Refactor and simplify convention plugins and build scripts
Fixes #3132
---------
Co-authored-by: Adam <897017+aSemy@users.noreply.github.com>
Co-authored-by: Oleg Yukhnevich <whyoleg@gmail.com>
Diffstat (limited to 'plugins/javadoc/src/main/resources/views')
14 files changed, 0 insertions, 666 deletions
diff --git a/plugins/javadoc/src/main/resources/views/class.korte b/plugins/javadoc/src/main/resources/views/class.korte deleted file mode 100644 index 54106dda..00000000 --- a/plugins/javadoc/src/main/resources/views/class.korte +++ /dev/null @@ -1,329 +0,0 @@ -{% extends "components/base.korte" %} -{% block content %} - -<main role="main"> - <div class="header"> - <div class="subTitle"><span class="packageLabelInType">Package</span> <a href="package-summary.html">{{ packageName }}</a></div> - <h2 title="{{ kind|capitalize }} {{ name }}" class="title">{{ kind|capitalize }} {{ name }}</h2> - </div> - <div class="contentContainer"> - <!-- <ul class="inheritance"> - <li>java.lang.Object</li> - <li> - <ul class="inheritance"> - <li>adaptation.Adaptation</li> - </ul> - </li> - </ul> TODO inheritance tree --> - <div class="description"> - <ul class="blockList"> - <li class="blockList"> - {% if implementedInterfaces.size != 0 %} - <dl> - <dt>All Implemented Interfaces:</dt> - <dd> - {% for name in implementedInterfaces %} - <code>{{ name }}</code> - {% if !loop.last %} - , - {% endif %} - {% endfor %} - </dd> - </dl> - {% endif %} - <hr> - <pre class="wrap-overflow"> -{% if signature.annotations != null %}{{ signature.annotations|raw }} {% endif %} -{{ signature.modifiers }} <span class="typeNameLabel">{{ signature.signatureWithoutModifiers|raw }}</span> -{% if signature.supertypes != null %}{{signature.supertypes|raw}}{% endif %} - </pre> - <div class="block">{{ classlikeDocumentation|raw }}</div> - - <dl> - - {% if sinceTagContent.size() != 0 %} - <dt><span class="sinceLabel">Since:</span></dt> - {% for since in sinceTagContent %} - <dd>{{ since|raw }}</dd> - {% endfor %} - {% endif %} - - {% if authorTagContent.size() != 0 %} - <dt><span class="authorLabel">Author:</span></dt> - {% for author in authorTagContent %} - <dd>{{ author|raw }}</dd> - {% endfor %} - {% endif %} - - </dl> - </li> - </ul> - </div> - <div class="summary"> - <ul class="blockList"> - <li class="blockList"> - <!-- ======== NESTED CLASS SUMMARY ======== --> - {% if classlikes.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="nested.class.summary"> - <!-- --> - </a> - <h3>Nested Class Summary</h3> - <div class="memberSummary"> - <table> - <caption><span>Nested Classes</span><span class="tabEnd"> </span></caption> - <tr> - <th class="colFirst" scope="col">Modifier and Type</th> - <th class="colSecond" scope="col">Class</th> - <th class="colLast" scope="col">Description</th> - </tr> - {% for classlike in classlikes %} - <tr class="{{ rowColor(loop.index0) }}"> - <td class="colFirst"><code>{{ classlike.modifiers }}</code></td> - <th class="colSecond" scope="row"><code><a href="{{ classlike.address }}">{{ classlike.signature }}</a></span></code> - </th> - <td class="colLast">{{ classlike.description|raw }}</td> - </tr> - {% endfor %} - </table> - </div> - </li> - </ul> - </section> - {% endif %} - <!-- =========== FIELD SUMMARY =========== --> - {% if properties.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="field.summary"> - <!-- --> - </a> - <h3>Field Summary</h3> - <div class="memberSummary"> - <table> - <caption><span>Fields</span><span class="tabEnd"> </span></caption> - <tr> - <th class="colFirst" scope="col">Modifier and Type</th> - <th class="colSecond" scope="col">Field</th> - <th class="colLast" scope="col">Description</th> - </tr> - {% for property in properties %} - <tr class="{{ rowColor(loop.index0) }}"> - <td class="colFirst"><code>{{ property.modifiers|raw }}</code></td> - <th class="colSecond" scope="row"><code>{{ property.signature|raw }}</code></th> - <td class="colLast">{{ description|raw }}</td> - </tr> - {% endfor %} - </table> - </div> - </li> - </ul> - </section> - {% endif %} - <!-- ======== CONSTRUCTOR SUMMARY ======== --> - {% if constructors.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="constructor.summary"> - <!-- --> - </a> - <h3>Constructor Summary</h3> - <div class="memberSummary"> - <table> - <caption><span>Constructors</span><span class="tabEnd"> </span></caption> - <tbody> - <tr> - <th class="colFirst" scope="col">Constructor</th> - <th class="colLast" scope="col">Description</th> - </tr> - - {% for constructor in constructors %} - <tr class="{{ rowColor(loop.index0) }}"> - <th class="colConstructorName" scope="row"><code><span class="memberNameLink"><a - href="#{{ constructor.anchorLink }}">{{ constructor.name }}</a></span>({{ constructor.inlineParameters|raw }})</code></th> - <td class="colLast">{{ constructor.brief|raw }}</td> - </tr> - {% endfor %} - - </tbody> - </table> - </div> - </li> - </ul> - </section> - {% endif %} - <!-- =========== ENUM CONSTANT SUMMARY =========== --> - {% if entries.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="enum.constant.summary"> - <!-- --> - </a> - <h3>Enum Constant Summary</h3> - <table class="memberSummary"> - <caption><span>Enum Constants</span><span class="tabEnd"> </span></caption> - <tr> - <th class="colFirst" scope="col">Enum Constant</th> - <th class="colLast" scope="col">Description</th> - </tr> - {% for entry in entries %} - <tr class="{{ rowColor(loop.index0) }}"> - <th class="colFirst" scope="row"><code><span class="memberNameLink"><a - href="TODO">{{ entry.signature.signatureWithoutModifiers|raw }}</a></span></code></th> - <td class="colLast">{{ entry.brief|raw }}</td> - </tr> - {% endfor %} - </table> - </li> - </ul> - </section> - {% endif %} - <!-- ========== METHOD SUMMARY =========== --> - {% if methods.own.size !=0 || methods.inherited.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="method.summary"> - <!-- --> - </a> - <h3>Method Summary</h3> - <div class="memberSummary"> - <div role="tablist" aria-orientation="horizontal"> - <button role="tab" aria-selected="true" aria-controls="memberSummary_tabpanel" tabindex="0" onkeydown="switchTab(event)" id="t0" class="activeTableTab">All Methods</button> - <!-- TODO: Instance and Concrete Methods #1118 --> - </div> - <div id="memberSummary_tabpanel" role="tabpanel"> - <table aria-labelledby="t0"> - <tr> - <th class="colFirst" scope="col">Modifier and Type</th> - <th class="colSecond" scope="col">Method</th> - <th class="colLast" scope="col">Description</th> - </tr> - {% for method in methods.own %} - <tr id="i{{ loop.index0 }}" class="{{ rowColor(loop.index0) }}"> - <td class="colFirst"><code>{{ method.signature.modifiers|raw }}</code> - </td> - <th class="colSecond" scope="row"><code>{{ method.signature.signatureWithoutModifiers|raw }} </code> - </th> - <td class="colLast">{{ method.brief|raw }}</td> - </tr> - {% endfor %} - </tbody> - </table> - </div> - <ul class="blockList"> - {% for method in methods.inherited %} - <li class="blockList"><a id="methods.inherited.from.class.{{ method.inheritedFrom}}"> - <!-- --> - </a> - <h3>Methods inherited from class {{ method.inheritedFrom}}</h3> - <code>{{ method.names }}</code></li> - {% endfor %} - <li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> - <!-- --> - </a> - <h3>Methods inherited from class java.lang.Object</h3> - <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, - wait, wait, wait</code></li> - </ul> - </li> - </ul> - </section> - {% endif %} - </li> - </ul> - </div> - <div class="details"> - <ul class="blockList"> - <li class="blockList"> - <!-- ========= CONSTRUCTOR DETAIL ======== --> - {% if constructors.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="constructor.detail"> - <!-- --> - </a> - <h3>Constructor Detail</h3> - {% for constructor in constructors %} - <a name="{{ constructor.anchorLink }}"></a> - <ul class="blockList"> - <li class="blockList"> - <h4>{{ constructor.name }}</h4> - <pre>{{ constructor.name }}({{ constructor.inlineParameters|raw }})</pre> - <div class="block">{{ constructor.brief|raw}}</div> - {% if constructor.parameters.size != 0 && hasAnyDescription(constructor.parameters) %} - <dl> - <dt><span class="paramLabel">Parameters:</span></dt> - {% for parameter in constructor.parameters %} - {% if parameter.description != "" %} - <dd><code>{{ parameter.name }}</code> - {{ parameter.description|raw }}</dd> - {% endif %} - {% endfor %} - </dl> - {% endif %} - </li> - </ul> - {% endfor %} - </li> - </ul> - </section> - {% endif %} - <!-- ============ METHOD DETAIL ========== --> - {% if methods.own.size != 0 %} - <section role="region"> - <ul class="blockList"> - <li class="blockList"><a id="method.detail"> - <!-- --> - </a> - <h3>Method Detail</h3> - {% for method in methods.own %} - <a id="{{ method.anchorLink }}"> - <!-- --> - </a> - <ul class={% if loop.last %} - "blockListLast" - {% else %} - "blockList" - {% endif %}> - <li class="blockList"> - <h4>{{ method.name }}</h4> - <pre class="methodSignature">{{ method.signature.annotations|raw }} {{ method.signature.modifiers|raw }} {{ method.signature.signatureWithoutModifiers|raw}}</pre> - <div class="block">{{ method.description|raw }}</div> - - <dl> - - {% if method.parameters.size != 0 && hasAnyDescription(method.parameters) %} - <dt><span class="paramLabel">Parameters:</span></dt> - {% for parameter in method.parameters %} - {% if parameter.description != "" %} - <dd><code>{{ parameter.name }}</code> - {{ parameter.description|raw }}</dd> - {% endif %} - {% endfor %} - {% endif %} - - {% if method.returnTagContent != "" %} - <dt><span class="returnLabel">Returns:</span></dt> - <dd>{{ method.returnTagContent|raw }}</dd> - {% endif %} - - {% if method.sinceTagContent.size() != 0 %} - <dt><span class="sinceLabel">Since:</span></dt> - {% for since in method.sinceTagContent %} - <dd>{{ since|raw }}</dd> - {% endfor %} - {% endif %} - - </dl> - </li> - </ul> - {% endfor %} - </li> - </ul> - </section> - {% endif %} - </li> - </ul> - </div> - </div> -</main> -{% end %}
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/base.korte b/plugins/javadoc/src/main/resources/views/components/base.korte deleted file mode 100644 index 6e2f6c4c..00000000 --- a/plugins/javadoc/src/main/resources/views/components/base.korte +++ /dev/null @@ -1,19 +0,0 @@ -<!DOCTYPE HTML> -<!-- NewPage --> -<html lang="en"> -{%- include "components/head.korte" -%} -<body> -<script type="text/javascript"> -var pathtoroot = "{{ pathToRoot }}"; -</script> -<noscript> - <div>JavaScript is disabled on your browser.</div> -</noscript> -{%- include "components/topNavbar.korte" -%} -{%- block content %} {% endblock -%} -{%- include "components/bottomNavbar.korte" -%} -<ul class="ui-autocomplete ui-front ui-menu ui-widget ui-widget-content" id="ui-id-1" tabindex="0" - style="display: none;"></ul> -<span role="status" aria-live="assertive" aria-relevant="additions" class="ui-helper-hidden-accessible"></span> -</body> -</html>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/bottomNavbar.korte b/plugins/javadoc/src/main/resources/views/components/bottomNavbar.korte deleted file mode 100644 index a9d83e5c..00000000 --- a/plugins/javadoc/src/main/resources/views/components/bottomNavbar.korte +++ /dev/null @@ -1,20 +0,0 @@ -<footer role="contentinfo"> - <nav role="navigation"> - <!-- ======= START OF BOTTOM NAVBAR ====== --> - <div class="bottomNav"><a id="navbar.bottom"> - <!-- --> - </a> - <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a> - </div> - <a id="navbar.bottom.firstrow"> - <!-- --> - </a> - {% include "components/navList.korte" -%} - </div> - <a id="skip.navbar.bottom"> - <!-- --> - </a> - {% set type="bottom" %}{% include "components/subNav.korte" -%} - <!-- ======== END OF BOTTOM NAVBAR ======= --> - </nav> -</footer>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/head.korte b/plugins/javadoc/src/main/resources/views/components/head.korte deleted file mode 100644 index 8f4aa12d..00000000 --- a/plugins/javadoc/src/main/resources/views/components/head.korte +++ /dev/null @@ -1,18 +0,0 @@ -<head> - <title>{{ title }} {% if version != null %}{{ version }} API {% endif %}</title> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> - <meta name="dc.created" content="2020-03-25"> - <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}stylesheet.css" title="Style"> - <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}dokka-javadoc-stylesheet.css" title="Style"> - <link rel="stylesheet" type="text/css" href="{{ pathToRoot }}jquery/jquery-ui.css" title="Style"> - <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-{{ jQueryVersion() }}.min.js"></script> - <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-migrate-{{ jQueryMigrateVersion() }}.min.js"></script> - <script type="text/javascript" src="{{ pathToRoot }}jquery/jquery-ui.js"></script> - - <script type="text/javascript" src="{{ pathToRoot }}search.js"></script> - <script async type="text/javascript" src="{{ pathToRoot }}module-search-index.js"></script> - <script async type="text/javascript" src="{{ pathToRoot }}package-search-index.js"></script> - <script async type="text/javascript" src="{{ pathToRoot }}type-search-index.js"></script> - <script async type="text/javascript" src="{{ pathToRoot }}member-search-index.js"></script> - <script async type="text/javascript" src="{{ pathToRoot }}tag-search-index.js"></script> -</head> diff --git a/plugins/javadoc/src/main/resources/views/components/indexPage.korte b/plugins/javadoc/src/main/resources/views/components/indexPage.korte deleted file mode 100644 index 84679fad..00000000 --- a/plugins/javadoc/src/main/resources/views/components/indexPage.korte +++ /dev/null @@ -1,30 +0,0 @@ -<main role="main"> - <div class="header"> - <h1 {{ h1Title(kind)|raw }}class="title">{{ title }} {% if version != null %}{{ version }} API {% endif %}</h1> - </div> - <div class="header"> - <div class="subtitle"> - <div class="block">{{ subtitle|raw }}</div> - </div> - <p>See: <a href="#overview_description">Description</a></p> - </div> - <div class="contentContainer"> - {% if lists %} - <ul class="blockList"> - {% for item in lists%} - <li class="blockList"> - {% set list = item.list %} - {% set colTitle = item.colTitle %} - {% set tabTitle = item.tabTitle %} - {% set isTypeSummary = "true" %} - {% include "components/indexTable.korte" %} - </li> - {% endfor %} - </ul> - {% else %} - <div class="overviewSummary"> - {% include "components/indexTable.korte" %} - </div> - {% endif %} - </div> -</main>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/indexTable.korte b/plugins/javadoc/src/main/resources/views/components/indexTable.korte deleted file mode 100644 index 21c94b7c..00000000 --- a/plugins/javadoc/src/main/resources/views/components/indexTable.korte +++ /dev/null @@ -1,18 +0,0 @@ -{% if isTypeSummary %} - <div class="typeSummary"> -{% endif %} -<table> -<caption><span>{{ tabTitle }}</span><span class="tabEnd"> </span></caption> -<tr> -<th class="colFirst" scope="col">{{ colTitle }}</th> -<th class="colLast" scope="col">Description</th> -</tr> -<tbody> -{% for item in list %} - <tr class="{{ rowColor(loop.index0) }}">{{ createTabRow(item, contextRoot)|raw }}</tr> -{% end -%} -</tbody> -</table> -{% if isTypeSummary %} - </div> -{% endif %}
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/navList.korte b/plugins/javadoc/src/main/resources/views/components/navList.korte deleted file mode 100644 index dbfe7eb3..00000000 --- a/plugins/javadoc/src/main/resources/views/components/navList.korte +++ /dev/null @@ -1,27 +0,0 @@ -<ul class="navList" title="Navigation"> - {%- if kind == "main" %} - <li class="navBarCell1Rev">Overview</li> - {% else %} - <li><a href="{{ pathToRoot }}index.html">Overview</a></li> - {% endif -%} - {%- if kind == "package" %} - <li class="navBarCell1Rev">Package</li> - {% elseif kind == "main" %} - <li>Package</li> - {% else %} - <li><a href="package-summary.html">Package</a></li> - {% endif -%} - {%- if kind == "class" %} - <li class="navBarCell1Rev">Class</li> - {% else %} - <li>Class</li> - {% endif -%} - {%- if kind == "main" %} - <li><a href="overview-tree.html">Tree</a></li> - {% else %} - <li><a href="package-tree.html">Tree</a></li> - {% end %} - <li><a href="{{ pathToRoot }}deprecated.html">Deprecated</a></li> - <li><a href="{{ pathToRoot }}index-files/index-1.html">Index</a></li> - <li>Help</li> -</ul>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/subNav.korte b/plugins/javadoc/src/main/resources/views/components/subNav.korte deleted file mode 100644 index 7869d747..00000000 --- a/plugins/javadoc/src/main/resources/views/components/subNav.korte +++ /dev/null @@ -1,44 +0,0 @@ -<div class="subNav"> -{% if kind == "indexPage" %} - <ul class="navList"> - {%- if prevLetter != "" %} - <li><a href="{{ prevLetter }}.html">PREV LETTER</a></li> - {% else %} - <li>PREV LETTER</li> - {% endif -%} - {%- if nextLetter != "" %} - <li><a href="{{ nextLetter }}.html">NEXT LETTER</a></li> - {% else %} - <li>NEXT LETTER</li> - {% endif -%} - </ul> -{% end -%} -<ul class="navList" id="allclasses_navbar_top" style="display: block;"> - <li><a href="{{ pathToRoot }}allclasses.html">All Classes</a></li> -</ul> -{% if type != "bottom" %} -<ul class="navListSearch"> -<li><label for="search">SEARCH:</label> -<input type="text" id="search" value="search" class="ui-autocomplete-input" autocomplete="off" placeholder="Search"> -<input type="reset" id="reset" value="reset"> -</li> -</ul> -{% end -%} -<div> -<script type="text/javascript"><!-- - allClassesLink = document.getElementById("allclasses_navbar_top"); - if(window==top) { - allClassesLink.style.display = "block"; - } - else { - allClassesLink.style.display = "none"; - } - //--> -</script> -<noscript> -<div>JavaScript is disabled on your browser.</div> -</noscript> -</div> -<a id="skip.navbar.top"> -<!-- --> -</a></div>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/components/topNavbar.korte b/plugins/javadoc/src/main/resources/views/components/topNavbar.korte deleted file mode 100644 index 59b84558..00000000 --- a/plugins/javadoc/src/main/resources/views/components/topNavbar.korte +++ /dev/null @@ -1,24 +0,0 @@ -<header role="banner"> - <nav role="navigation"> - <div class="fixedNav"> - <!-- ========= START OF TOP NAVBAR ======= --> - <div class="topNav"><a id="navbar.top"> - <!-- --> - </a> - <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a> - </div> - <a id="navbar.top.firstrow"> - <!-- --> - </a> - {% include "components/navList.korte" -%} - </div> - {% include "components/subNav.korte" -%} - <!-- ========= END OF TOP NAVBAR ========= --> - </div> - <div class="navPadding"> </div> - <script type="text/javascript"><!-- - $('.navPadding').css('padding-top', $('.fixedNav').css("height")); - //--> - </script> - </nav> -</header>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/deprecated.korte b/plugins/javadoc/src/main/resources/views/deprecated.korte deleted file mode 100644 index a22e1069..00000000 --- a/plugins/javadoc/src/main/resources/views/deprecated.korte +++ /dev/null @@ -1,40 +0,0 @@ -{% extends "components/base.korte" %} -{% block content %} - -<main role="main"> - <div class="header"> - <h1 title="Deprecated API" class="title">Deprecated API</h1> - <h2 title="Contents">Contents</h2> - <ul> - {% for section in sections %} - <li><a href="#{{ section.id }}">{{ section.caption }}</a></li> - {% endfor %} - </ul> - </div> - <div class="contentContainer"> - {% for section in sections %} - <a id="{{ section.id }}"></a> - <ul class="blockList"> - <li class="blockList"> - <div class="deprecatedSummary"> - <table> - <caption><span>{{ section.caption }}</span><span class="tabEnd"> </span></caption> - <tr> - <th class="colFirst" scope="col">{{ section.header }}</th> - <th class="colLast" scope="col">Description</th> - </tr> - {% for element in section.elements %} - <tr class="{{ rowColor(loop.index0) }}"> - <th class="colDeprecatedItemName" scope="row"> - <a href="{{ element.address }}">{{ element.name }}</a> - </th> - <td class="colLast">{{ element.description|raw }}</td> - </tr> - {% endfor %} - </table> - </div> - </li> - </ul> - {% endfor %} - </div> -</main>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/indexPage.korte b/plugins/javadoc/src/main/resources/views/indexPage.korte deleted file mode 100644 index 2881e86d..00000000 --- a/plugins/javadoc/src/main/resources/views/indexPage.korte +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "components/base.korte" %} -{% block content %} - -<main role="main"> - <div class="contentContainer"> - {% for key in dictionary %} - <a href="index-{{ loop.index }}.html">{{ key }}</a> - {% endfor %} - <h2 class="title">{{ dictionary[id - 1] }}</h2> - <dl> - {% for key in elements %} - <dt> - {% if key.isMember %} - <span class="memberNameLink"> - {% endif %} - <a href="{{ key.address }}">{{ key.name }}</a> - {% if key.isMember %} - </span> - {{ key.type }} in {{ key.origin|raw }} - {% else %} - - {{ key.type }} {{ key.name }} - {% endif %} - - </dt> - <dd>{{ key.description|raw }}</dd> - - {% endfor %} - </dl> - {% for key in dictionary %} - <a href="index-{{ loop.index }}.html">{{ key }}</a> - {% endfor %} - </div> -</main>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/listPage.korte b/plugins/javadoc/src/main/resources/views/listPage.korte deleted file mode 100644 index 985f1d4d..00000000 --- a/plugins/javadoc/src/main/resources/views/listPage.korte +++ /dev/null @@ -1,13 +0,0 @@ -<html lang="en"> -{% include "components/head.korte" -%} -<body> -<h1 class="bar">{{ title }}</h1> -<main role="main" class="indexContainer"> - <ul> - {% for item in list %} - <li>{{ createListRow(item, contextRoot)|raw }}</li> - {% end -%} - </ul> -</main> -</body> -</html>
\ No newline at end of file diff --git a/plugins/javadoc/src/main/resources/views/tabPage.korte b/plugins/javadoc/src/main/resources/views/tabPage.korte deleted file mode 100644 index c69d2c97..00000000 --- a/plugins/javadoc/src/main/resources/views/tabPage.korte +++ /dev/null @@ -1,4 +0,0 @@ -{% extends "components/base.korte" %} -{% block content %} -{% include "components/indexPage.korte" %} -{% end %} diff --git a/plugins/javadoc/src/main/resources/views/treePage.korte b/plugins/javadoc/src/main/resources/views/treePage.korte deleted file mode 100644 index 73a23896..00000000 --- a/plugins/javadoc/src/main/resources/views/treePage.korte +++ /dev/null @@ -1,48 +0,0 @@ -{% extends "components/base.korte" %} -{% block content %} -<main role="main"> - <div class="header"> - {% if kind == "main" %} - <h1 class="title">Hierarchy For All Packages</h1> - {% else %} - <h1 class="title">Hierarchy For Package {{ title }}</h1> - {% end -%} - <span class="packageHierarchyLabel">Package Hierarchies:</span> - <ul class="horizontal"> - {% if kind == "main" %} - {{ createPackageHierarchy(list)|raw }} - {% else %} - <li><a href="{{ pathToRoot }}package-tree.html">All Packages</a></li> - {% end -%} - </ul> - </div> - <div class="contentContainer"> - <section role="region"> - <h2 title="Class Hierarchy">Class Hierarchy</h2> - <ul> - {{ renderInheritanceGraph(classGraph)|raw }} - </ul> - </section> - <section role="region"> - <h2 title="Interface Hierarchy">Interface Hierarchy</h2> - <ul> - {{ renderInheritanceGraph(interfaceGraph)|raw }} - </ul> - </section> - <section role="region"> - <h2 title="Enum Hierarchy">Enum Hierarchy</h2> - <ul> - <li class="circle">java.lang.Object - <ul> - <li class="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable) - <ul> - <li class="circle">model.<a href="model/VertexType.html" title="enum in model"><span class="typeNameLink">VertexType</span></a></li> - </ul> - </li> - </ul> - </li> - </ul> - </section> - </div> -</main> -{% end %} |