From 73ace48c715b5d609b009b80343c7ea7afd7a98e Mon Sep 17 00:00:00 2001 From: Michael Writhe Date: Wed, 19 Oct 2011 16:46:01 -0600 Subject: [PATCH] comment clarity to alleviate confusion regarding cacheMinutes. --- overviewer_core/data/web_assets/overviewerConfig.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/overviewer_core/data/web_assets/overviewerConfig.js b/overviewer_core/data/web_assets/overviewerConfig.js index c99398e..c4f5ffb 100644 --- a/overviewer_core/data/web_assets/overviewerConfig.js +++ b/overviewer_core/data/web_assets/overviewerConfig.js @@ -1,7 +1,9 @@ var overviewerConfig = { /** - * These are things that will probably not need to be changed by the user, - * but are there because otherwise changing them is a giant PITA. + * These are things that will probably not need to be changed, but are there because + * otherwise changing them is a giant PITA. If you, the user, sees that its crucial for + * you to change these settings then the document repository might be able to assit you. + * http://docs.overviewer.org/en/latest/options/#cmdoption--web-assets-path */ 'CONST': { /** @@ -88,6 +90,11 @@ var overviewerConfig = { 'center': {spawn_coords}, /** * Set this to tell browsers how long they should cache tiles in minutes. + * Essentially if set to 0, the url for tiles will end in .png + * if not set to 0 it will amend a number derived from the current time + * to the end of the url, like .png?c=123456. This is a great method for + * preventing browsers from caching the images. 0 saves bandwidth, not 0 + * prevents caching. */ 'cacheMinutes': 0, /**