opencrx Language Localization Guide
|
|
|
- Raymond McGee
- 10 years ago
- Views:
Transcription
1 opencrx Language Localization Guide Version opencrx Language Localization Guide: Version by The contents of this file are subject to a BSD license (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License here (
2 Table of Contents 1. About this Book...1 Who this book is for...1 What do you need to understand this book Prerequisites Language-specific files Create files to support a new locale...5 user interface configuration files...6 code table files...9 texts.properties files html help pages modify Login.jsp Configuring locales for opencrx with web.xml Fallback Mechanism Next Steps A. Appendix Bibliography List of Figures 4-1. ui-merge and ui-split Editing user interface configuration file with xmlspy (locales en_us, de_ch, and xx_yy) code-merge and code-split Editing code table file with xmlspy (locales en_us, de_ch, and xx_yy) List of Examples 3-1. language-specific files in opencrx-core-crx.war directory structure of the exploded/unzipped file opencrx-core-crx.war example output of ui-merge example ElementDefinition containing information for the locale en_us (default, always included) and gaps for the newly created locale xx_yy example output of ui-split example output of code-merge example CodeValueEntry containing information for the locale en_us (default, always included) and gaps for the newly created locale xx_yy example output of code-split extract from the file...\en_us\text.properties each line containing a name-value-pair extract from the file...\opencrx-core-crx.war\login.jsp web.xml containing locale configuration information web.xml containing locale configuration information for en_us, de_ch, and the new locale xx_yy ii
3 Chapter 1. About this Book This book describes which opencrx files are language-specific and how you can localize opencrx for a (new) language or a set of (new) languages. Who this book is for The intended audience are opencrx administrators. What do you need to understand this book This book describes how to get opencrx to work with different language files and how to create (new) language files for opencrx. You should be comfortable with editing XML files. 1
4 Chapter 2. Prerequisites This book assumes that you have downloaded an opencrx core distribution and set up opencrx for Ant as described in the opencrx README (including the installation of openmdx). Creating/changing language-specific files does not require a full installation of opencrx, although it is helpful to have access to a working installation in order to test your changes. You can create/edit language-specific files without installing an application server or a database. 2
5 Chapter 3. Language-specific files All the language-specific files of opencrx are contained in the file opencrx-core-crx.war, which is included in the file opencrx-core-crx-web.ear included in the opencrx distribution (please note that this file may already be exploded/unzipped in which case you will have a directory called opencrx-core-crx.war instead of a file). Language-specific files can be grouped as follows: user interface configuration (XML files containing language-specific labels and tool tips) note that the directory opencrx-core-crx.war/config/ui contains subdirectories of the form xx_yy for each implemented locale; these subdirectories contain the language-specific XML files the files for US English, for example, are located in the directory opencrx-core-crx.war/config/ui/en_us code tables (XML files containing the mapping of codes to the respective language-specific texts) note that the directory opencrx-core-crx.war/config/code contains subdirectories of the form xx_yy for each implemented locale; these subdirectories contain the language-specific XML files the files for US English, for example, are located in the directory opencrx-core-crx.war/config/code/en_us strings used by JSP note that the directory opencrx-core-crx.war/config/texts contains subdirectories of the form xx_yy for each implemented locale; these subdirectories contain language-specific text files named opencrx.text.properties and text.properties the file for US English, for example, is located in the directory opencrx-core-crx.war/config/texts/en_us html pages (e.g. help pages like helpsearch_xx_yy.html where xx_yy reflects the locale, e.g. en_us) login page Login.jsp the login page is a special case and if you want to offer your users a login page in a language that is not configured by default you will have to modify the file opencrx-core- CRX.war/Login.jsp. language configuration the XML file web.xml contains the language configuration of opencrx Note: opencrx locale IDs are based on a widely accepted standard where the locale ID xx_yy is composed of an alpha-2 language code xx (see and an alpha-2 country code YY (see 3
6 Chapter 3. Language-specific files The following directory listing gives an overview of the structure discussed above. Example 3-1. language-specific files in opencrx-core-crx.war opencrx-core-crx.war... helpjscookie_de_ch.html helpjscookie_en_us.html helpsearch_de_ch.html helpsearch_en_us.html... \--WEB-INF... web.xml config +--code +--de_ch accountcategory.xml... utcoffset.xml \--en_us accountcategory.xml... utcoffset.xml +--texts +--de_ch opencrx.texts.properties texts.properties \--en_us opencrx.texts.properties texts.properties \--ui +--de_ch abstractcontract.xml... wf.xml \--en_us abstractcontract.xml... wf.xml... In the Open Source distribution of opencrx the user interface configuration files for en_us contain the complete customization information in addition to the language-specific text strings. Modifying language-specific files requires an editor capable of handling files in UTF-8 format. The UTF-8 encoding of an XML file is indicated at the beginning of the file with <?xml version="1.0" encoding="utf-8"?>. More information about encoding of XML files is available at If you modify language-specific files with an editor that cannot handle UTF-8 encoded files properly you risk running into problems when starting opencrx with such modified files because the XML importer will not be able to correctly import them. 4
7 The following steps are required to create new language-specific files to support a new locale xx_yy: 1. expand/unzip the file opencrx-core-crx-web.ear (on the Windows platform you can use Winzip, 7zip ( etc.) 2. expand/unzip the file opencrx-core-crx.war to a temporary working directory get access to all the language-specific files (on the Windows platform you can use Winzip, 7zip ( etc.) 3. create user interface configuration files for the new locale xx_yy and translate the relevant text strings 4. create code table files for the new locale xx_yy and translate the relevant text strings 5. create texts.properties files for the new locale xx_yy and translate the relevant text strings 6. create html help pages for the new locale xx_yy and translate the pages 7. optional: modify Login.jsp for the new locale xx_yy 8. compress/zip the working directory and create a new file opencrx-core-crx.war (on the Windows platform you can use Winzip, 7zip ( etc.) 9. create a new file opencrx-core-crx-web.ear which can be deployed to the application server (on the Windows platform you can use Winzip, 7zip ( etc.) Subsequently, we will look at each of the steps required to create language-specific files in more detail. We do not recommend to edit the language-specific files of your opencrx installation as you risk messing up your installation if anything goes wrong. We rather recommend to copy the file opencrx-core-crx.war to a working/temporary directory and then explode/unzip it to get easy access to all the language-specific files. For this guide it is assumed that an opencrx core distribution was set up for Ant in the directory C:\opencrx (as described in the README of opencrx, including the installation of openmdx) and that the file opencrx-core-crx.war was exploded/unzipped to the directory C:\temp\opencrx-core-CRX.war yielding the following directory structure: Example 4-1. directory structure of the exploded/unzipped file opencrx-core-crx.war C:\temp\opencrx-core-CRX.war... \--WEB-INF +--config +--code +--de_ch \--en_us \ texts +--de_ch \--en_us \--... \--ui +--de_ch \--en_us \
8 user interface configuration files For advanced opencrx administrators there is a fast procedure to create user interface configuration files for a new locale xx_yy: copy an existing locale directory (e.g. de_ch) with all its files and rename the copied directory to xx_yy translate all the label and tooltip strings in the user interface configuration files This "manual" management of localized files, however, makes it rather difficult to maintain consistency across multiple locales if the user interface customization changes. The tools ui-merge and ui-split exist to help you manage and maintain a large number of locales. With ui-merge you can pull together information from several locales and create XML files that are easy to edit, with ui-split you can push the relevant information back into the respective locale files. Figure 4-1. ui-merge and ui-split The automated approach with ui-merge and ui-split offers the following advantages: locales can be managed individually in their respective subdirectories (e.g. the files for locale de_ch are located in a directory named de_ch) it is easy to add/remove locales and you can manage a very large number of locales in a convenient way configuring locales for opencrx is a matter of manually editing 1 file only: web.xml migrating to new versions of opencrx does not destroy/damage existing locales the use of ui-merge and ui-split ensures that all locale files conform to a standard structure (i.e. are schemavalidated) Furthermore, ui-merge and ui-split support locale-migration as follows: if a new version of opencrx contains new elements it is easy to spot the "gaps" in a merged user interface configuration file removed elements (which may still be present in some of your personalized locale files) are protocolled by uimerge all operations by ui-merge and ui-split create schema-validated files and ensure consistency 6
9 Hence, we strongly encourage you to use the provided tools ui-merge and ui-split and do not recommend to edit individual files manually unless you know exactly what you are doing. So, let's get started. In a first step, you run ui-merge to create merged user interface configuration files containing place holders for your new locale xx_yy (and optionally other locales in addition to the default locale en_us to have more "examples" available for the translation process). Then you edit the merged user interface configuration files to add the translated strings for the new locale xx_yy. Once you are done with the translations you run ui-split to extract the relevant files for each locale from the merged user interface configuration files. The following steps will guide you through the process of creating the user interface configuration files for the new locale xx_yy: Open a new command shell and set the current directory to C:\temp\opencrx-core-CRX.war\config\ui Enter the command ant -f C:\opencrx\core\build.xml ui-merge -Darg.sourceDir=%CD% - Darg.targetDir=%CD% -Darg.locale=xx_YY and execute it to create merged user interface configuration files containing place holders for your new locale xx_yy (don't forget to adapt the path to the file utilities.xml in the command line above to reflect your local installation directory! In a Linux/Unix environment you have to replace %CD% with $PWD to indicate the current directory) ui-merge does not overwrite existing files in the target directory. In case of a conflict the existing file is rename by prepending the string.# to the name of the file. To start with a clean slate it is a good idea to delete all the files in the directory C:\temp\opencrx-core-CRX.war\config\ui before executing ui-merge (but do not delete the subdirectories or the files in the subdirectories!). Example 4-2. example output of ui-merge C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui>ant -f C:\opencrx\core\build.xml ui-merge - Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale=xx_YY Buildfile: C:\opencrx\core\build.xml ui-merge: [java] sourcedir= C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\abstractcontract.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\abstractcontract.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\account.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\account.xml... [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\wf.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\wf.xml [java] shutdown BUILD SUCCESSFUL Total time: 6 seconds ui-merge creates merged user interface configuration files in the directory C:\temp\opencrx-core- CRX.war\config\ui. These merged files contain all the ElementDefinitions with labels and/or tooltips: Example 4-3. example ElementDefinition containing information for the locale en_us (default, always included) and gaps for the newly created locale xx_yy... <ElementDefinition name="org:opencrx:kernel:contract1:segment"> <Text type="label"> <en_us>pipeline</en_us> <xx_yy></xx_yy> </Text> <Text type="tooltip"> <en_us>all Pipeline Objects</en_US> <xx_yy></xx_yy> </Text> </ElementDefinition>... 7
10 You can now use any editor suitable to edit UTF-8 encoded files to add the translations for the locale xx_yy. You simply insert the translated string between the opening tag <xx_yy> and the closing tag </xx_yy>. If you have access to an xml editor that features a grid view (e.g. XMLfox ( or xmlspy) it is almost like filling in a spreadsheet. Figure 4-2. Editing user interface configuration file with xmlspy (locales en_us, de_ch, and xx_yy) Even though xmlspy is also available in a free edition (xmlspy Home Edition ( which allows you to activate the grid view feature for 1 day, you may want to have a look at some of the following alternatives if you do not want to use a simple text editor supporting UTF-8 encoding: Amaya ( (multi-platform, no grid view feature) XMLmind XML editor ( (multi-platform, no grid view feature) XMLfox ( (Windows only, with grid view feature) Cooktop ( (Windows only, no grid view feature) Modifying language-specific files requires an editor capable of handling files in UTF-8 format. The UTF-8 encoding of an XML file is indicated at the beginning of the file with <?xml version="1.0" encoding="utf-8"?>. More information about encoding of XML files is available at If you modify the user interface configuration files with an editor that cannot handle UTF-8 encoded files properly you risk running into problems when starting opencrx with such modified files because the XML importer will not be able to correctly import them. As you will realize, there are quite a lot of strings to translate. However, you might get away with translating a subset of the existing labels/tooltips by making use of the Fallback Mechanism built into opencrx in the case where no label/tooltip exists for a particular locale. The fallback mechanism is explained in detail in Fallback Mechanism. It might be helpful to have additional locales available in the merged user interface configuration files to make the translation process easier (e.g. if you want to create a French translation it might be helpful to have the English and the German versions available in the same file). ui-merge supports merging of multiple locales into a single file. When calling ui-merge you can use the parameter -Darg.locale to provide a list of all the locales (put 8
11 the list in quotes "..." and separate individual locales with slashes, e.g. "aa_bb/cc_dd/ee_ff") that you want to merge (note that there is no need to specify the locale en_us as this default locale is always included). For example, to merge the locales en_us, de_ch, and xx_yy you would use the following command line: ant -f C:\opencrx\core\build.xml ui-merge -Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale="de_CH/xx_YY" When calling ui-merge you can use the parameter -Darg.format=schema to produce merged files containing all the formatting information as well (there is no need to specify the default -Darg.format=table). Once you are done with the translations you need to extract the relevant files for each locale from the merged user interface configuration files. This is done with ui-split. Open a new command shell and set the current directory to C:\temp\opencrx-core-CRX.war\config\ui Enter the command ant -f C:\opencrx\core\build.xml ui-split -Darg.sourceDir=%CD% - Darg.targetDir=%CD% -Darg.locale=xx_YY and execute it to create individual user interface configuration files for each specified locale (don't forget to adapt the path to the file utilities.xml in the command line above to reflect your local installation directory! In a Linux/Unix environment you have to replace %CD% with $PWD to indicate the current directory) Example 4-4. example output of ui-split C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui>ant -f C:\opencrx\core\build.xml ui-split - Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale=xx_YY Buildfile: C:\opencrx\core\build.xml ui-split: [java] sourcedir= C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\abstractcontract.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\abstractcontract.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB- INF\config\ui\xx_YY\abstractcontract.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\account.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\account.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\xx_YY\account.xml... [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\en_US\wf.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\wf.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\ui\xx_YY\wf.xml [java] shutdown BUILD SUCCESSFUL Total time: 7 seconds ui-split creates all the required directories and files for the new locale xx_yy. In particular, the directory C:\temp\opencrx-core-CRX.war\config\ui should now contain a subdirectory xx_yy with all the user interface configuration files specific to locale xx_yy. ui-split does not overwrite existing files in the target directories. In case of a conflict the existing file is rename by prepending the string.# to the name of the file. To start with a clean slate it is a good idea to delete all the files in those subdirectories of C:\temp\opencrx-core-CRX.war\config\ui related to the locale(s) you've been modifying before executing ui-merge (but do not delete the files in the directory C:\temp\opencrx-core- CRX.war\config\ui and do not delete the files in the base directory C:\temp\opencrx-core- CRX.war\config\ui\en_US). 9
12 code table files For advanced opencrx administrators there is a fast procedure to create code table files for a new locale xx_yy: add a new entry to the file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\locale.xml reflecting the new locale xx_yy copy an existing locale directory (e.g. de_ch) with all its files and rename the copied directory to xx_yy translate all texts in the code table files You must ensure that the index number in locale.xml matches the index number in web.xml for this newly added locale (e.g. if xx_yy is assinged to index number m in locale.xml then xx_yy must be assigned to the index number m in web.xml). See also Configuring locales for opencrx with web.xml This "manual" management of localized files, however, makes it rather difficult to maintain consistency across multiple locales if code tables are modified/extended. The tools code-merge and code-split exist to help you manage and maintain a large number of locales. With code-merge you can pull together information from several locales and create XML files that are easy to edit, with code-split you can push the relevant information back into the respective locale files. Figure 4-3. code-merge and code-split The automated approach with code-merge and code-split offers the following advantages: locales can be managed individually in their respective subdirectories (e.g. the files for locale de_ch are located in a directory named de_ch) it is easy to add/remove locales and you can manage a very large number of locales in a convenient way configuring locales for opencrx is a matter of manually editing 1 file only: web.xml migrating to new versions of opencrx does not destroy/damage existing locales the use of code-merge and code-split ensures that all locale files conform to a standard structure (i.e. are schemavalidated) 10
13 Furthermore, code-merge and code-split support locale-migration as follows: if a new version of opencrx contains new codes it is easy to spot the "gaps" in a merged code table file removed codes (which may still be present in some of your personalized locale files) are protocolled by codemerge all operations by code-merge and code-split create schema-validated files and ensure consistency Hence, we strongly encourage you to use the provided tools code-merge and code-split and do not recommend to edit individual files manually unless you know exactly what you are doing. In a first step, you run code-merge to create merged code table files containing place holders for your new locale xx_yy (and optionally other locales in addition to the default locale en_us to have more "examples" available for the translation process). Then you edit the merged code table files to add the translated strings for the new locale xx_yy. Once you are done with the translations you run code-split to extract the relevant files for each locale from the merged code table files. The following steps will guide you through the process of creating the code table files for the new locale xx_yy: add a new entry to the file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\locale.xml reflecting the new locale xx_yy Open a new command shell and set the current directory to C:\temp\opencrx-core-CRX.war\config\code Enter the command ant -f C:\opencrx\core\build.xml code-merge -Darg.sourceDir=%CD% - Darg.targetDir=%CD% -Darg.locale=xx_YY and execute it to create merged code table files containing place holders for your new locale xx_yy (don't forget to adapt the path to the file utilities.xml in the command line above to reflect your local installation directory! In a Linux/Unix environment you have to replace %CD% with $PWD to indicate the current directory) code-merge does not overwrite existing files in the target directory. In case of a conflict the existing file is rename by prepending the string.# to the name of the file. To start with a clean slate it is a good idea to delete all the files in the directory C:\temp\opencrx-core-CRX.war\config\code before executing code-merge (but do not delete the subdirectories or the files in the subdirectories!). Example 4-5. example output of code-merge C:\temp\opencrx-core-CRX.war\WEB-INF\config\code>ant -f C:\opencrx\core\build.xml code-merge - Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale=xx_YY Buildfile: C:\opencrx\core\build.xml code-merge: [java] sourcedir=c:\temp\opencrx-core-crx.war\web-inf\config\code [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\accountcategory.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\accountcategory.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\accountstate.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\accountstate.xml... [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\utcoffset.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\utcoffset.xml [java] shutdown BUILD SUCCESSFUL Total time: 7 seconds 11
14 code-merge creates merged code table files in the directory C:\temp\opencrx-core-CRX.war\config\code. These merged files contain all the CodeValueContainers with CodeValueEntries: Example 4-6. example CodeValueEntry containing information for the locale en_us (default, always included) and gaps for the newly created locale xx_yy... <CodeValueContainer name="accountcategory"> <CodeValueEntry code="0"> <en_us_short> NA</en_US_short> <en_us_long> N/A</en_US_long> <xx_yy_short></xx_yy_short> <xx_yy_long></xx_yy_long> </CodeValueEntry>... You can now use any editor suitable to edit UTF-8 encoded files to add the translations for the locale xx_yy. You simply insert the translated string between the opening tag <xx_yy> and the closing tag </xx_yy>. If you have access to an xml editor that features a grid view (e.g. XMLfox ( or xmlspy) it is almost like filling in a spreadsheet. Figure 4-4. Editing code table file with xmlspy (locales en_us, de_ch, and xx_yy) Modifying language-specific files requires an editor capable of handling files in UTF-8 format. The UTF-8 encoding of an XML file is indicated at the beginning of the file with <?xml version="1.0" encoding="utf-8"?>. More information about encoding of XML files is available at If you modify the code table files with an editor that cannot handle UTF-8 encoded files properly you risk running into problems when starting opencrx with such modified files because the XML importer will not be able to correctly import them. As you will realize, there are quite a lot of strings to translate. However, you might get away with translating a subset of the existing code values by making use of the Fallback Mechanism built into opencrx in the case where no code value string exists for a particular locale. The fallback mechanism is explained in detail in Fallback Mechanism. 12
15 It might be helpful to have additional locales available in the merged code table files to make the translation process easier (e.g. if you want to create a French translation it might be helpful to have the English and the German versions available in the same file). code-merge supports merging of multiple locales into a single file. When calling code-merge you can use the parameter -Darg.locale to provide a list of all the locales (put the list in quotes "..." and separate individual locales with slashes, e.g. "aa_bb/cc_dd/ee_ff") that you want to merge (note that there is no need to specify the locale en_us as this default locale is always included). For example, to merge the locales en_us, de_ch, and xx_yy you would use the following command line: ant -f C:\opencrx\core\build.xml code-merge -Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale="de_CH/xx_YY" When calling code-merge you can use the parameter -Darg.format=schema to produce merged files containing all the formatting information as well (there is no need to specify the default -Darg.format=table). Once you are done with the translations you need to extract the relevant files for each locale from the merged code table files. This is done with code-split. Open a new command shell and set the current directory to C:\temp\opencrx-core-CRX.war\config\code Enter the command ant -f C:\opencrx\core\build.xml code-split -Darg.sourceDir=%CD% - Darg.targetDir=%CD% -Darg.locale=xx_YY and execute it to create individual code table files for each specified locale (don't forget to adapt the path to the file utilities.xml in the command line above to reflect your local installation directory! In a Linux/Unix environment you have to replace %CD% with $PWD to indicate the current directory) Example 4-7. example output of code-split C:\temp\opencrx-core-CRX.war\WEB-INF\config\code>ant -f C:\opencrx\core\build.xml code-split - Darg.sourceDir=%CD% -Darg.targetDir=%CD% -Darg.locale=xx_YY Buildfile: C:\opencrx\core\build.xml code-split: [java] sourcedir=c:\temp\opencrx-core-crx.war\web-inf\config\code [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\accountcategory.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\accountcategory.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\xx_YY\accountcategory.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\en_US\accountstate.xml [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\accountstate.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\xx_YY\accountstate.xml... [java] loading C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\utcoffset.xml [java] writing file C:\temp\opencrx-core-CRX.war\WEB-INF\config\code\xx_YY\utcoffset.xml [java] shutdown BUILD SUCCESSFUL Total time: 7 seconds code-split creates all the required directories and files for the new locale xx_yy. In particular, the directory C:\temp\opencrx-core-CRX.war\config\code should now contain a subdirectory xx_yy with all the code table files specific to locale xx_yy. code-split does not overwrite existing files in the target directories. In case of a conflict the existing file is rename by prepending the string.# to the name of the file. To start with a clean slate it is a good idea to delete all the files in those subdirectories of C:\temp\opencrx-core-CRX.war\config\code related to the locale(s) you've been modifying before executing code-merge (but do not delete the files in the directory C:\temp\opencrx-core- CRX.war\config\code and do not delete the files in the base directory C:\temp\opencrx-core- CRX.war\config\code\en_US). 13
16 texts.properties files The files opencrx.text.properties and text.properties contain several strings used by JSP. These files must exist for each locale configured in opencrx. The following steps will guide you through the process of creating the files opencrx.text.properties and text.properties for the new locale xx_yy: Create the new directory C:\temp\opencrx-core-CRX.war\config\texts\xx_YY Decide which locale you want to use as a template (starting point) for your new locale xx_yy. In this example we will use en_us as a template. Hence, copy the files opencrx.text.properties and text.properties from the directory C:\temp\opencrx-core-CRX.war\config\texts\en_US to the newly created directory C:\temp\opencrx-core-CRX.war\config\texts\xx_yy Open the file text.properties in the directory C:\temp\opencrx-core-CRX.war\config\texts\xx_YY with a text editor. Each line of the file contains a name-value-pair of the form name=value. Replace the existing values with your translations and then save the file text.properties with all the changes. Open the file opencrx.text.properties in the directory C:\temp\opencrx-core-CRX.war\config\texts\xx_YY with a text editor. Each line of the file contains a name-value-pair of the form name=value. Replace the existing values with your translations and then save the file opencrx.text.properties with all the changes. Use ISO character encoding for the files opencrx.text.properties and text.properties (the reason being that opencrx relies on the class java.util.properties of the Java 2 platform). For characters that cannot be directly represented in this encoding, Unicode escapes are used; however, only a single 'u' character is allowed in an escape sequence. The JDK native2ascii tool can be used to convert property files to and from other character encodings (e.g. to convert a file texts.properties.uni to text.properties (ISO encoded) you could run native2ascii -encoding utf-8 texts.properties.uni texts.properties) Example 4-8. extract from the file...\en_us\text.properties each line containing a name-value-pair Locale=en_US dir=ltr LocaleTitle=English (United States) CancelTitle=Cancel OkTitle=OK SaveTitle=Save SortAscendingText=Click to sort ascending SortDescendingText=Click to sort descending DisableSortText=Click to disable sorting DeleteTitle=Delete EditTitle=Edit... If you don't feel like translating all the values, you can just leave the template values unchanged. However, it is important that the files opencrx.text.properties and text.properties exist for all configured locales and the files must contain all name-value-pairs. 14
17 html help pages opencrx html help pages are located in the directory C:\temp\opencrx-core-CRX.war. The following steps will guide you through the process of creating the html pages for the new locale xx_yy: Decide which locale you want to use as a template (starting point) for your new locale xx_yy. In this example we will use en_us as a template. Hence, make a copy the file helpsearch_en_us.html and name it helpsearch_xx_yy.html Open the file helpsearch_xx_yy.html with an html editor (a simple text editor will also work if you are familiar with html). Once you are done with translating the whole page you save the file helpsearch_xx_yy.html with all the changes. Repeat the above steps for the rest of the opencrx html help pages located in the directory C:\temp\opencrxcore-CRX.war. If you don't feel like translating the help pages (or not all of them) you must still create the html pages for the new locale xx_yy as described above because there is no fallback mechanism for html pages missing pages will cause an error 404 (page not found) if a user requests such a page. 15
18 modify Login.jsp The opencrx login page Login.jsp is located in the directory C:\temp\opencrx-core-CRX.war. The login page is a special case because prior to authentication the user does not have access to the opencrx application (and hence the opencrx localization features are not available). However, you only need to modify the login page if you want to offer your users a login page in a locale not already configured. You can add a new locale xx_yy by extending the code at the appropriate positions (e.g. by searching for "en_us" or "de_ch" which are both locales built into Login.jsp). The language specific part of Login.jsp starts with the following lines: Example 4-9. extract from the file...\opencrx-core-crx.war\login.jsp // test whether requested locale is supported if((locale == null) (!locale.equals("en_us") &&!locale.equals("de_ch") &&!locale.equals("es_mx") && Extend all the hash maps following the above code sequence so that the updated login page can fully support the new locale xx_yy. If a login page supports locale xx_yy you can request the login page in that locale xx_yy by appending the string "?locale=xx_yy" to the default login URL._Example: the URL directly loads the German login page. 16
19 Chapter 5. Configuring locales for opencrx with web.xml Configuring locales for opencrx is done by modifying the file web.xml in the directory C:\temp\opencrx-core- CRX.war\WEB-INF. If you open the file web.xml you will find the following section: Example 5-1. web.xml containing locale configuration information <!-- locales --> <init-param> <param-name>locale[0]</param-name> <param-value>en_us</param-value> </init-param> <init-param> <param-name>locale[1]</param-name> <param-value>de_ch</param-value> </init-param> To configure an additional locale for opencrx you need to add a new locale-block. For example, to add the locale xx_yy you modify web.xml as follows: Example 5-2. web.xml containing locale configuration information for en_us, de_ch, and the new locale xx_yy <!-- locales --> <init-param> <param-name>locale[0]</param-name> <param-value>en_us</param-value> </init-param> <init-param> <param-name>locale[1]</param-name> <param-value>de_ch</param-value> </init-param> <init-param> <param-name>locale[2]</param-name> <param-value>xx_yy</param-value> </init-param> Please note that the index number must be unique (i.e. you can only assign locale xx_yy to index number "2" with locale[2] if no other locale is assigned to index number "2"). Furthermore, index number "0" is reserved for the default locale (by default, locale en_us is assigned to index number "0"). You must ensure that the index number in web.xml matches the index number in locale.xml for this newly added locale (e.g. if xx_yy is assinged to index number m in locale.xml then xx_yy must be assigned the index number m in web.xml). See also code table files. When configuring locales for opencrx it is important that you are aware of the Fallback Mechanism. Taking into account what happens when there is no localized directory/file/string/entry/etc. available for a configured locale helps you to control what the user of opencrx is going to see in place of a nicely translated text. 17
20 Chapter 5. Configuring locales for opencrx with web.xml Fallback Mechanism The following rules apply for missing localization information (it is assumed that the locale is xx_yy): user interface configuration if no entry is found for the respective label/tooltip, then the existing entry of the locale xx_zz (i.e. same language as xx_yy) with the highest index number (see Configuring locales for opencrx with web.xml) is taken. if no entry is found with the same language xx, then the entry of the default locale (i.e. the locale with index number "0", usually en_us) is taken. code tables if no entry is found for the respective code, then the existing entry of the locale xx_zz (i.e. same language as xx_yy) with the highest index number (see Configuring locales for opencrx with web.xml) is taken. if no entry is found with the same language xx, then the entry of the default locale (i.e. the locale with index number "0", usually en_us) is taken. opencrx.texts.properties and texts.properties if no entry is found for the respective name, then the existing entry of the locale xx_zz (i.e. same language as xx_yy) with the highest index number (see Configuring locales for opencrx with web.xml) is taken. if no entry is found with the same language xx, then the entry of the default locale (i.e. the locale with index number "0", usually en_us) is taken. html help pages there is no fallback mechanism if a page is missing for a requested locale the user will get an error 404 (page not found) login.jsp there is no fallback mechanism login.jsp is a special case anyway (see modify Login.jsp) The following description explains the implemented locale fallback mechanism of opencrx in a somewhat more formal way (only applies to user interface configuration, code tables, and text.properties). Please note that the locale fallback is based on language xx and not on a fully qualified locale string xx_yy: Iterate all locales configured in web.xml starting with index number 0, i.e. locale[0], locale[1], Try to load resources from locale i, i.e. config/code/<locale i>, config/ui/<locale i>, config/texts/<locale i> If no resources are found at locale i fallback to resources of locale j, where j = max(j), J = {0} + {j, locale[i].lang == locale[j].lang} Example: If e.g. the locales en_us (locale[0]), de_ch (locale[1]) and de_de (locale[2]) are configured and no resources are available for de_de then de_de falls back to de_ch. 18
21 Chapter 6. Next Steps 19
22 Appendix A. Appendix 20
23 Bibliography [01] opencrx - the leading open source CRM solution, ( [02] openmdx - The leading open source MDA platform, ( 21
Sterling Web. Localization Guide. Release 9.0. March 2010
Sterling Web Localization Guide Release 9.0 March 2010 Copyright 2010 Sterling Commerce, Inc. All rights reserved. Additional copyright information is located on the Sterling Web Documentation Library:
SSO Plugin. J System Solutions. Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier. http://www.javasystemsolutions.com
SSO Plugin Upgrading SSO Plugin 3x to 4x - BMC AR System & Mid Tier J System Solutions JSS SSO Plugin Upgrading 3x to 4x Introduction... 3 [Prerequisite] Generate a new license... 4 [Prerequisite] Download
Hypercosm. Studio. www.hypercosm.com
Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks
WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL
TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM
IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.
Magento Search Extension TECHNICAL DOCUMENTATION
CHAPTER 1... 3 1. INSTALLING PREREQUISITES AND THE MODULE (APACHE SOLR)... 3 1.1 Installation of the search server... 3 1.2 Configure the search server for usage with the search module... 7 Deploy the
1. To start Installation: To install the reporting tool, copy the entire contents of the zip file to a directory of your choice. Run the exe.
CourseWebs Reporting Tool Desktop Application Instructions The CourseWebs Reporting tool is a desktop application that lets a system administrator modify existing reports and create new ones. Changes to
Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications
Configuration Guide Configuring BEA WebLogic Server for Web Authentication with SAS 9.2 Web Applications This document describes how to configure Web authentication with BEA WebLogic for the SAS Web applications.
AutoMerge for MS CRM 3
AutoMerge for MS CRM 3 Version 1.0.0 Users Guide (How to use AutoMerge for MS CRM 3) Users Guide AutoMerge.doc Table of Contents 1 USERS GUIDE 3 1.1 Introduction 3 1.2 IMPORTANT INFORMATION 3 2 XML CONFIGURATION
Translating QueueMetrics into a new language
Translating QueueMetrics into a new language Translator s manual AUTORE: LOWAY RESEARCH VERSIONE: 1.3 DATA: NOV 11, 2006 STATO: Loway Research di Lorenzo Emilitri Via Fermi 5 21100 Varese Tel 0332 320550
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM
IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information
CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1
CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 WITHOUT TEMPLATE LOCALIZATION, WITHOUT WEBDAV AND IN ONE WAR FILE Simona Bracco Table of Contents Introduction...3 Extract theme dynamic and static resources...3
Installing & Customizing the OHMS Viewer Eric Weig
Installing & Customizing the OHMS Viewer Eric Weig This is a brief tutorial on installing and customizing the OHMS viewer software. Please note that this tutorial is intended for technical folks at the
EMC Documentum Composer
EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights
Setting Up a CLucene and PostgreSQL Federation
Federated Desktop and File Server Search with libferris Ben Martin Abstract How to federate CLucene personal document indexes with PostgreSQL/TSearch2. The libferris project has two major goals: mounting
Important Release Information and Technical and Deployment Support Notes
PrinterOn On-Premise Server Release Technical Support Notes Important Release Information and Technical and Deployment Support Notes During the course of product development and support, configurations
DocumentsCorePack for MS CRM 2011 Implementation Guide
DocumentsCorePack for MS CRM 2011 Implementation Guide Version 5.0 Implementation Guide (How to install/uninstall) The content of this document is subject to change without notice. Microsoft and Microsoft
alternative solutions, including: STRONG SECURITY for managing these security concerns. PLATFORM CHOICE LOW TOTAL COST OF OWNERSHIP
9.0 Welcome to FirstClass 9.0, the latest and most powerful version of the one of the industry s leading solutions for communication, collaboration, content management, and online networking. This document
Results CRM 2012 User Manual
Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation
XMLVend Protocol Message Validation Suite
XMLVend Protocol Message Validation Suite 25-01-2012 Table of Contents 1. Overview 2 2. Installation and Operational Requirements 2 3. Preparing the system 3 4. Intercepting Messages 4 5. Generating Reports
Force.com Migration Tool Guide
Force.com Migration Tool Guide Version 35.0, Winter 16 @salesforcedocs Last updated: October 29, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark
Migrating to vcloud Automation Center 6.1
Migrating to vcloud Automation Center 6.1 vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a
Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication
Using CertAgent to Obtain Domain Controller and Smart Card Logon Certificates for Active Directory Authentication Contents Domain Controller Certificates... 1 Enrollment for a Domain Controller Certificate...
ArpViewer Manual Version 1.0.6 Datum 30.9.2007
SWITCHaai ArpViewer Manual Version 1.0.6 Datum 30.9.2007 AAI C.Witzig Content 1. Introduction...3 2. Functional Description...3 3. Description of the Components...3 3.1. Arpfilter...3 3.2. Controller...4
Xerox Standard Accounting Import/Export User Information Customer Tip
Xerox Standard Accounting Import/Export User Information Customer Tip July 23, 2012 Overview Xerox Standard Accounting (XSA) software is a standard feature that resides locally on the device. It provides
How To Install Storegrid Server On Linux On A Microsoft Ubuntu 7.5 (Amd64) Or Ubuntu (Amd86) (Amd77) (Orchestra) (For Ubuntu) (Permanent) (Powerpoint
StoreGrid Linux Server Installation Guide Before installing StoreGrid as Backup Server (or) Replication Server in your machine, you should install MySQL Server in your machine (or) in any other dedicated
USING MAGENTO TRANSLATION TOOLS
Magento Translation Tools 1 USING MAGENTO TRANSLATION TOOLS Magento translation tools make the implementation of multi-language Magento stores significantly easier. They allow you to fetch all translatable
Table Of Contents. iii
PASSOLO Handbook Table Of Contents General... 1 Content Overview... 1 Typographic Conventions... 2 First Steps... 3 First steps... 3 The Welcome dialog... 3 User login... 4 PASSOLO Projects... 5 Overview...
Pulse Secure Client. Customization Developer Guide. Product Release 5.1. Document Revision 1.0. Published: 2015-02-10
Pulse Secure Client Customization Developer Guide Product Release 5.1 Document Revision 1.0 Published: 2015-02-10 Pulse Secure, LLC 2700 Zanker Road, Suite 200 San Jose, CA 95134 http://www.pulsesecure.net
BIRT Application and BIRT Report Deployment Functional Specification
Functional Specification Version 1: October 6, 2005 Abstract This document describes how the user will deploy a BIRT Application and BIRT reports to the Application Server. Document Revisions Version Date
IP Phone Service Administration and Subscription
CHAPTER 6 IP Phone Service Administration and Subscription Cisco CallManager administrators maintain the list of services to which users can subscribe. These sections provide details about administering
EMC Documentum Connector for Microsoft SharePoint
EMC Documentum Connector for Microsoft SharePoint Version 7.1 Installation Guide EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright 2013-2014
Workflow Templates Library
Workflow s Library Table of Contents Intro... 2 Active Directory... 3 Application... 5 Cisco... 7 Database... 8 Excel Automation... 9 Files and Folders... 10 FTP Tasks... 13 Incident Management... 14 Security
Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft
5.6 Copyright 2014 Jaspersoft Corporation. All rights reserved. Printed in the U.S.A. Jaspersoft, the Jaspersoft logo, Jaspersoft ireport Designer, JasperReports Library, JasperReports Server, Jaspersoft
JasperServer Localization Guide Version 3.5
Version 3.5 2008 JasperSoft Corporation. All rights reserved. Printed in the U.S.A. JasperSoft, the JasperSoft logo, JasperAnalysis, JasperServer, JasperETL, JasperReports, JasperStudio, ireport, and Jasper4
IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules
IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This
An Introduction To The Web File Manager
An Introduction To The Web File Manager When clients need to use a Web browser to access your FTP site, use the Web File Manager to provide a more reliable, consistent, and inviting interface. Popular
Integrating VoltDB with Hadoop
The NewSQL database you ll never outgrow Integrating with Hadoop Hadoop is an open source framework for managing and manipulating massive volumes of data. is an database for handling high velocity data.
Web Development using PHP (WD_PHP) Duration 1.5 months
Duration 1.5 months Our program is a practical knowledge oriented program aimed at learning the techniques of web development using PHP, HTML, CSS & JavaScript. It has some unique features which are as
PowerTier Web Development Tools 4
4 PowerTier Web Development Tools 4 This chapter describes the process of developing J2EE applications with Web components, and introduces the PowerTier tools you use at each stage of the development process.
IBM WebSphere Application Server Version 7.0
IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the
Data Tool Platform SQL Development Tools
Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6
How to utilize Administration and Monitoring Console (AMC) in your TDI solution
How to utilize Administration and Monitoring Console (AMC) in your TDI solution An overview of the basic functions of Tivoli Directory Integrator's Administration and Monitoring Console and how it can
Managing User Accounts and User Groups
Managing User Accounts and User Groups Contents Managing User Accounts and User Groups...2 About User Accounts and User Groups... 2 Managing User Groups...3 Adding User Groups... 3 Managing Group Membership...
Deploying the BIG-IP System v10 with Oracle Application Server 10g R2
DEPLOYMENT GUIDE Deploying the BIG-IP System v10 with Oracle Application Server 10g R2 Version 1.1 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Oracle s Application Server 10g
Filter NEW IN FIRSTCLASS CLIENT WHAT S NEW IN FIRSTCLASS 9.0. New Look. Login screen. List View Sort Order. Filtering Containers.
NEW IN FIRSTCLASS CLIENT New Look Login screen The login screen has a new look that flows with our current interface. List View Sort Order The sort order you choose in list view will be used in other views
Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013
Using Actian PSQL as a Data Store with VMware vfabric SQLFire Actian PSQL White Paper May 2013 Contents Introduction... 3 Prerequisites and Assumptions... 4 Disclaimer... 5 Demonstration Steps... 5 1.
Automation Services 9.5 Workflow Reference
Automation Services 9.5 Workflow Reference CONTENTS Contents Introduction...3 Where we're coming from...3 Conventions in this book...3 Understanding workflows...5 Workflows...6 Execute QPP Script...6 Export
Nesstar Server Nesstar WebView Version 3.5
Unlocking data creating knowledge Version 3.5 Release Notes November 2006 Introduction These release notes contain general information about the latest version of the Nesstar products and the new features
Jet Data Manager 2012 User Guide
Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform
FILE TRANSFER PROTOCOL (FTP) SITE
FILE TRANSFER PROTOCOL (FTP) SITE Section 1 - SPIN System Overview As part of the digital plan submission process that Registries is currently implementing a File Transfer Protocol (FTP) site has been
24x7 Scheduler Multi-platform Edition 5.2
24x7 Scheduler Multi-platform Edition 5.2 Installing and Using 24x7 Web-Based Management Console with Apache Tomcat web server Copyright SoftTree Technologies, Inc. 2004-2014 All rights reserved Table
Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.
Avaya Solution & Interoperability Test Lab Application Notes for Packaging and Deploying Avaya Communications Process Manager Sample SDK Web Application on a JBoss Application Server Issue 1.0 Abstract
BlueJ Teamwork Tutorial
BlueJ Teamwork Tutorial Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Bruce Quig, Davin McCall School of Engineering & IT, Deakin University Contents 1 OVERVIEW... 3 2 SETTING UP A REPOSITORY... 3 3
Bitrix Site Manager ASP.NET. Installation Guide
Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary
Configuring Load Balancing. Oracle Applications Release 10.7 NCA Windows NT Edition. Gary Burch. April 15, 1998
Configuring Load Balancing Oracle Applications Release 10.7 NCA Windows NT Edition Gary Burch April 15, 1998 1 Table of Contents Table of Contents.. Introduction. Installation Manuals.. Software Requirements..
AJAX Storage: A Look at Flash Cookies and Internet Explorer Persistence
AJAX Storage: A Look at Flash Cookies and Internet Explorer Persistence Corey Benninger The AJAX Storage Dilemna AJAX (Asynchronous JavaScript and XML) applications are constantly looking for ways to increase
How To Link Tomcat 5 with IIS 6 on Windows 2003 Server using the JK2 ajp13 connector
How To Link Tomcat 5 with IIS 6 on Windows 2003 Server using the JK2 ajp13 connector Copyright 2003 TJ and 2XP Group ([email protected]) Contents 1. History 2. Introduction 3. Summary 4. Prerequisites
Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...
Post Installation Guide for Primavera Contract Management 14.1 July 2014 Contents About the Contract Management Post Installation Administrator's Guide... 5 Viewing and Modifying Contract Management Settings...
HP Quality Center. Upgrade Preparation Guide
HP Quality Center Upgrade Preparation Guide Document Release Date: November 2008 Software Release Date: November 2008 Legal Notices Warranty The only warranties for HP products and services are set forth
Using Git for Project Management with µvision
MDK Version 5 Tutorial AN279, Spring 2015, V 1.0 Abstract Teamwork is the basis of many modern microcontroller development projects. Often teams are distributed all over the world and over various time
4PSA DNS Manager 3.7.0. Translator's Manual
4PSA DNS Manager 3.7.0 Translator's Manual For more information about 4PSA DNS Manager, check: http://www.4psa.com Copyrights 2002-2010 Rack-Soft, Inc. Translator's Manual Manual Version 48807.9 at 2010/03/10
Hands-On Lab. Web Development in Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Page 1
Hands-On Lab Web Development in Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING HTML CODE SNIPPETS IN VISUAL STUDIO 2010... 6 Task 1 Adding
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager
IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.
NASA Workflow Tool. User Guide. September 29, 2010
NASA Workflow Tool User Guide September 29, 2010 NASA Workflow Tool User Guide 1. Overview 2. Getting Started Preparing the Environment 3. Using the NED Client Common Terminology Workflow Configuration
FmPro Migrator - FileMaker to SQL Server
FmPro Migrator - FileMaker to SQL Server FmPro Migrator - FileMaker to SQL Server 1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 1.11 1.12 1.13 1.14 1.15 FmPro Migrator - FileMaker to SQL Server Migration
QAD BPM Release Notes
September 2014 The release notes include information about the latest QAD BPM fixes and changes. Review this document before proceeding with any phase of a QAD BPM implementation. These release notes are
DEPLOYMENT GUIDE Version 2.1. Deploying F5 with Microsoft SharePoint 2010
DEPLOYMENT GUIDE Version 2.1 Deploying F5 with Microsoft SharePoint 2010 Table of Contents Table of Contents Introducing the F5 Deployment Guide for Microsoft SharePoint 2010 Prerequisites and configuration
Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:
Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,
NewsletterAdmin 2.4 Setup Manual
NewsletterAdmin 2.4 Setup Manual Updated: 7/22/2011 Contact: [email protected] Contents Overview... 2 What's New in NewsletterAdmin 2.4... 2 Before You Begin... 2 Testing and Production...
Version Control with. Ben Morgan
Version Control with Ben Morgan Developer Workflow Log what we did: Add foo support Edit Sources Add Files Compile and Test Logbook ======= 1. Initial version Logbook ======= 1. Initial version 2. Remove
CRM Global Search: Installation & Configuration
Installation ***Important: It is highly recommended that you first take a backup of your current CRM Application Ribbons prior to importing this solution. Please do so by navigating to Settings > Solutions
INTERSPIRE EMAIL MARKETER
INTERSPIRE EMAIL MARKETER Interspire Pty. Ltd. User s Guide Edition 1.3 April 2009 3 About This User s Guide How to Use This User s Guide This user s guide describes Interspire Email Marketer s Graphical
Pinpointe User s Guide
Pinpointe User s Guide Edition 2.1 October 2008 About This User s Guide How to Use This User s Guide This user s guide describes Pinpointe s Graphical User Interface (GUI). It shows you how to use each
X-POS GUIDE. v3.4 INSTALLATION. 2015 SmartOSC and X-POS
GUIDE INSTALLATION X-POS v3.4 2015 SmartOSC and X-POS 1. Prerequisites for Installing and Upgrading Server has Apache/PHP 5.2.x/MySQL installed. Magento Community version 1.7.x or above already installed
Crawl Proxy Installation and Configuration Guide
Crawl Proxy Installation and Configuration Guide Google Enterprise EMEA Google Search Appliance is able to natively crawl secure content coming from multiple sources using for instance the following main
EMC Documentum Repository Services for Microsoft SharePoint
EMC Documentum Repository Services for Microsoft SharePoint Version 6.5 SP2 Installation Guide P/N 300 009 829 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com
Building and Using Web Services With JDeveloper 11g
Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the
Ingenious Testcraft Technical Documentation Installation Guide
Ingenious Testcraft Technical Documentation Installation Guide V7.00R1 Q2.11 Trademarks Ingenious, Ingenious Group, and Testcraft are trademarks of Ingenious Group, Inc. and may be registered in the United
Oracle EXAM - 1Z0-102. Oracle Weblogic Server 11g: System Administration I. Buy Full Product. http://www.examskey.com/1z0-102.html
Oracle EXAM - 1Z0-102 Oracle Weblogic Server 11g: System Administration I Buy Full Product http://www.examskey.com/1z0-102.html Examskey Oracle 1Z0-102 exam demo product is here for you to test the quality
Builder User Guide. Version 6.0.1. Visual Rules Suite - Builder. Bosch Software Innovations
Visual Rules Suite - Builder Builder User Guide Version 6.0.1 Bosch Software Innovations Americas: Bosch Software Innovations Corp. 161 N. Clark Street Suite 3500 Chicago, Illinois 60601/USA Tel. +1 312
IBM Unica emessage Version 8 Release 6 February 13, 2015. User's Guide
IBM Unica emessage Version 8 Release 6 February 13, 2015 User's Guide Note Before using this information and the product it supports, read the information in Notices on page 403. This edition applies to
Backing Up TestTrack Native Project Databases
Backing Up TestTrack Native Project Databases TestTrack projects should be backed up regularly. You can use the TestTrack Native Database Backup Command Line Utility to back up TestTrack 2012 and later
Builder User Guide. Version 5.4. Visual Rules Suite - Builder. Bosch Software Innovations
Visual Rules Suite - Builder Builder User Guide Version 5.4 Bosch Software Innovations Americas: Bosch Software Innovations Corp. 161 N. Clark Street Suite 3500 Chicago, Illinois 60601/USA Tel. +1 312
How To Write A File System On A Microsoft Office 2.2.2 (Windows) (Windows 2.3) (For Windows 2) (Minorode) (Orchestra) (Powerpoint) (Xls) (
Remark Office OMR 8 Supported File Formats User s Guide Addendum Remark Products Group 301 Lindenwood Drive, Suite 100 Malvern, PA 19355-1772 USA www.gravic.com Disclaimer The information contained in
Strategic Asset Tracking System User Guide
Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data
ShoreTel Active Directory Import Application
INSTALLATION & USER GUIDE ShoreTel Active Directory Import Application ShoreTel Professional Services Introduction The ShoreTel Active Directory Import Application allows customers to centralize and streamline
How to translate VisualPlace
Translation tips 1 How to translate VisualPlace The international language support in VisualPlace is based on the Rosette library. There are three sections in this guide. It starts with instructions for
Building A Very Simple Web Site
Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building
GpsGate Server. Installation and Administration Guide. Version: 2.2 Rev: 2
GpsGate Server Installation and Administration Guide Version: 2.2 Rev: 2 Table of Contents 1 Introduction...3 2 Technical Requirements...4 2.1 Third Party Software...4 2.2 Recommended and Supported Web
FTP Service Reference
IceWarp Server FTP Service Reference Version 10 Printed on 12 August, 2009 i Contents FTP Service 1 V10 New Features... 2 FTP Access Mode... 2 FTP Synchronization... 2 FTP Service Node... 3 FTP Service
Integrating with BarTender Integration Builder
Integrating with BarTender Integration Builder WHITE PAPER Contents Overview 3 Understanding BarTender's Native Integration Platform 4 Integration Builder 4 Administration Console 5 BarTender Integration
FileMaker Server 9. Custom Web Publishing with PHP
FileMaker Server 9 Custom Web Publishing with PHP 2007 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker,
How will the transition to the new Adobe Forums be handled?
Why are you changing the Adobe Forums? In response to community feedback through surveys, we are incorporating many user-requested features into Adobe Forums and also making changes to the underlying technology
Oracle Universal Content Management 10.1.3
Date: 2007/04/16-10.1.3 Oracle Universal Content Management 10.1.3 Document Management Quick Start Tutorial Oracle Universal Content Management 10.1.3 Document Management Quick Start Guide Page 1 Contents
PORTAL ADMINISTRATION
1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5
Application Developer Guide
IBM Maximo Asset Management 7.1 IBM Tivoli Asset Management for IT 7.1 IBM Tivoli Change and Configuration Management Database 7.1.1 IBM Tivoli Service Request Manager 7.1 Application Developer Guide Note
