Further Information
1 Branding
Neowise can be adjusted to the corporate identity. The logo, the background of the login screen and the colors can be set in a configuration file in Pubserver’s repository.
Configuration is done in ISON. Repository Explorer -> Neowise -> [TENANT] -> custom_ApplicationConfig.xml
(create as copy of ApplicationConfig.xml
if not already available)
Upload images (e.g. logo or background image) to "globals -> images" using Repository Explorer in ISON.
<?xml version="1.0" encoding="UTF-8"?><con:PluginConfig xmlns:con="com.priint.pubserver.config.manager/20130620">
<con:name>custom_ApplicationConfig.xml</con:name>
<con:type>ApplicationConfig</con:type>
<con:custom>
<cfg:ApplicationConfig xmlns:cfg="http://priint.com/pubserver.appserver.config/v1">
<cfg:favIcon>/images/favIcon.png</cfg:favIcon>
<cfg:logo>/images/main-logo.png</cfg:logo>
<cfg:loginLogo>/images/login-logo.png</cfg:loginLogo>
<cfg:backgroundImg>/images/background.png</cfg:backgroundImg>
<cfg:theme>
<cfg:palette>
<cfg:primary>
<cfg:light>#FBC9E0</cfg:light>
<cfg:main>#e3006a</cfg:main>
<cfg:dark>#a90250</cfg:dark>
</cfg:primary>
</cfg:palette>
</cfg:theme>
<!-- ... -->
</cfg:ApplicationConfig>
</con:custom>
<con:dependencies/>
<con:instances/>
</con:PluginConfig>
- Fav Icon (
cfg:favIcon
): Add relative path to uploaded image in folder "globals" here, to change the browser icon of the application. - Main Logo (
cfg:logo
): Add relative path to uploaded image in folder "globals" here, to change the main logo of the application. - Login Screen Logo (
cfg:loginLogo
): Add relative path to uploaded image in folder "globals" here, to change the login logo of the application (fallback to main logo). - Background Image (
cfg:backgroundImg
): Add relative path to uploaded image in folder "globals" here, to change the login screen background of the application. - Main Color (
cfg:main
): Change main color of the application. RGB value. - Dark Color (
cfg:dark
): Change dark color of the application. RGB value. - Light Color (
cfg:light
): Change light color of the application. RGB value.
2 Application defaults / Window settings
The application defaults of Neowise can be changed to fit to the customer needs.
Configuration is done in ISON. Repository Explorer -> Neowise -> [TENANT] -> custom_ApplicationConfig.xml
(create as copy of ApplicationConfig.xml
if not already available)
<?xml version="1.0" encoding="UTF-8"?><con:PluginConfig xmlns:con="com.priint.pubserver.config.manager/20130620">
<con:name>custom_ApplicationConfig.xml</con:name>
<con:type>ApplicationConfig</con:type>
<con:custom>
<cfg:ApplicationConfig xmlns:cfg="http://priint.com/pubserver.appserver.config/v1">
<!-- ... -->
<cfg:windowSettings>
<cfg:window defaultView="false" panel="dashboard" sort="1" visible="true"/>
<cfg:window defaultView="false" panel="task" sort="2" visible="true"/>
<cfg:window defaultView="false" panel="kanban" sort="3" visible="true"/>
<cfg:window defaultView="true" panel="publication" sort="4" visible="true"/>
<cfg:window defaultView="false" panel="flatplan" sort="5" visible="true"/>
<cfg:window defaultView="false" panel="settings" sort="6" visible="true"/>
<cfg:window defaultView="false" panel="trash" sort="7" visible="true"/>
</cfg:windowSettings>
</cfg:ApplicationConfig>
</con:custom>
<con:dependencies/>
<con:instances/>
</con:PluginConfig>
- Default View: set this to "true" to decide which window is opened by default when the application is started
- Panel: name/key of window/panel
- Sort: change default value of sorting of windows in Neowise
- Visible: show/hide windows by default
This is a global default setting which can be overwritten by every user using the user profile configuration.