Author: centic Date: Mon Jul 15 05:40:48 2024 New Revision: 1919235 URL: http://svn.apache.org/viewvc?rev=1919235&view=rev Log: Patch forrest to expect all links to be "https" instead of "http"
Otherwise generating documentation leads to incorrect links with "../https://..." Unfortunately Forrest is archived at Apache so we cannot get this fixed in Forrest anymore. Modified: poi/trunk/build.xml Modified: poi/trunk/build.xml URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1919235&r1=1919234&r2=1919235&view=diff ============================================================================== --- poi/trunk/build.xml (original) +++ poi/trunk/build.xml Mon Jul 15 05:40:48 2024 @@ -2038,6 +2038,13 @@ under the License. unless="main.docs.notRequired" description="Builds the HTML pages of the POI website"> <echo message="Using Apache Forrest from ${env.FORREST_HOME}"/> + <echo message="Adjusting http -> https in forrset itself"/> + <replace dir="${env.FORREST_HOME}" + token="'http://'" + value="'https://'" + summary="true" + includes="**/*.xsl"/> + <exec executable="${env.FORREST_HOME}/bin/forrest" osfamily="unix"/> <exec executable="cmd" osfamily="windows"> <arg value="/c"/> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
