...
Parameter | Description | Default |
---|---|---|
frevvo.home.url | Home page for the Company Logo link | ${context.path} |
frevvo.logo.url | URL to the Company Logo image | ${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/docs/index.php/V4_Main_Page |
frevvo.forum.url | URL to the Forum | http://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.menu | Show Contact menu item | true |
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.contact.email | Contact Us email address | mailto:info@frevvo.com |
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 |
Branding External Urls
Notice that several of the parameters use Url templates. For example, frevvo.help.url references a help file named designer.xsl that is part of frevvo.war and is located in the directory <frevvo-home>\WEB-INF\xsl\main\help after the war file has been unzipped . You may wish to bundle up a replacement help file and store your replacement file in that same directory. In that case you will keep the templates ${context.path}${servlet.path}/static that are part of the default path and append your own help file name. It can be an html file, myAppHelp.html. Or if your help is an external file you can replace the entire default value ${context.path}${servlet.path}/static/help/designer with a Url such has http://mycompany/myapp/help.html. Refer to Installation Tasks for the steps to repackage frevvo.war after parameters in designer.xsl have been editied.
...
You can tell frevvo to ignore this error using the frevvo.certificate.signature context parameter . This should work with services that have self-signed certificates that aren't installed in jvm certificate file and with certificates from a security authority. Add this context parameter to the web.xml file included in the frevvo.war zipfile. See Installation Tasks for the instructions to unzip and rezip the war after modifications to the web.xml are completed.
Code Block |
---|
<context-param> <param-name>frevvo.certificate.signature</param-name> <param-value></param-value> <description>Set to true to accept self-signed certificates</description> </context-param> |
...