diff --git a/doc/install.html b/doc/install.html index 7cbb3d72..0ec114bd 100644 --- a/doc/install.html +++ b/doc/install.html @@ -562,6 +562,29 @@ http://vivo.mydomain.edu/ns#networkId + + + The temporal graph visualization can require extensive machine resources. + This can have a particularly noticable impact on memory usage if + + The VIVO developers are working to make this visualization more efficient. + In the meantime, VIVO release 1.2 guards against this impact by disabling + temporal graph visualization unless the "visualization.temporal" flag is + set to "enabled". + + + + + visualization.temporal + + + enabled + + The temporal graph visualization is used to diff --git a/doc/upgrade-1.2.html b/doc/upgrade-1.2.html index cda1c1c8..24b30fbd 100644 --- a/doc/upgrade-1.2.html +++ b/doc/upgrade-1.2.html @@ -538,6 +538,29 @@ http://vivo.mydomain.edu/ns#networkId + + + The temporal graph visualization can require extensive machine resources. + This can have a particularly noticable impact on memory usage if + + The VIVO developers are working to make this visualization more efficient. + In the meantime, VIVO release 1.2 guards against this impact by disabling + temporal graph visualization unless the "visualization.temporal" flag is + set to "enabled". + + + + + visualization.temporal + + + enabled + + The temporal graph visualization is used to diff --git a/productMods/templates/freemarker/body/individual/individual--foaf-organization.ftl b/productMods/templates/freemarker/body/individual/individual--foaf-organization.ftl index 98963e2a..1ec31144 100644 --- a/productMods/templates/freemarker/body/individual/individual--foaf-organization.ftl +++ b/productMods/templates/freemarker/body/individual/individual--foaf-organization.ftl @@ -3,7 +3,9 @@ <#-- Individual profile page template for foaf:Organization individuals (extends individual.ftl in vivo)--> <#assign classSpecificExtension> - <#include "individual-visualizationTemporalGraph.ftl"> + <#if temporalVisualizationEnabled??> + <#include "individual-visualizationTemporalGraph.ftl"> + -<#include "individual.ftl"> \ No newline at end of file +<#include "individual.ftl">