Skip to content

Commit 8533ffc

Browse files
authored
Merge pull request #41 from cicirello/development
Documentation website updates and minor changes
2 parents 0cbbc14 + c82d939 commit 8533ffc

File tree

128 files changed

+46071
-6183
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+46071
-6183
lines changed

.github/workflows/api-webpage-sitemap.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
2727
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
2828
- name: Create Pull Request
29-
uses: peter-evans/create-pull-request@v3.3.0
29+
uses: peter-evans/create-pull-request@v3.4.0
3030
with:
3131
title: "Automated sitemap update"
3232
body: >

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased] - 2020-09-15
7+
## [Unreleased] - 2020-09-18
88
### Added
99

1010
### Changed
11+
* Modernized API documentation website (https://jpt.cicirello.org/) to html5 with search and no frames.
1112

1213
### Deprecated
1314

build/build.xml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
</description>
55
<!-- global properties for this build -->
66
<property name="VERSION" value="2.0.1"/>
7+
<property name="JDKVERSION" value="1.8"/>
78
<property name="junit" location="build/junit-4.12.jar"/>
89
<property name="hamcrest" location="build/hamcrest-core-1.3.jar"/>
910
<property name="src" location="src"/>
@@ -30,13 +31,16 @@
3031
<target name="compile" depends="init"
3132
description="compile the source">
3233
<!-- Compile the Java code from ${src} into ${bin} -->
33-
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false">
34+
<javac srcdir="${src}" destdir="${bin}" includeantruntime="false"
35+
source="${JDKVERSION}" target="${JDKVERSION}">
3436
<!--
3537
<compilerarg value="-Xlint:unchecked"/>
3638
-->
39+
<compilerarg value="-Xlint:deprecation"/>
3740
</javac>
3841
<!-- Compile the JUnit tests from ${testsrc} into ${testbin} -->
39-
<javac srcdir="${testsrc}" destdir="${testbin}" classpath="${junit};${bin}" includeantruntime="false"/>
42+
<javac srcdir="${testsrc}" destdir="${testbin}" classpath="${junit};${bin}"
43+
includeantruntime="false" source="${JDKVERSION}" target="${JDKVERSION}"/>
4044
</target>
4145

4246
<target name="test" depends="compile"
@@ -71,9 +75,13 @@
7175
<!-- Create directory for bin of examples and replication programs -->
7276
<mkdir dir="${examplebin}"/>
7377
<!-- Compile basic examples -->
74-
<javac srcdir="${examples}" destdir="${examplebin}" classpath="${dist}/jpt-${VERSION}.jar;${examples}" includeantruntime="false"/>
78+
<javac srcdir="${examples}" destdir="${examplebin}"
79+
classpath="${dist}/jpt-${VERSION}.jar;${examples}" includeantruntime="false"
80+
source="${JDKVERSION}" target="${JDKVERSION}"/>
7581
<!-- Compile experiment replication programs -->
76-
<javac srcdir="${replication}" destdir="${examplebin}" classpath="${dist}/jpt-${VERSION}.jar;${replication}" includeantruntime="false"/>
82+
<javac srcdir="${replication}" destdir="${examplebin}"
83+
classpath="${dist}/jpt-${VERSION}.jar;${replication}" includeantruntime="false"
84+
source="${JDKVERSION}" target="${JDKVERSION}"/>
7785
</target>
7886

7987
<target name="docs" depends="dist"
@@ -85,7 +93,8 @@
8593
overview="src/overview.html"
8694
author="false"
8795
version="false"
88-
additionalparam="-notimestamp">
96+
additionalparam="-notimestamp --no-module-directories"
97+
source="${JDKVERSION}">
8998
<link href="https://docs.oracle.com/javase/8/docs/api/" packagelistLoc="build/java-package-list" offline="true" />
9099
<bottom><![CDATA[Copyright &copy; 2005-2019 Vincent A. Cicirello. <a href=\"https://www.cicirello.org/\" target=_top>https://www.cicirello.org/</a>]]></bottom>
91100
</javadoc>

dist/jpt-2.0.1.jar

-138 Bytes
Binary file not shown.

docs/api/allclasses-frame.html

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)