...
Code Block |
---|
<Parameter "frevvo.menu.bar" value="false" override="false"/> |
Info |
---|
Any parameter in web.xml can be duplicated in frevvo.xml and the value in frevvo.xml takes precedence over the value in web.xml. If you plan to override the web.xml context parameter values and you are using the frevvo Tomcat bundle, we suggest doing so in frevvo.xml. This keeps all your modified parameters in one place and makes it easy to upgrade frevvo to newer releases. |
...
Code Block |
---|
<Parameter name="frevvo.logo.url" value="<url to your image>" override="false"/> |
The override="false" prevents the values in the configuration parameters in frevvo.xml from being overridden.
These are the brandable parameters and their defaults:
Parameter | Description | Default | |||
---|---|---|---|---|---|
frevvo.home.url | Home page for the Company Logo link | ${context.path} | |||
frevvo.logo.url | URL to the Company Logo image. Also applies to Spaces | ${context.path}/images/bright/TransparentLogo-NoBeta.png | |||
frevvo.help.url | URL to the Help page | ${context.path}${servlet.path}/static/help/designer | |||
frevvo.docs.url | URL to the Documentation | http://docs.frevvo.com/d/display/frevvo/frevvo+v5+Documentation+Home | |||
frevvo.forum.url | URL to the Forum | http://forum.frevvo.com/forum/ | |||
frevvo.blog.url | URL to the blog | http://blog.frevvo.com | |||
frevvo.product.name | The Product Name | Live Forms | |||
frevvo.copyright | Product Copyright One-Liner | Copyright 2006-2012 frevvo Inc. All rights reserved. | |||
frevvo.license.url | URL to License Agreement | ${context.path}${servlet.path}/static/termsDL | |||
frevvo.contact.email | Contact Us email address | mailto:info@frevvo.com | |||
frevvo.downloads.menu | Show Downloads menu item | true | |||
frevvo.gallery.menu | Show Gallery (Examples) menu item | true | frevvo.templates.menu | Show Templates menu item | true |
frevvo.css.url | Custom Stylesheet URL | ||||
frevvo.poweredby.markup | Logo in form footer when the Logo property set | Powered by Live Forms™ | |||
frevvo.page.title | HTML title prefix for all Live Form pages | frevvo | |||
frevvo.menu.bar | Show menu bar | true | |||
frevvo.oem.branding.class | Names css class applied to body of UI pages | empty | |||
frevvo.certificate.signature | Ignore SSL Security when posting to an https endpoint | empty |
...
These parameters in the frevvo.xml file would be :
Code Block |
---|
<Parameter name="frevvo.downloads.menu" value="false" override="false"/>
<Parameter name="frevvo.docs.url" value="" override="false"/> |
The look & feel of the Live Forms application is controlled via css. frevvo.css.url gives you the ability to add your own style sheet if you need to customize the look & feel of the page itself such as the background colors and sizes of the items on the pages. You can use a tool such as firebug to learn how the page is styled with css and thus how to override the default styling.
...
- Unzip the frevvo.war as explained here. Rezip it after the modifications are made.
- The parameters are located in the Database Schema checking on startup section:
Code Block |
---|
<!-- Database Schema checking on startup --> <context-param> <param-name>frevvo.db.check.encoding</param-name> <param-value>true</param-value> <description>Check the database encoding on startup</description> </context-param> <context-param> <param-name>frevvo.db.encoding.error</param-name> <param-value>true</param-value> <description>If encoding is checked and is wrong, then it is a fatal error, otherwise only a warning is logged</description> </context-param> |
These parameters in the frevvo.xml file would be:
Code Block |
---|
<Parameter name "frevvo.db.check.encoding" value="true" override="false"/>
<Parameter name "frevvo.db.encoding.error" value="true" override="false"/>
|
Pointing frevvo Help Links to your Documentation
...
Branding CSS
OEM partners can use the context parameter, frevvo.oem.branding.class to name a css class that will be placed onto the body of the UI pages (form designer, etc.). Follow the steps below to do this:
...