Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • DisableAsyncTaxonomyLoading: Once enabled, the files of a taxonomy are read asynchronously instead of one after another.
  • DisableBinaryCache: When set to false, the faster binary cache is used. If a file is not found, the Engine will look for it in the cache folder.
  • FillOffllineCache: Once set to true, enables the Engine to access remote location where a taxonomy is hosted and download it. The folder path where the taxonomy will be stored, is specified by the XBRLFileCachePath setting.
  • ForceOfflineMode: Once enabled, forces the Engine to use the local cache where the taxonomies are located. If the taxonomies are not found, the engine will download them from the internet. The local cache path is specified by the XBRLFileCachePath setting.
  • MaxValidationExceptionLimit: Specified in numbers defining the Validation exception limit. Once limit is reached, the Engine throws a so-called XbrlExceptionLimitReachedException exception.
  • ReDownloadAndOverrideCachedFiles: When enabled, the cached files will always be replaced with new ones loaded from the internet.
  • TaxonomyPackageCacheType: Select in which form the taxonomy packages will be stored. You can choose between None, Extracted and Zip.
  • ThrowXBRLExceptionForUnitTesting: Once set to true, forces the Engine to throw a XbrlException if one occurs.
  • UseProxy: Once set, forces the Engine to use a Proxy Server in order to access the remote location where the taxonomy is situated. If enabled, the following Properties must be specified:
    • ProxyAddress: Must be a valid string.
    • ProxyPort: Must be a valid integer.
    • ProxyUser: Must be a valid string.
    • ProxyPasswordEncrypted: Must be a valid string.
    • ProxyUseAuthentication:  Must be a valid bool.
  • XBRLFileCachePath: Specifies a path to local folder where the taxonomies are stored.
Code Block
languagexml
<ValidateUTR>false</ValidateUTR>
  <CalculationLinkbaseValidationMode>Auto</CalculationLinkbaseValidationMode>
  <CalculationLinkbaseExclusions>
    <string>www.eba.europa.eu</string>
    <string>eiopa.europa.eu</string>
    <string>www.bundesbank.de</string>
    <string>www.bde.es</string>
    <string>www.srb.europa.eu</string>
    <string>www.fma-li.li</string>
    <string>www.bankingsupervision.europa.eu</string>
    <string>www.bankofengland.co.uk</string>
  </CalculationLinkbaseExclusions>
  <CalculationValidationSeverityErrorThreshold xsi:nil="true" />
</XBRLSettings>


From Portal version 2.3.0, settings above should be included in Xbrl settings.

The settings can be stored as an XML file using it’s static Save method:

...