Thiago, If you do end up recreating the javadoc pages, here's a tiny little patch to tapestry-javadoc/build.gradle to fix the version numbers at the bottom of the javadoc pages. I'd commit it now except I'm having Apache password problems all of a sudden:
diff --git a/build.gradle b/build.gradle index 30469c5..8898557 100755 --- a/build.gradle +++ b/build.gradle @@ -327,6 +327,7 @@ task aggregateJavadoc(type: Javadoc) { destinationDir file("$buildDir/documentation/javadocs") def tapestryStylesheet = file("src/javadoc/stylesheet7.css") + int thisYear = java.time.Year.now().getValue() configure(options) { splitIndex true @@ -335,7 +336,7 @@ task aggregateJavadoc(type: Javadoc) { windowTitle "Tapestry API - ${project.version}" header "Tapestry API - ${project.version}" docTitle "Tapestry API - ($project.version)" - bottom '${project.version} - Copyright © 2003-2015 <a href="http://tapestry.apache.org">The Apache Software Foundation</a>.' + bottom "${project.version} - Copyright © 2003-${thisYear} <a href=\"http://tapestry.apache.org/\">The Apache Software Foundation</a>." use = true // 'use' seems to be a reserved word for the DSL links "https://docs.oracle.com/javase/8/docs/api/" links "https://docs.oracle.com/javaee/7/api/" On Mon, Mar 30, 2020 at 10:03 AM Thiago H. de Paula Figueiredo <thiag...@gmail.com> wrote: > > On Sat, Mar 28, 2020 at 6:51 PM Bob Harner <bobhar...@gmail.com> wrote: > > > Thiago, > > > > Hello! > > Indeed, it looks like I've made a number of errors while doing the > documentation part of the release. Thanks for spotting them! I'll try to > fix them as soon as possible. > > > > I'm guessing you created the apidocs after bumping the version to 5.6.0 on > > your desktop. That might explain why the published apidocs pages all say > > 5.6.0 at the top. Not a major problem, just wanted to let you know. > > Also, there's an extraneous directory tree of yours in there left over from > > Sep 2019: > > > > https://tapestry.apache.org/5.4.5/coffeescript/home/thiago/ > > > > Again, not causing any real harm there. > > > > > -- > Thiago --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tapestry.apache.org For additional commands, e-mail: dev-h...@tapestry.apache.org