Page 1 of 1

Suppress results?

Posted: Thu Jul 16, 2020 10:30 pm
by wmaclean
Hello,
We are migrating from Arbortext to Oxygen, but have to keep our files maintainable in both for the time being.

The only problem is that Arbortext is using backslashes for some filepaths, while Oxygen is reporting an error because it expects forward slashes - although, it still resolves backslashes ok.

It reports those errors in the Results frame every time you save. But, we want to suppress that behavior, so if we close the Results frame, it doesn't open back up with the errors every time we save.

Screen shot:
image.png
image.png (135.49 KiB) Viewed 1160 times
Is there a way to suppress the Results frame from popping up every time we save?

Thanks,
Will

Re: Suppress results?

Posted: Fri Jul 17, 2020 7:47 am
by Radu
Hi Will,

According to the DITA standard:

https://www.oxygenxml.com/dita/1.3/spec ... ssing.html
URI references that are URLs must conform to the rules for URLs and URIs. Windows paths that contain a backslash (\) are not valid URLs.
those are errors and Oxygen does well in reporting them. We have no setting to control this and my advice to you is to correct all those paths.
Unfortunately we do now have a setting to control if the results view should pop-up or not when errors are reported.
We do have APIs which would allow a plugin to filter various problems from being reported, like this sample Javascript-based plugin implementation here:
https://github.com/oxygenxml/wsaccess-j ... lemsFilter

Regards,
Radu

Re: Suppress results?

Posted: Fri Jul 17, 2020 5:47 pm
by wmaclean
Hi Radu,
Thanks very much for your help.

Will