- 概要
- テキストのプロパティ
- リソースの場所
- リソースの場所 # a html page displayed as the first page of the installer # any additional resources used by this page (images, styles) should also be added to the installer # but do not need to be referenced here resource.infopanel.html=resources/splash.html # image icons used to represent the available install packs resource.pack.core.img=resources/core.png resource.pack.tutorial.img=resources/tutorial.png resource.pack.usage.img=resources/usage.png resource.pack.lang.ja.img=resources/pack_lang_ja.png resource.pack.lang.es.img=resources/pack_lang_es.png resource.pack.lang.pt.img=resources/pack_lang_br.png resource.pack.lang.zh.img=resources/pack_lang_zh.png resource.pack.lang.fr.img=resources/pack_lang_fr.png # icons used for start-menu shortcuts resource.shortcut.homepage.icon=resources/homepage.ico resource.shortcut.startserver.icon=resources/start.ico resource.shortcut.stopserver.icon=resources/stop.ico resource.shortcut.uninstall.icon=resources/uninstall.ico # images used in the left-hand strip on each panel resource.lhs.infopanel.img=resources/border1.png resource.lhs.licencepanel.img=resources/border2.png resource.lhs.jreversionpanel.img=resources/border3.png resource.lhs.packspanel.img=resources/border3.png resource.lhs.licencefilepanel.img=resources/border4.png resource.lhs.optionspanel.img=resources/border4.png resource.lhs.dbtypepanel.img=resources/border4.png resource.lhs.progressdriverpanel.img=resources/border4.png resource.lhs.sqlauthpanel.img=resources/border4.png resource.lhs.createdbpanel.img=resources/border4.png resource.lhs.createuserpanel.img=resources/border4.png resource.lhs.dbinfopanel.img=resources/border4.png resource.lhs.targetpanel.img=resources/border5.png resource.lhs.processpanel.img=resources/border6.png resource.lhs.shortcutpanel.img=resources/border7.png resource.lhs.finishpanel.img=resources/border8.png "> リソースの場所 # a html page displayed as the first page of the installer # any additional resources used by this page (images, styles) should also be added to the installer # but do not need to be referenced here resource.infopanel.html=resources/splash.html # image icons used to represent the available install packs resource.pack.core.img=resources/core.png resource.pack.tutorial.img=resources/tutorial.png resource.pack.usage.img=resources/usage.png resource.pack.lang.ja.img=resources/pack_lang_ja.png resource.pack.lang.es.img=resources/pack_lang_es.png resource.pack.lang.pt.img=resources/pack_lang_br.png resource.pack.lang.zh.img=resources/pack_lang_zh.png resource.pack.lang.fr.img=resources/pack_lang_fr.png # icons used for start-menu shortcuts resource.shortcut.homepage.icon=resources/homepage.ico resource.shortcut.startserver.icon=resources/start.ico resource.shortcut.stopserver.icon=resources/stop.ico resource.shortcut.uninstall.icon=resources/uninstall.ico # images used in the left-hand strip on each panel resource.lhs.infopanel.img=resources/border1.png resource.lhs.licencepanel.img=resources/border2.png resource.lhs.jreversionpanel.img=resources/border3.png resource.lhs.packspanel.img=resources/border3.png resource.lhs.licencefilepanel.img=resources/border4.png resource.lhs.optionspanel.img=resources/border4.png resource.lhs.dbtypepanel.img=resources/border4.png resource.lhs.progressdriverpanel.img=resources/border4.png resource.lhs.sqlauthpanel.img=resources/border4.png resource.lhs.createdbpanel.img=resources/border4.png resource.lhs.createuserpanel.img=resources/border4.png resource.lhs.dbinfopanel.img=resources/border4.png resource.lhs.targetpanel.img=resources/border5.png resource.lhs.processpanel.img=resources/border6.png resource.lhs.shortcutpanel.img=resources/border7.png resource.lhs.finishpanel.img=resources/border8.png
- ユーザーオプション # general options option.installpath= option.winservice=false option.serverport=80 # options to preselect packs option.pack.tutorial=false option.pack.usage=false option.pack.lang.ja=true option.pack.lang.es=true option.pack.lang.fr=true option.pack.lang.pt=true option.pack.lang.zh=true # database connection options option.db.createdb=true option.db.createuser=false option.db.dbtype=HSQLDB option.db.sqlauthtype= option.db.sqldomain= option.db.sqlinstance= option.db.progressdriver= option.db.hostname=localhost option.db.port= option.db.dbname= option.db.username= option.db.userpassword= option.db.dbausername= option.db.dbapassword= # change the default installation folder installer.installfolder=Yellowfin 6.1 # change the war file name installer.warfilename=yellowfin.war # change the application log file name installer.applogfilename=yellowfin.log "> ユーザーオプション # general options option.installpath= option.winservice=false option.serverport=80 # options to preselect packs option.pack.tutorial=false option.pack.usage=false option.pack.lang.ja=true option.pack.lang.es=true option.pack.lang.fr=true option.pack.lang.pt=true option.pack.lang.zh=true # database connection options option.db.createdb=true option.db.createuser=false option.db.dbtype=HSQLDB option.db.sqlauthtype= option.db.sqldomain= option.db.sqlinstance= option.db.progressdriver= option.db.hostname=localhost option.db.port= option.db.dbname= option.db.username= option.db.userpassword= option.db.dbausername= option.db.dbapassword= # change the default installation folder installer.installfolder=Yellowfin 6.1 # change the war file name installer.warfilename=yellowfin.war # change the application log file name installer.applogfilename=yellowfin.log
- インストーラーの動作
- インストーラーの動作{code:none}# don't show the create shortcuts panelaction.noshortcuts=true # don't do any database access - extract distribution files only# usually only useful with the silent installer# the database parameters still need to be set, as they will be inserted into configuration filesaction.nodbaccess=true # extract the yellowfin.war file only - do not create any other files on the file system# usually only useful with the silent installer# the database will still be set up according to the db parameters# if this is true, HSQLDB can not be used# if this is true, tutorial pack can not be installed# if this is true, start-menu shortcuts will not be installed# yellowfin.war will be written to the directory chosen as the installation directory (option.installpath)action.warfileonly=true # hide the packs panel# the preselected panels will be automatically installedaction.hidepacks=true # hide specific packs from the pack selection panel# the pack selection panel will still be shown# the packs can still be installed using option.pack.<id>=trueaction.hidepack.tutorial=falseaction.hidepack.usage=falseaction.hidepack.lang.ja=trueaction.hidepack.lang.es=trueaction.hidepack.lang.fr=trueaction.hidepack.lang.pt=trueaction.hidepack.lang.zh=true # hide the app server port option# the server port will be set based on the value of option.serverportaction.hideserverport=true # hide the windows service option# the service will be installed based on the value of option.winserviceaction.hidewinservice=true # hide the database connection options# the database connection parameters will be taken from option.db.*action.hidedboptions=true # hide the installation directory option# Yellowfin will be installed into the directory set in option.installpathaction.hideinstallpath=true # Whether to install Yellowfin-branded content# This is true by default - set this to false to stop Yellowfin-branded content from being installed.# Yellowfin-branded content includes the Yellowfin welcome Storyboard (part of the tutorial content) and the Yellowfin theme.action.yellowfincontent=true{code "> インストーラーの動作{code:none}# don't show the create shortcuts panelaction.noshortcuts=true # don't do any database access - extract distribution files only# usually only useful with the silent installer# the database parameters still need to be set, as they will be inserted into configuration filesaction.nodbaccess=true # extract the yellowfin.war file only - do not create any other files on the file system# usually only useful with the silent installer# the database will still be set up according to the db parameters# if this is true, HSQLDB can not be used# if this is true, tutorial pack can not be installed# if this is true, start-menu shortcuts will not be installed# yellowfin.war will be written to the directory chosen as the installation directory (option.installpath)action.warfileonly=true # hide the packs panel# the preselected panels will be automatically installedaction.hidepacks=true # hide specific packs from the pack selection panel# the pack selection panel will still be shown# the packs can still be installed using option.pack.<id>=trueaction.hidepack.tutorial=falseaction.hidepack.usage=falseaction.hidepack.lang.ja=trueaction.hidepack.lang.es=trueaction.hidepack.lang.fr=trueaction.hidepack.lang.pt=trueaction.hidepack.lang.zh=true # hide the app server port option# the server port will be set based on the value of option.serverportaction.hideserverport=true # hide the windows service option# the service will be installed based on the value of option.winserviceaction.hidewinservice=true # hide the database connection options# the database connection parameters will be taken from option.db.*action.hidedboptions=true # hide the installation directory option# Yellowfin will be installed into the directory set in option.installpathaction.hideinstallpath=true # Whether to install Yellowfin-branded content# This is true by default - set this to false to stop Yellowfin-branded content from being installed.# Yellowfin-branded content includes the Yellowfin welcome Storyboard (part of the tutorial content) and the Yellowfin theme.action.yellowfincontent=true{code
- インストール後の設定 これからのプロパティは、Yellowfinのインストール後の設定を変更します。 # load a custom index page to be used instead of index_mi.jsp # this file will be copied into the root directory of the webapp action.customindexpage=custom/index.html # copy files from the installer to the webapp # files could be referenced by the custom index page, or custom header/footer # orthis could be used to overwrite styles, or add other html files # action.files.n: this is the path of the resource in the installer jar file # action.files.n.apppath: the resource will be added to the war file with this path action.files.0=custom/photo.jpg action.files.0.apppath=images/photo.jpg action.files.1=custom/header.html action.files.1.apppath=header.html action.files.2=custom/footer.html action.files.2.apppath=footer.html # don't create the development directory or any files underneath it action.nodevelopment=true # change the default user authentication method action.authentication.userid=true # change the details of the default Administrator user # by default, the username is 'admin@yellowfin.com.au' and the password is 'test' action.adminuser.username=admin action.adminuser.password=password action.adminuser.email=admin@acme.org action.adminuser.firstname=Admin action.adminuser.lastname=Admin # set the type of header/footer # values can be standard, none, or custom action.config.headertype=none action.config.footertype=none # set the type of left navigation # values can be none, or custom action.config.leftnavtype=none # set custom header/footer/left navigation pages # this can be an external or local url. # no files are copied into the webapp - use action.files.n if you need to copy a page in action.config.customheaderurl=header.html action.config.customfooterurl=footer.html # set the "standard" header include # this overrides the default Yellowfin header action.config.standardheaderurl=std_header.html # set the "standard" footer include # this overrides the default Yellowfin footer action.config.standardfooterurl=std_footer.html # default dashboard width action.config.dashwidth=900 # default filter location on analytic dashboards (left/right) action.config.dashanalyticfilters=right # show the toolbar (true/false) action.config.showtoolbar=true # show logoff link on the toolbar (true/false) action.config.showtoolbarlogoff=true # search location (top/right/off) action.config.searchlocation=top # associated reports location (right/off) action.config.associatedreports=right # base tags (yes/no/comment) action.config.basetags=yes # smtp server settings action.config.smtpserver=localhost action.config.smtpport=1234 action.config.smtpauth=true action.config.smtpusername=username action.config.smtppassword=password action.config.smtpssl=true action.config.smtpstarttls=true # broadcast email address action.config.broadcastemail=noreply@example.org # broadcast display name action.config.broadcastname=Yellowfin Reports # support email address action.config.supportemail=support@example.org # default date format (DMY/MDY/YMD) action.config.dateformat=DMY # customised app name in some display strings action.config.appname=Yellowfin # customised export filename action.config.exportfilename=YellowfinExport.xml # change the default bind user in LDAP authentication settings action.config.ldapbinduser=username # change the default password in LDAP authentication settings action.config.ldappassword=password "> インストール後の設定 これからのプロパティは、Yellowfinのインストール後の設定を変更します。 # load a custom index page to be used instead of index_mi.jsp # this file will be copied into the root directory of the webapp action.customindexpage=custom/index.html # copy files from the installer to the webapp # files could be referenced by the custom index page, or custom header/footer # orthis could be used to overwrite styles, or add other html files # action.files.n: this is the path of the resource in the installer jar file # action.files.n.apppath: the resource will be added to the war file with this path action.files.0=custom/photo.jpg action.files.0.apppath=images/photo.jpg action.files.1=custom/header.html action.files.1.apppath=header.html action.files.2=custom/footer.html action.files.2.apppath=footer.html # don't create the development directory or any files underneath it action.nodevelopment=true # change the default user authentication method action.authentication.userid=true # change the details of the default Administrator user # by default, the username is 'admin@yellowfin.com.au' and the password is 'test' action.adminuser.username=admin action.adminuser.password=password action.adminuser.email=admin@acme.org action.adminuser.firstname=Admin action.adminuser.lastname=Admin # set the type of header/footer # values can be standard, none, or custom action.config.headertype=none action.config.footertype=none # set the type of left navigation # values can be none, or custom action.config.leftnavtype=none # set custom header/footer/left navigation pages # this can be an external or local url. # no files are copied into the webapp - use action.files.n if you need to copy a page in action.config.customheaderurl=header.html action.config.customfooterurl=footer.html # set the "standard" header include # this overrides the default Yellowfin header action.config.standardheaderurl=std_header.html # set the "standard" footer include # this overrides the default Yellowfin footer action.config.standardfooterurl=std_footer.html # default dashboard width action.config.dashwidth=900 # default filter location on analytic dashboards (left/right) action.config.dashanalyticfilters=right # show the toolbar (true/false) action.config.showtoolbar=true # show logoff link on the toolbar (true/false) action.config.showtoolbarlogoff=true # search location (top/right/off) action.config.searchlocation=top # associated reports location (right/off) action.config.associatedreports=right # base tags (yes/no/comment) action.config.basetags=yes # smtp server settings action.config.smtpserver=localhost action.config.smtpport=1234 action.config.smtpauth=true action.config.smtpusername=username action.config.smtppassword=password action.config.smtpssl=true action.config.smtpstarttls=true # broadcast email address action.config.broadcastemail=noreply@example.org # broadcast display name action.config.broadcastname=Yellowfin Reports # support email address action.config.supportemail=support@example.org # default date format (DMY/MDY/YMD) action.config.dateformat=DMY # customised app name in some display strings action.config.appname=Yellowfin # customised export filename action.config.exportfilename=YellowfinExport.xml # change the default bind user in LDAP authentication settings action.config.ldapbinduser=username # change the default password in LDAP authentication settings action.config.ldappassword=password
概要
Unknown macro: {styleclass}
This is a list of all properties that can be set via the custom properties file or as command-line arguments.
テキストのプロパティ
Unknown macro: {styleclass}
これらのプロパティは、インストーラーによって表示されるテキストラベルを変更します。
">
リソースの場所
Unknown macro: {styleclass}
これらのリソースは、インストーラーアーカイブに含めることができます。リソースの場所は、アーカイブのファイル構造に対して相対的に指定されます。
">
これらのリソースは、インストーラーアーカイブに含めることができます。リソースの場所は、アーカイブのファイル構造に対して相対的に指定されます。
Unknown macro: {styleclass}
これらのプロパティは、ユーザーオプションのデフォルト値を指定します。
">
インストーラーの動作
Unknown macro: {styleclass}
これらのプロパティは、インストーラーの動作を変更します。
">
">
Unknown macro: {horizontalrule}
Unknown macro: {styleclass}
これらのプロパティは、Yellowfinのインストール後の設定を変更します。<!-- /* Style Definitions */ table.MsoNormalTable
Unknown macro: {mso-style-name}
-->