我正在创建一个 Maven 皮肤(请参阅https://maven.apache.org/doxia/doxia-sitetools/doxia-site-renderer/)。
如果链接是正在呈现的当前文件,我的site.vm需要在导航栏中突出显示链接。
因此,我需要知道site.vm正在呈现的 HTML 文件的名称。
$currentFileName和$alignedFileName宏适用于常规文档(例如来自 Markdown 源)。但是对于多页文档,例如 Maven 报告插件会生成,这些宏会不断返回报告主页的名称,而不是正在呈现的页面。
如何检索正在呈现的文件的实际名称,而不仅仅是 Maven 报告插件的主 HTML 页面的名称?
我尝试了以下宏但没有成功:
$alignedFileName
$currentFileName
$docRenderingContext.getInputName()
$docRenderingContext.getOutputName()
它们都返回相同的值,即 Maven 报告插件主页的 HTML 文件名。
KmReference.java(Maven Report 插件,使用getSinkFactory().createSink(outputDirectory, pageFilename)创建多个页面):
public class KmReference extends AbstractMavenReport {
public String getOutputName() {
return "km-reference";
}
…
@Override
protected void executeReport(Locale locale) throws MavenReportException {
…
// Create a new sink!
Sink kmSink;
try {
kmSink = getSinkFactory().createSink(outputDirectory, pageFilename);
} catch (IOException e) {
throw new MavenReportException("Could not create sink for " + pageFilename + " in " + outputDirectory.getAbsolutePath(), e);
}
site.vm(速度):
alignedFileName = $alignedFileName
currentFileName = $currentFileName
getDoxiaSourcePath() = $docRenderingContext.getDoxiaSourcePath()
getGenerator() = $docRenderingContext.getGenerator()
getInputName() = $docRenderingContext.getInputName()
getOutputName() = $docRenderingContext.getOutputName()
getParserId() = $docRenderingContext.getParserId()
getRelativePath() = $docRenderingContext.getRelativePath()
在我的 Maven Report 插件生成的所有 HTML 文件中,我将得到完全相同的值:
another-page.html(不是 km-reference.html):
alignedFileName = km-reference.html
currentFileName = km-reference.html
getDoxiaSourcePath() = $docRenderingContext.getDoxiaSourcePath()
getGenerator() = com.sentrysoftware.maven:patrolreport-maven-plugin:2.0:km-reference
getInputName() = km-reference.html
getOutputName() = km-reference.html
getParserId() = $docRenderingContext.getParserId()
getRelativePath() = .
我希望至少$alignedFileName返回值another-page.html。