Conrefs don't work for .dta files - source code not updated?
Brought to you by:
ldyer,
volo_klymko
Hiya
Here is the code in ConfluenceConfig:
private void loadSpaceMapping(File folderToExplore, String spaceKey)
{
File[] subFiles = folderToExplore.listFiles();
for (File file : subFiles) {
if (file.isDirectory()) {
loadSpaceMapping(file, spaceKey);
} else {
if (file.getName().endsWith(".xml")) {
This is called from ConfluenceConfig.loadContentMapping().
Since our files are .dita, the space mapping doesn't get loaded.
We're building a custom .jar. Is it possible that the source code isn't updated to the latest and greatest? Especially since it doesn't include phs for conrefs?