This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-site-plugin.git
commit 2ab22945eeacc4523ffef52c940dba6ba61ee9dd Author: Michael Osipov <[email protected]> AuthorDate: Sat Oct 14 00:12:33 2023 +0200 [MSITE-985] Upgrade plugins and components (in ITs) --- pom.xml | 6 +- src/it/projects/MSITE-159/verify.bsh | 6 +- src/it/projects/MSITE-456/verify.bsh | 8 +- src/it/projects/MSITE-582/verify.groovy | 4 +- src/it/projects/MSITE-658/verify.bsh | 4 +- src/it/projects/inheritedMenus/verify.bsh | 58 +++++++------- src/it/projects/site-inheritance/verify.bsh | 120 ++++++++++++++-------------- 7 files changed, 103 insertions(+), 103 deletions(-) diff --git a/pom.xml b/pom.xml index 1573140d..7150a76a 100644 --- a/pom.xml +++ b/pom.xml @@ -196,7 +196,7 @@ under the License. <mavenVersion>3.2.5</mavenVersion> <javaVersion>8</javaVersion> <!-- for dependencies --> - <jettyVersion>9.4.51.v20230217</jettyVersion> + <jettyVersion>9.4.53.v20231009</jettyVersion> <doxiaVersion>2.0.0-M8</doxiaVersion> <doxiaSitetoolsVersion>2.0.0-M13</doxiaSitetoolsVersion> <wagonVersion>3.5.3</wagonVersion> @@ -207,10 +207,10 @@ under the License. <pmdPluginVersion>3.21.0</pmdPluginVersion> <jxrPluginVersion>3.3.0</jxrPluginVersion> <projectInfoReportsPluginVersion>3.4.5</projectInfoReportsPluginVersion> - <surefirePluginVersion>3.0.0</surefirePluginVersion> + <surefirePluginVersion>3.1.2</surefirePluginVersion> <mavenPluginPluginVersion>3.9.0</mavenPluginPluginVersion> <mavenReportingImplVersion>4.0.0-M11</mavenReportingImplVersion> - <testingFluidoSkinVersion>2.0.0-M6</testingFluidoSkinVersion> + <testingFluidoSkinVersion>2.0.0-M8</testingFluidoSkinVersion> <surefire.version>3.1.2</surefire.version> <project.build.outputTimestamp>2023-10-03T09:04:32Z</project.build.outputTimestamp> diff --git a/src/it/projects/MSITE-159/verify.bsh b/src/it/projects/MSITE-159/verify.bsh index 27ae87ed..34dc3f05 100644 --- a/src/it/projects/MSITE-159/verify.bsh +++ b/src/it/projects/MSITE-159/verify.bsh @@ -41,9 +41,9 @@ try } String content = FileUtils.fileRead( index, "UTF-8" ); - int index1 = content.indexOf( "<a href=\"http://webhost.company.com/index.html\" class=\"externalLink\" title=\"Breadcrumb\">Breadcrumb</a>" ); - int index2 = content.indexOf( "<a href=\"http://webhost.company.com/\" class=\"externalLink\" title=\"Link\">Link</a>" ); - int index3 = content.indexOf( "<a href=\"http://webhost.company.com/\" class=\"externalLink\" title=\"Menu\"><span class=\"none\"></span>Menu</a>" ); + int index1 = content.indexOf( "<a href=\"http://webhost.company.com/index.html\" class=\"externalLink\">Breadcrumb</a>" ); + int index2 = content.indexOf( "<a href=\"http://webhost.company.com/\" class=\"externalLink\">Link</a>" ); + int index3 = content.indexOf( "<a href=\"http://webhost.company.com/\" class=\"externalLink\">Menu</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "index.html has incorrect links!" ); diff --git a/src/it/projects/MSITE-456/verify.bsh b/src/it/projects/MSITE-456/verify.bsh index cf91a95b..b63853a7 100644 --- a/src/it/projects/MSITE-456/verify.bsh +++ b/src/it/projects/MSITE-456/verify.bsh @@ -40,8 +40,8 @@ try } String content = FileUtils.fileRead( parentIndex, "UTF-8" ); - int index1 = content.indexOf( "<a href=\"child/index.html\" title=\"MSITE-456 - child\"><span class=\"none\"></span>MSITE-456 - child</a>" ); - int index2 = content.indexOf( "<a href=\"project-info.html\" title=\"Project Information\"><span class=\"icon-chevron-down\"></span>Project Information</a>" ); + int index1 = content.indexOf( "<a href=\"child/index.html\">MSITE-456 - child</a>" ); + int index2 = content.indexOf( "<a href=\"project-info.html\"><span class=\"icon-chevron-down\"></span>Project Information</a>" ); if ( index1 < 0 || index2 < 0 ) @@ -75,8 +75,8 @@ try } content = FileUtils.fileRead( childIndex, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../index.html\" title=\"MSITE-456 - parent\"><span class=\"none\"></span>MSITE-456 - parent</a>" ); - index2 = content.indexOf( "<a href=\"project-info.html\" title=\"Project Information\"><span class=\"icon-chevron-down\"></span>Project Information</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">MSITE-456 - parent</a>" ); + index2 = content.indexOf( "<a href=\"project-info.html\"><span class=\"icon-chevron-down\"></span>Project Information</a>" ); if ( index1 < 0 || index2 < 0 ) { diff --git a/src/it/projects/MSITE-582/verify.groovy b/src/it/projects/MSITE-582/verify.groovy index d24ed556..d9c526aa 100644 --- a/src/it/projects/MSITE-582/verify.groovy +++ b/src/it/projects/MSITE-582/verify.groovy @@ -20,7 +20,7 @@ content = new File( basedir, 'child/target/site/index.html' ).text; -assert !content.contains( '<a href="A/B/C/D" title="D">D</a>' ); -assert content.contains( '<a href="A/B/C/M" title="M">M</a>' ); +assert !content.contains( '<a href="A/B/C/D">D</a>' ); +assert content.contains( '<a href="A/B/C/M">M</a>' ); return true; \ No newline at end of file diff --git a/src/it/projects/MSITE-658/verify.bsh b/src/it/projects/MSITE-658/verify.bsh index 557af2f4..188326d0 100644 --- a/src/it/projects/MSITE-658/verify.bsh +++ b/src/it/projects/MSITE-658/verify.bsh @@ -41,7 +41,7 @@ try } String content = FileUtils.fileRead( licenses, "UTF-8" ); - int index = content.indexOf( "<a href=\"index.html\" title=\"Home\"><span class=\"none\"></span>Home</a>" ); + int index = content.indexOf( "<a href=\"index.html\">Home</a>" ); if ( index < 0 ) { System.err.println( "licenses.html has incorrect links!" ); @@ -65,7 +65,7 @@ try } content = FileUtils.fileRead( licenses, "UTF-8" ); - int index = content.indexOf( "<a href=\"index.html\" title=\"Heim\"><span class=\"none\"></span>Heim</a>" ); + int index = content.indexOf( "<a href=\"index.html\">Heim</a>" ); if ( index < 0 ) { System.err.println( "licenses.html has incorrect links!" ); diff --git a/src/it/projects/inheritedMenus/verify.bsh b/src/it/projects/inheritedMenus/verify.bsh index d92d798b..dd321400 100644 --- a/src/it/projects/inheritedMenus/verify.bsh +++ b/src/it/projects/inheritedMenus/verify.bsh @@ -47,10 +47,10 @@ try } String content = FileUtils.fileRead( parentIndex, "UTF-8" ); - int index1 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Relative Home Inherited</a></li>" ); - int index2 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Relative Home Inherited with dot</a></li>" ); - int index3 = content.indexOf( "<li><a href=\"./\" title=\"Parent Absolute Home Inherited\"><span class=\"none\"></span>Parent Absolute Home Inherited</a></li>" ); - int index4 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Absolute Home Inherited with index</a></li>" ); + int index1 = content.indexOf( "<li class=\"active\"><a>Parent Relative Home Inherited</a></li>" ); + int index2 = content.indexOf( "<li class=\"active\"><a>Parent Relative Home Inherited with dot</a></li>" ); + int index3 = content.indexOf( "<li><a href=\"./\">Parent Absolute Home Inherited</a></li>" ); + int index4 = content.indexOf( "<li class=\"active\"><a>Parent Absolute Home Inherited with index</a></li>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { @@ -58,10 +58,10 @@ try result = false; } - index1 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Relative Home Local</a></li>" ); - index2 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Relative Home Local with dot</a></li>" ); - index3 = content.indexOf( "<li><a href=\"./\" title=\"Parent Absolute Home Local\"><span class=\"none\"></span>Parent Absolute Home Local</a></li>" ); - index4 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Parent Absolute Home Local with index</a></li>" ); + index1 = content.indexOf( "<li class=\"active\"><a>Parent Relative Home Local</a></li>" ); + index2 = content.indexOf( "<li class=\"active\"><a>Parent Relative Home Local with dot</a></li>" ); + index3 = content.indexOf( "<li><a href=\"./\">Parent Absolute Home Local</a></li>" ); + index4 = content.indexOf( "<li class=\"active\"><a>Parent Absolute Home Local with index</a></li>" ); if ( index1 < 0 || index2 < 0 || index4 < 0 ) { @@ -69,8 +69,8 @@ try result = false; } - index1 = content.indexOf( "<li><a href=\"childNotAsRef/index.html\" title=\"Child Not As Ref\"><span class=\"none\"></span>Child Not As Ref</a></li>" ); - index2 = content.indexOf( "<li><a href=\"project-info.html\" title=\"Project Information\"><span class=\"icon-chevron-down\"></span>Project Information</a" ); + index1 = content.indexOf( "<li><a href=\"childNotAsRef/index.html\">Child Not As Ref</a></li>" ); + index2 = content.indexOf( "<li><a href=\"project-info.html\"><span class=\"icon-chevron-down\"></span>Project Information</a" ); index3 = content.indexOf( "<li class=\"nav-header\">Parent Project</li>" ); if ( index1 < 0 || index2 < 0 || index3 >= 0 ) @@ -105,10 +105,10 @@ try } content = FileUtils.fileRead( childIndex, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../index.html\" title=\"Parent Relative Home Inherited\"><span class=\"none\"></span>Parent Relative Home Inherited</a>" ); - index2 = content.indexOf( "<a href=\"../index.html\" title=\"Parent Relative Home Inherited with dot\"><span class=\"none\"></span>Parent Relative Home Inherited with dot</a>" ); - index3 = content.indexOf( "<a href=\"../\" title=\"Parent Absolute Home Inherited\"><span class=\"none\"></span>Parent Absolute Home Inherited</a>" ); - index4 = content.indexOf( "<a href=\"../index.html\" title=\"Parent Absolute Home Inherited with index\"><span class=\"none\"></span>Parent Absolute Home Inherited with index</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">Parent Relative Home Inherited</a>" ); + index2 = content.indexOf( "<a href=\"../index.html\">Parent Relative Home Inherited with dot</a>" ); + index3 = content.indexOf( "<a href=\"../\">Parent Absolute Home Inherited</a>" ); + index4 = content.indexOf( "<a href=\"../index.html\">Parent Absolute Home Inherited with index</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { @@ -116,10 +116,10 @@ try result = false; } - index1 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Child Relative Home Local</a></li>" ); - index2 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Child Relative Home Local with dot</a></li>" ); - index3 = content.indexOf( "<li><a href=\"./\" title=\"Child Absolute Home Local\"><span class=\"none\"></span>Child Absolute Home Local</a></li>" ); - index4 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Child Absolute Home Local with index</a></li>" ); + index1 = content.indexOf( "<li class=\"active\"><a>Child Relative Home Local</a></li>" ); + index2 = content.indexOf( "<li class=\"active\"><a>Child Relative Home Local with dot</a></li>" ); + index3 = content.indexOf( "<li><a href=\"./\">Child Absolute Home Local</a></li>" ); + index4 = content.indexOf( "<li class=\"active\"><a>Child Absolute Home Local with index</a></li>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { @@ -127,8 +127,8 @@ try result = false; } - index1 = content.indexOf( "<a href=\"grandChildNotAsRef/index.html\" title=\"GrandChild Not As Ref\"><span class=\"none\"></span>GrandChild Not As Ref</a>" ); - index2 = content.indexOf( "<a href=\"../index.html\" title=\"Parent Not As Ref\"><span class=\"none\"></span>Parent Not As Ref</a>" ); + index1 = content.indexOf( "<a href=\"grandChildNotAsRef/index.html\">GrandChild Not As Ref</a>" ); + index2 = content.indexOf( "<a href=\"../index.html\">Parent Not As Ref</a>" ); if ( index1 < 0 || index2 < 0 ) { @@ -162,10 +162,10 @@ try } content = FileUtils.fileRead( grandChildIndex, "UTF-8" ); - index1 = content.indexOf( "a href=\"../../index.html\" title=\"Parent Relative Home Inherited\"><span class=\"none\"></span>Parent Relative Home Inherited</a>" ); - index2 = content.indexOf( "<a href=\"../../index.html\" title=\"Parent Relative Home Inherited with dot\"><span class=\"none\"></span>Parent Relative Home Inherited with dot</a>" ); - index3 = content.indexOf( "<a href=\"../../\" title=\"Parent Absolute Home Inherited\"><span class=\"none\"></span>Parent Absolute Home Inherited</a>" ); - index4 = content.indexOf( "<a href=\"../../index.html\" title=\"Parent Absolute Home Inherited with index\"><span class=\"none\"></span>Parent Absolute Home Inherited with index</a>" ); + index1 = content.indexOf( "a href=\"../../index.html\">Parent Relative Home Inherited</a>" ); + index2 = content.indexOf( "<a href=\"../../index.html\">Parent Relative Home Inherited with dot</a>" ); + index3 = content.indexOf( "<a href=\"../../\">Parent Absolute Home Inherited</a>" ); + index4 = content.indexOf( "<a href=\"../../index.html\">Parent Absolute Home Inherited with index</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { @@ -173,10 +173,10 @@ try result = false; } - index1 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Grand Child Relative Home Local</a></li>" ); - index2 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Grand Child Relative Home Local with dot</a></li>" ); - index3 = content.indexOf( "<li><a href=\"./\" title=\"Grand Child Absolute Home Local\"><span class=\"none\"></span>Grand Child Absolute Home Local</a></li>" ); - index4 = content.indexOf( "<li class=\"active\"><a><span class=\"none\"></span>Grand Child Absolute Home Local with index</a></li>" ); + index1 = content.indexOf( "<li class=\"active\"><a>Grand Child Relative Home Local</a></li>" ); + index2 = content.indexOf( "<li class=\"active\"><a>Grand Child Relative Home Local with dot</a></li>" ); + index3 = content.indexOf( "<li><a href=\"./\">Grand Child Absolute Home Local</a></li>" ); + index4 = content.indexOf( "<li class=\"active\"><a>Grand Child Absolute Home Local with index</a></li>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { @@ -184,7 +184,7 @@ try result = false; } - index1 = content.indexOf( "<a href=\"../index.html\" title=\"Child Not As Ref\"><span class=\"none\"></span>Child Not As Ref</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">Child Not As Ref</a>" ); if ( index1 < 0 ) { diff --git a/src/it/projects/site-inheritance/verify.bsh b/src/it/projects/site-inheritance/verify.bsh index 68ac2f44..2381bfec 100644 --- a/src/it/projects/site-inheritance/verify.bsh +++ b/src/it/projects/site-inheritance/verify.bsh @@ -59,7 +59,7 @@ try } String content = FileUtils.fileRead( index, "UTF-8" ); - int indexOf = content.indexOf( "<a href=\"../index.html\" title=\"Aggregator\"><span class=\"none\"></span>Aggregator</a>" ); + int indexOf = content.indexOf( "<a href=\"../index.html\">Aggregator</a>" ); if ( indexOf < 0 ) { System.err.println( "deployed junk index.html is missing module link!" ); @@ -75,10 +75,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\" title=\"Child and Module\"><span class=\"none\"></span>Child and Module</a></li>" ); - int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\" title=\"Inheriting Child\"><span class=\"none\"></span>Inheriting Child</a>" ); - int index3 = content.indexOf( "<a href=\"www/website/module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); - int index4 = content.indexOf( "<a href=\"./\" title=\"Aggregator\">Aggregator</a>" ); + int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\">Child and Module</a></li>" ); + int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\">Inheriting Child</a>" ); + int index3 = content.indexOf( "<a href=\"www/website/module/index.html\">Module</a>" ); + int index4 = content.indexOf( "<a href=\"./\">Aggregator</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "deploy index.html is missing module link!" ); @@ -116,10 +116,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"breadcrumbs Parent\">breadcrumbs Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs /Child\">breadcrumbs /Child</a>" ); - index3 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"links ./Parent\">links ./Parent</a>" ); - index4 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../../../../../index.html\">breadcrumbs Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs /Child</a>" ); + index3 = content.indexOf( "<a href=\"../../../../../index.html\">links ./Parent</a>" ); + index4 = content.indexOf( "<a href=\"../../../../../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "deployed deepDownBelow index.html is missing links!" ); @@ -142,10 +142,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../index.html\" title=\"breadcrumbs /Parent\">breadcrumbs /Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./Child\">breadcrumbs ./Child</a>" ); - index3 = content.indexOf( "<a href=\"../index.html\" title=\"links Parent\">links Parent</a>" ); - index4 = content.indexOf( "<a href=\"../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">breadcrumbs /Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./Child</a>" ); + index3 = content.indexOf( "<a href=\"../index.html\">links Parent</a>" ); + index4 = content.indexOf( "<a href=\"../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "deployed inheritingChild index.html is missing links!" ); @@ -168,9 +168,9 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs Module\">breadcrumbs Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"links ./Module\">links ./Module</a>" ); - index3 = content.indexOf( "<a href=\"../sub_module/index.html\" title=\"Sub-Module\"><span class=\"none\"></span>Sub-Module</a>" ); + index1 = content.indexOf( "<a href=\"index.html\">breadcrumbs Module</a>" ); + index2 = content.indexOf( "<a>links ./Module</a>" ); + index3 = content.indexOf( "<a href=\"../sub_module/index.html\">Sub-Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "deployed moduleDirectory index.html has wrong links!" ); @@ -194,10 +194,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../module/index.html\" title=\"breadcrumbs /Module\">breadcrumbs /Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./SubModule\">breadcrumbs ./SubModule</a>" ); - index3 = content.indexOf( "<a href=\"../module/index.html\" title=\"links Module\">links Module</a>" ); - index4 = content.indexOf( "<a href=\"../module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); + index1 = content.indexOf( "<a href=\"../module/index.html\">breadcrumbs /Module</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./SubModule</a>" ); + index3 = content.indexOf( "<a href=\"../module/index.html\">links Module</a>" ); + index4 = content.indexOf( "<a href=\"../module/index.html\">Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "deployed subModuleDirectory index.html has wrong links!" ); @@ -237,7 +237,7 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - int indexOf = content.indexOf( "<a href=\"../index.html\" title=\"Aggregator\"><span class=\"none\"></span>Aggregator</a>" ); + int indexOf = content.indexOf( "<a href=\"../index.html\">Aggregator</a>" ); if ( indexOf < 0 ) { System.err.println( "staged junk index.html is missing module link!" ); @@ -253,10 +253,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\" title=\"Child and Module\"><span class=\"none\"></span>Child and Module</a>" ); - int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\" title=\"Inheriting Child\"><span class=\"none\"></span>Inheriting Child</a>" ); - int index3 = content.indexOf( "<a href=\"www/website/module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); - int index4 = content.indexOf( "<a href=\"./\" title=\"Aggregator\">Aggregator</a>" ); + int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\">Child and Module</a>" ); + int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\">Inheriting Child</a>" ); + int index3 = content.indexOf( "<a href=\"www/website/module/index.html\">Module</a>" ); + int index4 = content.indexOf( "<a href=\"./\">Aggregator</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "staged index.html is missing module link!" ); @@ -294,10 +294,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"breadcrumbs Parent\">breadcrumbs Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs /Child\">breadcrumbs /Child</a>" ); - index3 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"links ./Parent\">links ./Parent</a>" ); - index4 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../../../../../index.html\">breadcrumbs Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs /Child</a>" ); + index3 = content.indexOf( "<a href=\"../../../../../index.html\">links ./Parent</a>" ); + index4 = content.indexOf( "<a href=\"../../../../../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "staged deepDownBelow index.html is missing links!" ); @@ -320,10 +320,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../index.html\" title=\"breadcrumbs /Parent\">breadcrumbs /Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./Child\">breadcrumbs ./Child</a>" ); - index3 = content.indexOf( "<a href=\"../index.html\" title=\"links Parent\">links Parent</a>" ); - index4 = content.indexOf( "<a href=\"../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">breadcrumbs /Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./Child</a>" ); + index3 = content.indexOf( "<a href=\"../index.html\">links Parent</a>" ); + index4 = content.indexOf( "<a href=\"../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "staged inheritingChild index.html is missing links!" ); @@ -346,9 +346,9 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs Module\">breadcrumbs Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"links ./Module\">links ./Module</a>" ); - index3 = content.indexOf( "<a href=\"../sub_module/index.html\" title=\"Sub-Module\"><span class=\"none\"></span>Sub-Module</a>" ); + index1 = content.indexOf( "<a href=\"index.html\">breadcrumbs Module</a>" ); + index2 = content.indexOf( "<a>links ./Module</a>" ); + index3 = content.indexOf( "<a href=\"../sub_module/index.html\">Sub-Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "staged moduleDirectory index.html has wrong links!" ); @@ -372,10 +372,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../module/index.html\" title=\"breadcrumbs /Module\">breadcrumbs /Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./SubModule\">breadcrumbs ./SubModule</a>" ); - index3 = content.indexOf( "<a href=\"../module/index.html\" title=\"links Module\">links Module</a>" ); - index4 = content.indexOf( "<a href=\"../module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); + index1 = content.indexOf( "<a href=\"../module/index.html\">breadcrumbs /Module</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./SubModule</a>" ); + index3 = content.indexOf( "<a href=\"../module/index.html\">links Module</a>" ); + index4 = content.indexOf( "<a href=\"../module/index.html\">Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "staged subModuleDirectory index.html has wrong links!" ); @@ -414,7 +414,7 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - int indexOf = content.indexOf( "<a href=\"../index.html\" title=\"Aggregator\"><span class=\"none\"></span>Aggregator</a>" ); + int indexOf = content.indexOf( "<a href=\"../index.html\">Aggregator</a>" ); if ( indexOf < 0 ) { System.err.println( "stage-deployed junk index.html is missing module link!" ); @@ -430,10 +430,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\" title=\"Child and Module\"><span class=\"none\"></span>Child and Module</a>" ); - int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\" title=\"Inheriting Child\"><span class=\"none\"></span>Inheriting Child</a>" ); - int index3 = content.indexOf( "<a href=\"www/website/module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); - int index4 = content.indexOf( "<a href=\"./\" title=\"Aggregator\">Aggregator</a>" ); + int index1 = content.indexOf( "<a href=\"www/website/deep/down/below/index.html\">Child and Module</a>" ); + int index2 = content.indexOf( "<a href=\"inheriting_child/index.html\">Inheriting Child</a>" ); + int index3 = content.indexOf( "<a href=\"www/website/module/index.html\">Module</a>" ); + int index4 = content.indexOf( "<a href=\"./\">Aggregator</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "stage-deployed index.html is missing module link!" ); @@ -471,10 +471,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"breadcrumbs Parent\">breadcrumbs Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs /Child\">breadcrumbs /Child</a>" ); - index3 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"links ./Parent\">links ./Parent</a>" ); - index4 = content.indexOf( "<a href=\"../../../../../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../../../../../index.html\">breadcrumbs Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs /Child</a>" ); + index3 = content.indexOf( "<a href=\"../../../../../index.html\">links ./Parent</a>" ); + index4 = content.indexOf( "<a href=\"../../../../../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "stage-deployed deepDownBelow index.html is missing links!" ); @@ -497,10 +497,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../index.html\" title=\"breadcrumbs /Parent\">breadcrumbs /Parent</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./Child\">breadcrumbs ./Child</a>" ); - index3 = content.indexOf( "<a href=\"../index.html\" title=\"links Parent\">links Parent</a>" ); - index4 = content.indexOf( "<a href=\"../index.html\" title=\"Parent\"><span class=\"none\"></span>Parent</a>" ); + index1 = content.indexOf( "<a href=\"../index.html\">breadcrumbs /Parent</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./Child</a>" ); + index3 = content.indexOf( "<a href=\"../index.html\">links Parent</a>" ); + index4 = content.indexOf( "<a href=\"../index.html\">Parent</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 || index4 < 0 ) { System.err.println( "stage-deployed inheritingChild index.html is missing links!" ); @@ -523,9 +523,9 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs Module\">breadcrumbs Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"links ./Module\">links ./Module</a>" ); - index3 = content.indexOf( "<a href=\"../sub_module/index.html\" title=\"Sub-Module\"><span class=\"none\"></span>Sub-Module</a>" ); + index1 = content.indexOf( "<a href=\"index.html\">breadcrumbs Module</a>" ); + index2 = content.indexOf( "<a>links ./Module</a>" ); + index3 = content.indexOf( "<a href=\"../sub_module/index.html\">Sub-Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "stage-deployed moduleDirectory index.html has wrong links!" ); @@ -549,10 +549,10 @@ try } content = FileUtils.fileRead( index, "UTF-8" ); - index1 = content.indexOf( "<a href=\"../module/index.html\" title=\"breadcrumbs /Module\">breadcrumbs /Module</a>" ); - index2 = content.indexOf( "<a href=\"index.html\" title=\"breadcrumbs ./SubModule\">breadcrumbs ./SubModule</a>" ); - index3 = content.indexOf( "<a href=\"../module/index.html\" title=\"links Module\">links Module</a>" ); - index4 = content.indexOf( "<a href=\"../module/index.html\" title=\"Module\"><span class=\"none\"></span>Module</a>" ); + index1 = content.indexOf( "<a href=\"../module/index.html\">breadcrumbs /Module</a>" ); + index2 = content.indexOf( "<a href=\"index.html\">breadcrumbs ./SubModule</a>" ); + index3 = content.indexOf( "<a href=\"../module/index.html\">links Module</a>" ); + index4 = content.indexOf( "<a href=\"../module/index.html\">Module</a>" ); if ( index1 < 0 || index2 < 0 || index3 < 0 ) { System.err.println( "stage-deployed subModuleDirectory index.html has wrong links!" );
