Skip to content

Windows installer

afabiani edited this page Apr 11, 2013 · 3 revisions

##Overview The Windows installation script has been created using the NSIS Installer. The folder release/installer/win contains only the scripting part, which must be compiled using NSIS right after copying the necessary release files into the bin folder. In the next section, a step-by-step explanation on how to create a new MapStore EXE installer.

##Configuration

exemple:

		var contextSwitcher = new gxp.form.ContextSwitcher({
			data:[["defaultConfiguration","Google/OST","","","public context"],["mycontext","My Context","","mycontext","a private context"] ["id","Custom Viewer", "viewer","config","descript"] ],
			currentContext:customConfigName || "defaultConfiguration",
			paramName:'config'		
		});

this configuration allows to switch beteeen N configurations changing the config parameter. the single entry is ["name","Title","base url(e.g. viewer/composer)","parameter value,"description(optional if you want to use a template"]

so the configuration above allow to switch between

  • Google/OST --> /
  • My Context --> /?config=mycontext
  • Custom Viewer --> /viewer?config=config

Clone this wiki locally