Поправлена структура, разделы в подразделы до 3.3
444
ИЭТР-тест/Develop/app/APIWrapper.js
Normal file
@@ -0,0 +1,444 @@
|
||||
/*******************************************************************************
|
||||
ADL SCORM 2004 4th Edition MSCE
|
||||
|
||||
The ADL SCORM 2004 4th Ed. MSCE is licensed under
|
||||
|
||||
Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States.
|
||||
|
||||
|
||||
|
||||
The Advanced Distributed Learning Initiative allows you to:
|
||||
|
||||
* Share - to copy, distribute and transmit the work.
|
||||
|
||||
* Remix - to adapt the work.
|
||||
|
||||
|
||||
|
||||
Under the following conditions:
|
||||
|
||||
* Attribution. You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).
|
||||
|
||||
* Noncommercial. You may not use this work for commercial purposes.
|
||||
|
||||
* Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.
|
||||
|
||||
|
||||
|
||||
For any reuse or distribution, you must make clear to others the license terms of this work.
|
||||
|
||||
Any of the above conditions can be waived if you get permission from the ADL Initiative.
|
||||
|
||||
Nothing in this license impairs or restricts the author's moral rights.
|
||||
**
|
||||
** Usage: Executable course content can call the API Wrapper
|
||||
** functions as follows:
|
||||
**
|
||||
** javascript:
|
||||
** var result = doInitialize();
|
||||
** if (result != true)
|
||||
** {
|
||||
** // handle error
|
||||
** }
|
||||
**
|
||||
** authorware:
|
||||
** result := ReadURL("javascript:doInitialize()", 100)
|
||||
**
|
||||
** director:
|
||||
** result = externalEvent("javascript:doInitialize()")
|
||||
**
|
||||
**
|
||||
*******************************************************************************/
|
||||
|
||||
var _Debug = false; // set this to false to turn debugging off
|
||||
// and get rid of those annoying alert boxes.
|
||||
|
||||
// Define exception/error codes
|
||||
var _NoError = 0;
|
||||
var _GeneralException = 101;
|
||||
var _GeneralInitializationFailure = 102;
|
||||
var _AlreadyInitialized = 103;
|
||||
var _ContentInstanceTerminated = 104;
|
||||
var _GeneralTerminationFailure = 111;
|
||||
var _TerminationBeforeInitialization = 112;
|
||||
var _TerminationAfterTermination = 113;
|
||||
var _ReceivedDataBeforeInitialization = 122;
|
||||
var _ReceivedDataAfterTermination = 123;
|
||||
var _StoreDataBeforeInitialization = 132;
|
||||
var _StoreDataAfterTermination = 133;
|
||||
var _CommitBeforeInitialization = 142;
|
||||
var _CommitAfterTermination = 143;
|
||||
var _GeneralArgumentError = 201;
|
||||
var _GeneralGetFailure = 301;
|
||||
var _GeneralSetFailure = 351;
|
||||
var _GeneralCommitFailure = 391;
|
||||
var _UndefinedDataModelElement = 401;
|
||||
var _UnimplementedDataModelElement = 402;
|
||||
var _DataModelElementValueNotInitialized = 403;
|
||||
var _DataModelElementIsReadOnly = 404;
|
||||
var _DataModelElementIsWriteOnly = 405;
|
||||
var _DataModelElementTypeMismatch = 406;
|
||||
var _DataModelElementValueOutOfRange = 407;
|
||||
|
||||
|
||||
// local variable definitions
|
||||
var apiHandle = null;
|
||||
var API = null;
|
||||
var findAPITries = 0;
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function: doInitialize()
|
||||
** Inputs: None
|
||||
** Return: CMIBoolean true if the initialization was successful, or
|
||||
** CMIBoolean false if the initialization failed.
|
||||
**
|
||||
** Description:
|
||||
** Initialize communication with LMS by calling the Initialize
|
||||
** function which will be implemented by the LMS.
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doInitialize()
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nInitialize was not successful.");
|
||||
return "false";
|
||||
}
|
||||
|
||||
var result = api.Initialize("");
|
||||
|
||||
if (result.toString() != "true")
|
||||
{
|
||||
var err = ErrorHandler();
|
||||
}
|
||||
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doTerminate()
|
||||
** Inputs: None
|
||||
** Return: CMIBoolean true if successful
|
||||
** CMIBoolean false if failed.
|
||||
**
|
||||
** Description:
|
||||
** Close communication with LMS by calling the Terminate
|
||||
** function which will be implemented by the LMS
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doTerminate()
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nTerminate was not successful.");
|
||||
return "false";
|
||||
}
|
||||
else
|
||||
{
|
||||
// call the Terminate function that should be implemented by the API
|
||||
|
||||
var result = api.Terminate("");
|
||||
if (result.toString() != "true")
|
||||
{
|
||||
var err = ErrorHandler();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doGetValue(name)
|
||||
** Inputs: name - string representing the cmi data model defined category or
|
||||
** element (e.g. cmi.core.student_id)
|
||||
** Return: The value presently assigned by the LMS to the cmi data model
|
||||
** element defined by the element or category identified by the name
|
||||
** input value.
|
||||
**
|
||||
** Description:
|
||||
** Wraps the call to the GetValue method
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doGetValue(name)
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nGetValue was not successful.");
|
||||
return "";
|
||||
}
|
||||
else
|
||||
{
|
||||
var value = api.GetValue(name);
|
||||
var errCode = api.GetLastError().toString();
|
||||
if (errCode != _NoError)
|
||||
{
|
||||
// an error was encountered so display the error description
|
||||
var errDescription = api.GetErrorString(errCode);
|
||||
// alert("GetValue("+name+") failed. \n"+ errDescription);
|
||||
return "";
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
return value.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doSetValue(name, value)
|
||||
** Inputs: name -string representing the data model defined category or element
|
||||
** value -the value that the named element or category will be assigned
|
||||
** Return: CMIBoolean true if successful
|
||||
** CMIBoolean false if failed.
|
||||
**
|
||||
** Description:
|
||||
** Wraps the call to the SetValue function
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doSetValue(name, value)
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nSetValue was not successful.");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
var result = api.SetValue(name, value);
|
||||
if (result.toString() != "true")
|
||||
{
|
||||
var err = ErrorHandler();
|
||||
}
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doCommit()
|
||||
** Inputs: None
|
||||
** Return: None
|
||||
**
|
||||
** Description:
|
||||
** Call the Commit function
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doCommit()
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
//alert("Unable to locate the LMS's API Implementation.\nCommit was not successful.");
|
||||
return "false";
|
||||
}
|
||||
else
|
||||
{
|
||||
var result = api.Commit("");
|
||||
if (result != "true")
|
||||
{
|
||||
var err = ErrorHandler();
|
||||
}
|
||||
}
|
||||
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doGetLastError()
|
||||
** Inputs: None
|
||||
** Return: The error code that was set by the last LMS function call
|
||||
**
|
||||
** Description:
|
||||
** Call the GetLastError function
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doGetLastError()
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nGetLastError was not successful.");
|
||||
//since we can't get the error code from the LMS, return a general error
|
||||
return _GeneralError;
|
||||
}
|
||||
|
||||
return api.GetLastError().toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doGetErrorString(errorCode)
|
||||
** Inputs: errorCode - Error Code
|
||||
** Return: The textual description that corresponds to the input error code
|
||||
**
|
||||
** Description:
|
||||
** Call the GetErrorString function
|
||||
**
|
||||
********************************************************************************/
|
||||
function doGetErrorString(errorCode)
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nGetErrorString was not successful.");
|
||||
}
|
||||
|
||||
return api.GetErrorString(errorCode).toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function doGetDiagnostic(errorCode)
|
||||
** Inputs: errorCode - Error Code(integer format), or null
|
||||
** Return: The vendor specific textual description that corresponds to the
|
||||
** input error code
|
||||
**
|
||||
** Description:
|
||||
** Call the LMSGetDiagnostic function
|
||||
**
|
||||
*******************************************************************************/
|
||||
function doGetDiagnostic(errorCode)
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
// alert("Unable to locate the LMS's API Implementation.\nGetDiagnostic was not successful.");
|
||||
}
|
||||
|
||||
return api.GetDiagnostic(errorCode).toString();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function ErrorHandler()
|
||||
** Inputs: None
|
||||
** Return: The current value of the LMS Error Code
|
||||
**
|
||||
** Description:
|
||||
** Determines if an error was encountered by the previous API call
|
||||
** and if so, displays a message to the user. If the error code
|
||||
** has associated text it is also displayed.
|
||||
**
|
||||
*******************************************************************************/
|
||||
function ErrorHandler()
|
||||
{
|
||||
var api = getAPIHandle();
|
||||
if (api == null)
|
||||
{
|
||||
//alert("Unable to locate the LMS's API Implementation.\nCannot determine LMS error code.");
|
||||
return;
|
||||
}
|
||||
|
||||
// check for errors caused by or from the LMS
|
||||
var errCode = api.GetLastError().toString();
|
||||
if (errCode != _NoError && errCode != _AlreadyInitialized )
|
||||
{
|
||||
// an error was encountered so display the error description
|
||||
var errDescription = api.GetErrorString(errCode);
|
||||
|
||||
if (_Debug == true)
|
||||
{
|
||||
errDescription += "\n";
|
||||
errDescription += api.GetDiagnostic(null);
|
||||
// by passing null to GetDiagnostic, we get any available diagnostics
|
||||
// on the previous error.
|
||||
}
|
||||
|
||||
// alert(errDescription);
|
||||
}
|
||||
|
||||
return errCode;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
**
|
||||
** Function getAPIHandle()
|
||||
** Inputs: None
|
||||
** Return: value contained by APIHandle
|
||||
**
|
||||
** Description:
|
||||
** Returns the handle to API object if it was previously set,
|
||||
** otherwise it returns null
|
||||
**
|
||||
*******************************************************************************/
|
||||
function getAPIHandle()
|
||||
{
|
||||
if (apiHandle == null)
|
||||
{
|
||||
apiHandle = getAPI();
|
||||
}
|
||||
|
||||
return apiHandle;
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function findAPI(win)
|
||||
** Inputs: win - a Window Object
|
||||
** Return: If an API object is found, it's returned, otherwise null is returned
|
||||
**
|
||||
** Description:
|
||||
** This function looks for an object named API in parent and opener windows
|
||||
**
|
||||
*******************************************************************************/
|
||||
function findAPI(win)
|
||||
{
|
||||
while ((win.API_1484_11 == null) && (win.parent != null) && (win.parent != win))
|
||||
{
|
||||
findAPITries++;
|
||||
|
||||
if (findAPITries > 500)
|
||||
{
|
||||
// alert("Error finding API -- too deeply nested.");
|
||||
return null;
|
||||
}
|
||||
|
||||
win = win.parent;
|
||||
|
||||
}
|
||||
return win.API_1484_11;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Function getAPI()
|
||||
** Inputs: none
|
||||
** Return: If an API object is found, it's returned, otherwise null is returned
|
||||
**
|
||||
** Description:
|
||||
** This function looks for an object named API, first in the current window's
|
||||
** frame hierarchy and then, if necessary, in the current window's opener window
|
||||
** hierarchy (if there is an opener window).
|
||||
**
|
||||
*******************************************************************************/
|
||||
function getAPI()
|
||||
{
|
||||
var theAPI = findAPI(window);
|
||||
if ((theAPI == null) && (window.opener != null) && (typeof(window.opener) != "undefined"))
|
||||
{
|
||||
theAPI = findAPI(window.opener);
|
||||
}
|
||||
if (theAPI == null)
|
||||
{
|
||||
// alert("Unable to find an API adapter");
|
||||
}
|
||||
return theAPI
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,527 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><!--Arbortext, Inc., 1988-2010, v.4002-->
|
||||
<dmodule xsi:noNamespaceSchemaLocation="http://www.s1000d.org/S1000D_4-1/xml_schema_flat/prdcrossreftable.xsd"
|
||||
xmlns:dc="http://www.purl.org/dc/elements/1.1/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<rdf:Description>
|
||||
<dc:creator>SF815</dc:creator>
|
||||
<dc:title>Content profile - Products cross-reference table</dc:title>
|
||||
<dc:subject>Mountain bicycle - Products cross-reference table</dc:subject>
|
||||
<dc:publisher>SF815</dc:publisher>
|
||||
<dc:contributor>SF815</dc:contributor>
|
||||
<dc:date>2008-08-01</dc:date>
|
||||
<dc:type>text</dc:type>
|
||||
<dc:format>text/xml</dc:format>
|
||||
<dc:identifier>S1000DSTUDIO-AAA-D20-00-00-00AA-00PA-D_004-00</dc:identifier>
|
||||
<dc:language>en-US</dc:language>
|
||||
<dc:rights>01</dc:rights>
|
||||
</rdf:Description>
|
||||
<identAndStatusSection>
|
||||
<dmAddress>
|
||||
<dmIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00P" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DSTUDIO" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
<language countryIsoCode="US" languageIsoCode="en"/>
|
||||
<issueInfo inWork="00" issueNumber="004"/>
|
||||
</dmIdent>
|
||||
<dmAddressItems>
|
||||
<issueDate day="01" month="08" year="2008"/>
|
||||
<dmTitle>
|
||||
<techName>Content profile</techName>
|
||||
<infoName>Products cross-reference table</infoName>
|
||||
</dmTitle>
|
||||
</dmAddressItems>
|
||||
</dmAddress>
|
||||
<dmStatus issueType="revised">
|
||||
<security securityClassification="01"/>
|
||||
<responsiblePartnerCompany enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</responsiblePartnerCompany>
|
||||
<originator enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</originator>
|
||||
<applicCrossRefTableRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-00WA-D" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00W" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</applicCrossRefTableRef>
|
||||
<applic>
|
||||
<displayText>
|
||||
<simplePara>All</simplePara>
|
||||
</displayText>
|
||||
</applic>
|
||||
<brexDmRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-022A-D_007-00" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="022" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D00" systemDiffCode="AAA"/>
|
||||
<issueInfo inWork="00" issueNumber="007"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</brexDmRef>
|
||||
<qualityAssurance>
|
||||
<firstVerification verificationType="ttandoo"/>
|
||||
</qualityAssurance>
|
||||
</dmStatus>
|
||||
</identAndStatusSection>
|
||||
<content>
|
||||
<productCrossRefTable>
|
||||
<product id="ContentProfile1">
|
||||
<assign applicPropertyIdent="contentprofileid" applicPropertyType="prodattr" applicPropertyValue="1212B070643ASD"/>
|
||||
<assign applicPropertyIdent="contentprofilename" applicPropertyType="prodattr" applicPropertyValue="DEFAULT"/>
|
||||
<!-- settings_defaultcommentqueryMI
|
||||
Идентификационный код модели по умолчанию для Комментария
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryMI" applicPropertyType="condition" applicPropertyValue="DA42T"/>
|
||||
<!-- settings_defaultcommentqueryIssuer
|
||||
Издатель Комментария по умолчанию
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryIssuer" applicPropertyType="condition" applicPropertyValue="UWCAD"/>
|
||||
<!-- settings_commentlangs
|
||||
список допустимых языков при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentlangs" applicPropertyType="condition" applicPropertyValue="ru,en"/>
|
||||
<!-- settings_commentcountries
|
||||
список допустимых стран при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentcountries" applicPropertyType="condition" applicPropertyValue="RU,GB"/>
|
||||
<!-- format_xslType с BRDP-S1-00473 по BRDP-S1-00479
|
||||
S1000D
|
||||
MILSTD
|
||||
GOST18675-2012
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_xslType" applicPropertyType="condition" applicPropertyValue="S1000D"/>
|
||||
<!-- format_csspagestyle BRDP-S1-00492
|
||||
doublecolumn1
|
||||
singlecolumn1
|
||||
singlecolumn2
|
||||
Основной параметр определяющий:
|
||||
число колонок
|
||||
нумерацию заголовков
|
||||
оформление заголовков
|
||||
оформление основного параграфа
|
||||
отсутпы и т.д.
|
||||
Сейчас надо стелать 3 варианта, остальное в течении жизни
|
||||
-->
|
||||
<assign applicPropertyIdent="format_csspagestyle" applicPropertyType="condition" applicPropertyValue="singlecolumn1"/>
|
||||
<!-- format_dmtitle BRDP-S1-00496
|
||||
onelinedot - в одну строку через точку
|
||||
onelinedash - в одну строку через тире
|
||||
twoline - в две строки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitle" applicPropertyType="condition" applicPropertyValue="onelinedash"/>
|
||||
<!--format_dmend BRDP-S1-00490
|
||||
dmend
|
||||
dmendplusdmtitle
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmend" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_procsteptitle BRDP-S1-00494
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_crewsteptitle BRDP-S1-00495
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_crewsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_toc BRDP-S1-00497
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_toc" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_lot BRDP-S1-00498
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lot" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_lof BRDP-S1-00500
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lof" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_levparatitle BRDP-S1-00503
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_levparatitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_procstepnumber BRDP-S1-00504
|
||||
numeric
|
||||
alphabetic
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procstepnumber" applicPropertyType="condition" applicPropertyValue="numeric"/>
|
||||
<!-- format_stepindent BRDP-S1-00506
|
||||
0 - не использовать отступ
|
||||
1 - использовать отступ
|
||||
-->
|
||||
<assign applicPropertyIdent="format_stepindent" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_randlistitemprefix BRDP-S1-00507
|
||||
0 - как в модуле
|
||||
1 - форсировать схема 1 (-,.,-)
|
||||
2 - форсировать (-,-,-)
|
||||
3 - форсировать (.,.,.)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_randlistitemprefix" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_footnotemarker BRDP-S1-00508
|
||||
superscript - верхний регистр
|
||||
brackets - скобки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotemarker" applicPropertyType="condition" applicPropertyValue="superscript"/>
|
||||
<!-- format_footnoteplace BRDP-S1-00509
|
||||
dmend - в конце МД
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnoteplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_footnotetableplace BRDP-S1-00510
|
||||
dmend - в конце МД
|
||||
tableend - в конце таблицы
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotetableplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_formaltablevertsep BRDP-S1-00511
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_formaltablevertsep" applicPropertyType="condition" applicPropertyValue="false"/>
|
||||
<!-- format_fuguresheets BRDP-S1-00512
|
||||
textdelim - (Лист 1 из 2)
|
||||
slashdelim (Лист 1/2)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_fuguresheets" applicPropertyType="condition" applicPropertyValue="textdelim"/>
|
||||
<!-- format_wcsymbols BRDP-S1-00514
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcsymbols" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_wcn BRDP-S1-00515
|
||||
textual - Только текст или с рамками
|
||||
symbol1 - схема c подложками заполнителей
|
||||
color1 - схема c заливкой цветом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcn" applicPropertyType="condition" applicPropertyValue="symbol1"/>
|
||||
<!-- format_notenumbers BRDP-S1-00516
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_notenumbers" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_changes BRDP-S1-00517
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать черной чертой слева
|
||||
2 - отображать светло-желтым цветом фона элемента
|
||||
3 - отображать по цветам (add-green, modify-yellow,delete-red)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_changes" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_dmtitleinrefstable BRDP-S1-00520
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitleinrefstable" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_pmtitleinrefs BRDP-S1-00521
|
||||
0 - не отображать
|
||||
1 - отображать pmtitle
|
||||
2 - отображать shortpmtitle
|
||||
3 - отображать оба
|
||||
-->
|
||||
<assign applicPropertyIdent="format_pmtitleinrefs" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_refssequence BRDP-S1-00522
|
||||
asis
|
||||
codeup
|
||||
codedown
|
||||
dmpmextpub
|
||||
-->
|
||||
<assign applicPropertyIdent="format_refssequence" applicPropertyType="condition" applicPropertyValue="dmpmextpub"/>
|
||||
<!-- format_prelreqnames BRDP-S1-00524
|
||||
name - Только имя
|
||||
shortname - Только короткое имя
|
||||
nameandshort - Оба Имя (короткое имя)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_prelreqnames" applicPropertyType="condition" applicPropertyValue="name"/>
|
||||
<!-- format_inlineapplic BRDP-S1-00525
|
||||
pre - Перед элементом
|
||||
post - Внутри элемента
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplic" applicPropertyType="condition" applicPropertyValue="post"/>
|
||||
<!-- format_inlineapplicbold BRDP-S1-00526
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplicbold" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<assign applicPropertyIdent="tm_refs_text" applicPropertyType="condition" applicPropertyValue="References"/>
|
||||
<assign applicPropertyIdent="tm_ident_text" applicPropertyType="condition" applicPropertyValue="Identification"/>
|
||||
<assign applicPropertyIdent="tm_ref_text" applicPropertyType="condition" applicPropertyValue="Reference"/>
|
||||
<assign applicPropertyIdent="tm_footnotes_text" applicPropertyType="condition" applicPropertyValue="Footnotes"/>
|
||||
<assign applicPropertyIdent="tm_none_text" applicPropertyType="condition" applicPropertyValue="None"/>
|
||||
<assign applicPropertyIdent="tm_dmpm_text" applicPropertyType="condition" applicPropertyValue="Data Module/Technical Publication"/>
|
||||
<assign applicPropertyIdent="tm_title_text" applicPropertyType="condition" applicPropertyValue="Title"/>
|
||||
<assign applicPropertyIdent="tm_name_text" applicPropertyType="condition" applicPropertyValue="Name"/>
|
||||
<assign applicPropertyIdent="tm_altname_text" applicPropertyType="condition" applicPropertyValue="Alternate name"/>
|
||||
<assign applicPropertyIdent="tm_dm_text" applicPropertyType="condition" applicPropertyValue="Data module"/>
|
||||
<assign applicPropertyIdent="tm_dmc_text" applicPropertyType="condition" applicPropertyValue="Data module code"/>
|
||||
<assign applicPropertyIdent="tm_pmc_text" applicPropertyType="condition" applicPropertyValue="Publication module code"/>
|
||||
<assign applicPropertyIdent="tm_idssection_text" applicPropertyType="condition" applicPropertyValue="Identification and Status Section"/>
|
||||
<assign applicPropertyIdent="tm_idsection_text" applicPropertyType="condition" applicPropertyValue="Identification Section"/>
|
||||
<assign applicPropertyIdent="tm_issue_text" applicPropertyType="condition" applicPropertyValue="Issue"/>
|
||||
<assign applicPropertyIdent="tm_statussection_text" applicPropertyType="condition" applicPropertyValue="Status Section"/>
|
||||
<assign applicPropertyIdent="tm_sequrity_text" applicPropertyType="condition" applicPropertyValue="Security"/>
|
||||
<assign applicPropertyIdent="tm_sequrityclass_text" applicPropertyType="condition" applicPropertyValue="Security Classification"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_01" applicPropertyType="condition" applicPropertyValue="UNCLASSIFIED"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_02" applicPropertyType="condition" applicPropertyValue="SECURITY CLASS 1"/>
|
||||
<assign applicPropertyIdent="tm_commclass_text" applicPropertyType="condition" applicPropertyValue="Commertial Classification"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc01" applicPropertyType="condition" applicPropertyValue="COMM CLASS 1"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc02" applicPropertyType="condition" applicPropertyValue="COMM CLASS 2"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc51" applicPropertyType="condition" applicPropertyValue="COMM CLASS 51"/>
|
||||
<assign applicPropertyIdent="tm_caveat_text" applicPropertyType="condition" applicPropertyValue="Caveat"/>
|
||||
<assign applicPropertyIdent="tm_caveat_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv01" applicPropertyType="condition" applicPropertyValue="CAVEAT 1"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv02" applicPropertyType="condition" applicPropertyValue="CAVEAT 2"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv51" applicPropertyType="condition" applicPropertyValue="CAVEAT 51"/>
|
||||
<assign applicPropertyIdent="tm_status_" applicPropertyType="condition" applicPropertyValue="New"/>
|
||||
<assign applicPropertyIdent="tm_status_new" applicPropertyType="condition" applicPropertyValue="New"/>
|
||||
<assign applicPropertyIdent="tm_status_changed" applicPropertyType="condition" applicPropertyValue="Changed"/>
|
||||
<assign applicPropertyIdent="tm_status_deleted" applicPropertyType="condition" applicPropertyValue="Deleted"/>
|
||||
<assign applicPropertyIdent="tm_status_revised" applicPropertyType="condition" applicPropertyValue="Revised"/>
|
||||
<assign applicPropertyIdent="tm_status_status" applicPropertyType="condition" applicPropertyValue="Status changed"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-revised" applicPropertyType="condition" applicPropertyValue="Reinstated-Revised"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-changed" applicPropertyType="condition" applicPropertyValue="Reinstated-Changed"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-status" applicPropertyType="condition" applicPropertyValue="Reinstated-Status Changed"/>
|
||||
<assign applicPropertyIdent="tm_issdate_text" applicPropertyType="condition" applicPropertyValue="Issue Date"/>
|
||||
<assign applicPropertyIdent="tm_rpc_text" applicPropertyType="condition" applicPropertyValue="Responsible Partner Company"/>
|
||||
<assign applicPropertyIdent="tm_orig_text" applicPropertyType="condition" applicPropertyValue="Originator"/>
|
||||
<assign applicPropertyIdent="tm_applic_text" applicPropertyType="condition" applicPropertyValue="Applicable to"/>
|
||||
<assign applicPropertyIdent="tm_brexdm_text" applicPropertyType="condition" applicPropertyValue="BREX Data Module"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_text" applicPropertyType="condition" applicPropertyValue="Quality Assurance"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_unverified" applicPropertyType="condition" applicPropertyValue="Unverified"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_firstVerification" applicPropertyType="condition" applicPropertyValue="First Verification"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_secondVerification" applicPropertyType="condition" applicPropertyValue="Second Verification"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_tabtop" applicPropertyType="condition" applicPropertyValue="Table Top"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_onobject" applicPropertyType="condition" applicPropertyValue="On Object"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_ttandoo" applicPropertyType="condition" applicPropertyValue="Table Top and On Object"/>
|
||||
<assign applicPropertyIdent="tm_contrlang_text" applicPropertyType="condition" applicPropertyValue="Country/Language"/>
|
||||
<assign applicPropertyIdent="tm_no_text" applicPropertyType="condition" applicPropertyValue="None"/>
|
||||
<assign applicPropertyIdent="tm_yes_text" applicPropertyType="condition" applicPropertyValue="Yes"/>
|
||||
<assign applicPropertyIdent="tm_referror_text" applicPropertyType="condition" applicPropertyValue="Referenced Data Module Not Found"/>
|
||||
<assign applicPropertyIdent="tm_figure_text" applicPropertyType="condition" applicPropertyValue="Fig"/>
|
||||
<assign applicPropertyIdent="tm_sheet_text" applicPropertyType="condition" applicPropertyValue="Sheet"/>
|
||||
<assign applicPropertyIdent="tm_multimedia_text" applicPropertyType="condition" applicPropertyValue="Multimedia"/>
|
||||
<assign applicPropertyIdent="tm_para_text" applicPropertyType="condition" applicPropertyValue="Para"/>
|
||||
<assign applicPropertyIdent="tm_procstep_text" applicPropertyType="condition" applicPropertyValue="Step"/>
|
||||
<assign applicPropertyIdent="tm_table_text" applicPropertyType="condition" applicPropertyValue="Table"/>
|
||||
<assign applicPropertyIdent="tm_zone_text" applicPropertyType="condition" applicPropertyValue="Zone"/>
|
||||
<assign applicPropertyIdent="tm_accpnl_text" applicPropertyType="condition" applicPropertyValue="Access point"/>
|
||||
<assign applicPropertyIdent="tm_supply_text" applicPropertyType="condition" applicPropertyValue="Supply"/>
|
||||
<assign applicPropertyIdent="tm_cb_text" applicPropertyType="condition" applicPropertyValue="CB"/>
|
||||
<assign applicPropertyIdent="tm_notfound_text" applicPropertyType="condition" applicPropertyValue="Not found"/>
|
||||
<assign applicPropertyIdent="tm_question_text" applicPropertyType="condition" applicPropertyValue="Question"/>
|
||||
<assign applicPropertyIdent="tm_answer_text" applicPropertyType="condition" applicPropertyValue="Answer"/>
|
||||
<assign applicPropertyIdent="tm_show_text" applicPropertyType="condition" applicPropertyValue="Show"/>
|
||||
<assign applicPropertyIdent="tm_type_text" applicPropertyType="condition" applicPropertyValue="Type"/>
|
||||
<assign applicPropertyIdent="tm_accpnltype_text" applicPropertyType="condition" applicPropertyValue="Access type"/>
|
||||
<assign applicPropertyIdent="tm_accessto_text" applicPropertyType="condition" applicPropertyValue="Access to"/>
|
||||
<assign applicPropertyIdent="tm_qty_text" applicPropertyType="condition" applicPropertyValue="Quantity"/>
|
||||
<assign applicPropertyIdent="tm_sunzone_text" applicPropertyType="condition" applicPropertyValue="Subzone"/>
|
||||
<assign applicPropertyIdent="tm_to_text" applicPropertyType="condition" applicPropertyValue="to"/>
|
||||
<assign applicPropertyIdent="tm_from_text" applicPropertyType="condition" applicPropertyValue="from"/>
|
||||
<assign applicPropertyIdent="tm_location_text" applicPropertyType="condition" applicPropertyValue="Location"/>
|
||||
<assign applicPropertyIdent="tm_accessfrom_text" applicPropertyType="condition" applicPropertyValue="Access from"/>
|
||||
<assign applicPropertyIdent="tm_prereqs_text" applicPropertyType="condition" applicPropertyValue="Preliminary requirements"/>
|
||||
<assign applicPropertyIdent="tm_prodmaint_text" applicPropertyType="condition" applicPropertyValue="Production Maintenance Data"/>
|
||||
<assign applicPropertyIdent="tm_trhldint_text" applicPropertyType="condition" applicPropertyValue="Threshold interval"/>
|
||||
<assign applicPropertyIdent="tm_wrkarealoc_text" applicPropertyType="condition" applicPropertyValue="Work area location"/>
|
||||
<assign applicPropertyIdent="tm_wrkloc_text" applicPropertyType="condition" applicPropertyValue="Work location"/>
|
||||
<assign applicPropertyIdent="tm_mnttaskduration_text" applicPropertyType="condition" applicPropertyValue="Maintenance task duration"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th01" applicPropertyType="condition" applicPropertyValue="FH"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th02" applicPropertyType="condition" applicPropertyValue="FC"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th03" applicPropertyType="condition" applicPropertyValue="M"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th04" applicPropertyType="condition" applicPropertyValue="W"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th05" applicPropertyType="condition" applicPropertyValue="Y"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th06" applicPropertyType="condition" applicPropertyValue="D"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th07" applicPropertyType="condition" applicPropertyValue="SS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th08" applicPropertyType="condition" applicPropertyValue="PRESS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th09" applicPropertyType="condition" applicPropertyValue="ENG CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th10" applicPropertyType="condition" applicPropertyValue="ENG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th11" applicPropertyType="condition" applicPropertyValue="SHOP VISITS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th12" applicPropertyType="condition" applicPropertyValue="APU CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th13" applicPropertyType="condition" applicPropertyValue="LG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th14" applicPropertyType="condition" applicPropertyValue="WHL CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th15" applicPropertyType="condition" applicPropertyValue="ENG START"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th16" applicPropertyType="condition" applicPropertyValue="APU HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th17" applicPropertyType="condition" applicPropertyValue="ENG HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th18" applicPropertyType="condition" applicPropertyValue="ELP HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th19" applicPropertyType="condition" applicPropertyValue="LDGs"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th20" applicPropertyType="condition" applicPropertyValue="OPER CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th21" applicPropertyType="condition" applicPropertyValue="OPER HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th22" applicPropertyType="condition" applicPropertyValue="SS HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th23" applicPropertyType="condition" applicPropertyValue="A CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th24" applicPropertyType="condition" applicPropertyValue="B CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th25" applicPropertyType="condition" applicPropertyValue="C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th26" applicPropertyType="condition" applicPropertyValue="D CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th27" applicPropertyType="condition" applicPropertyValue="DLY"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th28" applicPropertyType="condition" applicPropertyValue="E CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th29" applicPropertyType="condition" applicPropertyValue="OVRNGT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th30" applicPropertyType="condition" applicPropertyValue="PREFLT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th31" applicPropertyType="condition" applicPropertyValue="ROUTINE CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th32" applicPropertyType="condition" applicPropertyValue="S C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th33" applicPropertyType="condition" applicPropertyValue="SVC CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th34" applicPropertyType="condition" applicPropertyValue="TRANSIT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th35" applicPropertyType="condition" applicPropertyValue="KM"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th36" applicPropertyType="condition" applicPropertyValue="Q3"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th37" applicPropertyType="condition" applicPropertyValue="QL"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th38" applicPropertyType="condition" applicPropertyValue="SHOTS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th39" applicPropertyType="condition" applicPropertyValue="EFC"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp01" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp02" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp03" applicPropertyType="condition" applicPropertyValue="Station"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp04" applicPropertyType="condition" applicPropertyValue="Water line"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp05" applicPropertyType="condition" applicPropertyValue="Buttock line"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit01" applicPropertyType="condition" applicPropertyValue="Exact"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit02" applicPropertyType="condition" applicPropertyValue="Family"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl01" applicPropertyType="condition" applicPropertyValue="Door"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl02" applicPropertyType="condition" applicPropertyValue="Panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl03" applicPropertyType="condition" applicPropertyValue="Electrical panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl04" applicPropertyType="condition" applicPropertyValue="Hatch"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl05" applicPropertyType="condition" applicPropertyValue="Fillet"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi01" applicPropertyType="condition" applicPropertyValue="Frame"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi02" applicPropertyType="condition" applicPropertyValue="Rib"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi03" applicPropertyType="condition" applicPropertyValue="Stringer"/>
|
||||
<assign applicPropertyIdent="tm_condition_text" applicPropertyType="condition" applicPropertyValue="Action/Condition"/>
|
||||
<assign applicPropertyIdent="tm_reference_text" applicPropertyType="condition" applicPropertyValue="Reference"/>
|
||||
<assign applicPropertyIdent="tm_reqperson_text" applicPropertyType="condition" applicPropertyValue="Required persons"/>
|
||||
<assign applicPropertyIdent="tm_person_text" applicPropertyType="condition" applicPropertyValue="Person"/>
|
||||
<assign applicPropertyIdent="tm_cat_text" applicPropertyType="condition" applicPropertyValue="Category"/>
|
||||
<assign applicPropertyIdent="tm_tradecode_text" applicPropertyType="condition" applicPropertyValue="Trade/Trade code"/>
|
||||
<assign applicPropertyIdent="tm_skilllvl_text" applicPropertyType="condition" applicPropertyValue="Skill level"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk01" applicPropertyType="condition" applicPropertyValue="Basic"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk02" applicPropertyType="condition" applicPropertyValue="Intermediate"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk03" applicPropertyType="condition" applicPropertyValue="Advanced"/>
|
||||
<assign applicPropertyIdent="tm_esttime_text" applicPropertyType="condition" applicPropertyValue="Estimated time"/>
|
||||
<assign applicPropertyIdent="tm_applicto_text" applicPropertyType="condition" applicPropertyValue="Applicable to"/>
|
||||
<assign applicPropertyIdent="tm_model_text" applicPropertyType="condition" applicPropertyValue="Model"/>
|
||||
<assign applicPropertyIdent="tm_version_text" applicPropertyType="condition" applicPropertyValue="Version"/>
|
||||
<assign applicPropertyIdent="tm_supequip_text" applicPropertyType="condition" applicPropertyValue="Support equipment"/>
|
||||
<assign applicPropertyIdent="tm_manfac_text" applicPropertyType="condition" applicPropertyValue="Manufacturer"/>
|
||||
<assign applicPropertyIdent="tm_consumables_text" applicPropertyType="condition" applicPropertyValue="Consumables, materials and expendables"/>
|
||||
<assign applicPropertyIdent="tm_procedure_text" applicPropertyType="condition" applicPropertyValue="Procedure"/>
|
||||
<assign applicPropertyIdent="tm_spares_text" applicPropertyType="condition" applicPropertyValue="Spares"/>
|
||||
<assign applicPropertyIdent="tm_closecond_text" applicPropertyType="condition" applicPropertyValue="Requirements after job completion"/>
|
||||
<assign applicPropertyIdent="tm_stocknmbr_text" applicPropertyType="condition" applicPropertyValue="Stock number"/>
|
||||
<assign applicPropertyIdent="tm_partno_text" applicPropertyType="condition" applicPropertyValue="Part number"/>
|
||||
<assign applicPropertyIdent="tm_partn_text" applicPropertyType="condition" applicPropertyValue="Part No."/>
|
||||
<assign applicPropertyIdent="tm_serialno_text" applicPropertyType="condition" applicPropertyValue="Serial number"/>
|
||||
<assign applicPropertyIdent="tm_refid_text" applicPropertyType="condition" applicPropertyValue="Refs"/>
|
||||
<assign applicPropertyIdent="tm_remarks_text" applicPropertyType="condition" applicPropertyValue="Remarks"/>
|
||||
<assign applicPropertyIdent="tm_note_text" applicPropertyType="condition" applicPropertyValue="Note"/>
|
||||
<assign applicPropertyIdent="tm_warning_text" applicPropertyType="condition" applicPropertyValue="WARNING"/>
|
||||
<assign applicPropertyIdent="tm_danger_text" applicPropertyType="condition" applicPropertyValue="DANGER"/>
|
||||
<assign applicPropertyIdent="tm_caution_text" applicPropertyType="condition" applicPropertyValue="CAUTION"/>
|
||||
<assign applicPropertyIdent="tm_safcon_text" applicPropertyType="condition" applicPropertyValue="Safety conditions"/>
|
||||
<assign applicPropertyIdent="tm_isoendstep_text" applicPropertyType="condition" applicPropertyValue="End of isolation procedure"/>
|
||||
<assign applicPropertyIdent="tm_isoproc_text" applicPropertyType="condition" applicPropertyValue="Fault isolation procedure"/>
|
||||
<assign applicPropertyIdent="tm_description_text" applicPropertyType="condition" applicPropertyValue="Description"/>
|
||||
<assign applicPropertyIdent="tm_reqconds_text" applicPropertyType="condition" applicPropertyValue="Required conditions"/>
|
||||
<assign applicPropertyIdent="tm_schedule_text" applicPropertyType="condition" applicPropertyValue="Maintenance Planning"/>
|
||||
<assign applicPropertyIdent="tm_fault_text" applicPropertyType="condition" applicPropertyValue="Fault"/>
|
||||
<assign applicPropertyIdent="tm_faultreport_text" applicPropertyType="condition" applicPropertyValue="Fault Reporting"/>
|
||||
<assign applicPropertyIdent="tm_faultisolation_text" applicPropertyType="condition" applicPropertyValue="Fault Isolation"/>
|
||||
<assign applicPropertyIdent="tm_crewrefcard_text" applicPropertyType="condition" applicPropertyValue="Crew Reference Card"/>
|
||||
<assign applicPropertyIdent="tm_crewdescr_text" applicPropertyType="condition" applicPropertyValue="Description Attributed to Crew"/>
|
||||
<assign applicPropertyIdent="tm_commrep_text" applicPropertyType="condition" applicPropertyValue="Common Repository"/>
|
||||
<assign applicPropertyIdent="tm_comminfo_text" applicPropertyType="condition" applicPropertyValue="Common Information"/>
|
||||
<assign applicPropertyIdent="tm_endofdm_text" applicPropertyType="condition" applicPropertyValue="End of data module"/>
|
||||
<assign applicPropertyIdent="tm_ipp_text" applicPropertyType="condition" applicPropertyValue="Initial Provisioning Project"/>
|
||||
<assign applicPropertyIdent="tm_item_text" applicPropertyType="condition" applicPropertyValue="Item"/>
|
||||
<assign applicPropertyIdent="tm_upha_text" applicPropertyType="condition" applicPropertyValue="Units per NHA"/>
|
||||
<assign applicPropertyIdent="tm_uoi_text" applicPropertyType="condition" applicPropertyValue="UOM"/>
|
||||
<assign applicPropertyIdent="tm_design_text" applicPropertyType="condition" applicPropertyValue="Designation"/>
|
||||
<assign applicPropertyIdent="tm_ncage_text" applicPropertyType="condition" applicPropertyValue="NCAGE"/>
|
||||
<assign applicPropertyIdent="tm_nsn_text" applicPropertyType="condition" applicPropertyValue="NSN"/>
|
||||
<assign applicPropertyIdent="tm_nomen_text" applicPropertyType="condition" applicPropertyValue="Nomenclature"/>
|
||||
<assign applicPropertyIdent="tm_uoc_text" applicPropertyType="condition" applicPropertyValue="UOC"/>
|
||||
<assign applicPropertyIdent="tm_mv_text" applicPropertyType="condition" applicPropertyValue="MV"/>
|
||||
<assign applicPropertyIdent="tm_effect_text" applicPropertyType="condition" applicPropertyValue="Effect."/>
|
||||
<assign applicPropertyIdent="tm_notill_text" applicPropertyType="condition" applicPropertyValue="Not Illustrated"/>
|
||||
<assign applicPropertyIdent="tm_reftype_" applicPropertyType="condition" applicPropertyValue="Refer to"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft01" applicPropertyType="condition" applicPropertyValue="Refer to NHA"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft02" applicPropertyType="condition" applicPropertyValue="Refer to details"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft05" applicPropertyType="condition" applicPropertyValue="Attaching part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft03" applicPropertyType="condition" applicPropertyValue="Equivalent part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft04" applicPropertyType="condition" applicPropertyValue="Substitute part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft06" applicPropertyType="condition" applicPropertyValue="Removal/Installation part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft07" applicPropertyType="condition" applicPropertyValue="Select from part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft08" applicPropertyType="condition" applicPropertyValue="Oversize/Undersize"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft09" applicPropertyType="condition" applicPropertyValue="Connecting item(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft10" applicPropertyType="condition" applicPropertyValue="Breakdown"/>
|
||||
<assign applicPropertyIdent="tm_ipc_text" applicPropertyType="condition" applicPropertyValue="Illustrated Parts Catalog"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm01" applicPropertyType="condition" applicPropertyValue="All"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm02" applicPropertyType="condition" applicPropertyValue="P"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm03" applicPropertyType="condition" applicPropertyValue="CP"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm04" applicPropertyType="condition" applicPropertyValue="N"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm05" applicPropertyType="condition" applicPropertyValue="E"/>
|
||||
<assign applicPropertyIdent="tm_if_text" applicPropertyType="condition" applicPropertyValue="If"/>
|
||||
<assign applicPropertyIdent="tm_case_text" applicPropertyType="condition" applicPropertyValue="Case"/>
|
||||
<assign applicPropertyIdent="tm_elseif_text" applicPropertyType="condition" applicPropertyValue="Else if"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_text" applicPropertyType="condition" applicPropertyValue="Comment priority"/>
|
||||
<assign applicPropertyIdent="tm_commorig_text" applicPropertyType="condition" applicPropertyValue="Comment originator"/>
|
||||
<assign applicPropertyIdent="tm_entName_text" applicPropertyType="condition" applicPropertyValue="Originator name"/>
|
||||
<assign applicPropertyIdent="tm_division_text" applicPropertyType="condition" applicPropertyValue="Division"/>
|
||||
<assign applicPropertyIdent="tm_entUnit_text" applicPropertyType="condition" applicPropertyValue="Enterprise Unit"/>
|
||||
<assign applicPropertyIdent="tm_LastName_text" applicPropertyType="condition" applicPropertyValue="Last Name"/>
|
||||
<assign applicPropertyIdent="tm_FirstName_text" applicPropertyType="condition" applicPropertyValue="First Name"/>
|
||||
<assign applicPropertyIdent="tm_JobTitle_text" applicPropertyType="condition" applicPropertyValue="Job Title"/>
|
||||
<assign applicPropertyIdent="tm_department_text" applicPropertyType="condition" applicPropertyValue="Department"/>
|
||||
<assign applicPropertyIdent="tm_street_text" applicPropertyType="condition" applicPropertyValue="Street"/>
|
||||
<assign applicPropertyIdent="tm_pobox_text" applicPropertyType="condition" applicPropertyValue="PO Box"/>
|
||||
<assign applicPropertyIdent="tm_poZipCode_text" applicPropertyType="condition" applicPropertyValue="Postal ZIP Code"/>
|
||||
<assign applicPropertyIdent="tm_city_text" applicPropertyType="condition" applicPropertyValue="City"/>
|
||||
<assign applicPropertyIdent="tm_country_text" applicPropertyType="condition" applicPropertyValue="Country"/>
|
||||
<assign applicPropertyIdent="tm_state_text" applicPropertyType="condition" applicPropertyValue="State"/>
|
||||
<assign applicPropertyIdent="tm_province_text" applicPropertyType="condition" applicPropertyValue="Province"/>
|
||||
<assign applicPropertyIdent="tm_building_text" applicPropertyType="condition" applicPropertyValue="Building"/>
|
||||
<assign applicPropertyIdent="tm_room_text" applicPropertyType="condition" applicPropertyValue="Room"/>
|
||||
<assign applicPropertyIdent="tm_phoneNumber_text" applicPropertyType="condition" applicPropertyValue="Phone number"/>
|
||||
<assign applicPropertyIdent="tm_faxNumber_text" applicPropertyType="condition" applicPropertyValue="Fax number"/>
|
||||
<assign applicPropertyIdent="tm_email_text" applicPropertyType="condition" applicPropertyValue="e-mail"/>
|
||||
<assign applicPropertyIdent="tm_internet_text" applicPropertyType="condition" applicPropertyValue="Website"/>
|
||||
<assign applicPropertyIdent="tm_SITA_text" applicPropertyType="condition" applicPropertyValue="SITA"/>
|
||||
<assign applicPropertyIdent="tm_commrefs_text" applicPropertyType="condition" applicPropertyValue="Comment references"/>
|
||||
<assign applicPropertyIdent="tm_commcontent_text" applicPropertyType="condition" applicPropertyValue="Comment content"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp01" applicPropertyType="condition" applicPropertyValue="Routine"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp02" applicPropertyType="condition" applicPropertyValue="Emergency"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp03" applicPropertyType="condition" applicPropertyValue="Safety critical"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt01" applicPropertyType="condition" applicPropertyValue="Accepted"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt02" applicPropertyType="condition" applicPropertyValue="Pending"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt03" applicPropertyType="condition" applicPropertyValue="Partially accepted"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt04" applicPropertyType="condition" applicPropertyValue="Rejected"/>
|
||||
<assign applicPropertyIdent="tm_pm_text" applicPropertyType="condition" applicPropertyValue="Publication module"/>
|
||||
<assign applicPropertyIdent="tm_comc_text" applicPropertyType="condition" applicPropertyValue="Comment code"/>
|
||||
<assign applicPropertyIdent="tm_gotoclosereqs_text" applicPropertyType="condition" applicPropertyValue="Goto requirements after job completion"/>
|
||||
<assign applicPropertyIdent="tm_goto_text" applicPropertyType="condition" applicPropertyValue="Goto"/>
|
||||
<assign applicPropertyIdent="tm_faultcode_text" applicPropertyType="condition" applicPropertyValue="Fault code"/>
|
||||
<assign applicPropertyIdent="tm_multpquest_text" applicPropertyType="condition" applicPropertyValue="Multiple Choice Question"/>
|
||||
<assign applicPropertyIdent="tm_singlquest_text" applicPropertyType="condition" applicPropertyValue="Single Choice Question"/>
|
||||
<assign applicPropertyIdent="tm_sequenquest_text" applicPropertyType="condition" applicPropertyValue="Sequencing Question"/>
|
||||
<assign applicPropertyIdent="tm_mathingquest_text" applicPropertyType="condition" applicPropertyValue="Matching Question"/>
|
||||
<assign applicPropertyIdent="tm_quest_text" applicPropertyType="condition" applicPropertyValue=" Question " />
|
||||
<assign applicPropertyIdent="tm_questof_text" applicPropertyType="condition" applicPropertyValue=" of " />
|
||||
<assign applicPropertyIdent="tm_questbtnext_text" applicPropertyType="condition" applicPropertyValue="Next" />
|
||||
<assign applicPropertyIdent="tm_questbtchk_text" applicPropertyType="condition" applicPropertyValue="Check" />
|
||||
</product>
|
||||
</productCrossRefTable>
|
||||
</content>
|
||||
</dmodule>
|
||||
@@ -0,0 +1,528 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><!--Arbortext, Inc., 1988-2010, v.4002-->
|
||||
<dmodule xsi:noNamespaceSchemaLocation="http://www.s1000d.org/S1000D_4-1/xml_schema_flat/prdcrossreftable.xsd"
|
||||
xmlns:dc="http://www.purl.org/dc/elements/1.1/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<rdf:Description>
|
||||
<dc:creator>SF815</dc:creator>
|
||||
<dc:title>Content profile - Products cross-reference table</dc:title>
|
||||
<dc:subject>Mountain bicycle - Products cross-reference table</dc:subject>
|
||||
<dc:publisher>SF815</dc:publisher>
|
||||
<dc:contributor>SF815</dc:contributor>
|
||||
<dc:date>2008-08-01</dc:date>
|
||||
<dc:type>text</dc:type>
|
||||
<dc:format>text/xml</dc:format>
|
||||
<dc:identifier>S1000DSTUDIO-AAA-D20-00-00-00AA-00PA-D_004-00</dc:identifier>
|
||||
<dc:language>en-GB</dc:language>
|
||||
<dc:rights>01</dc:rights>
|
||||
</rdf:Description>
|
||||
<identAndStatusSection>
|
||||
<dmAddress>
|
||||
<dmIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00P" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DSTUDIO" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
<language countryIsoCode="GB" languageIsoCode="en"/>
|
||||
<issueInfo inWork="00" issueNumber="004"/>
|
||||
</dmIdent>
|
||||
<dmAddressItems>
|
||||
<issueDate day="01" month="08" year="2008"/>
|
||||
<dmTitle>
|
||||
<techName>Content profile</techName>
|
||||
<infoName>Products cross-reference table</infoName>
|
||||
</dmTitle>
|
||||
</dmAddressItems>
|
||||
</dmAddress>
|
||||
<dmStatus issueType="revised">
|
||||
<security securityClassification="01"/>
|
||||
<responsiblePartnerCompany enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</responsiblePartnerCompany>
|
||||
<originator enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</originator>
|
||||
<applicCrossRefTableRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-00WA-D" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00W" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</applicCrossRefTableRef>
|
||||
<applic>
|
||||
<displayText>
|
||||
<simplePara>All</simplePara>
|
||||
</displayText>
|
||||
</applic>
|
||||
<brexDmRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-022A-D_007-00" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="022" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D00" systemDiffCode="AAA"/>
|
||||
<issueInfo inWork="00" issueNumber="007"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</brexDmRef>
|
||||
<qualityAssurance>
|
||||
<firstVerification verificationType="ttandoo"/>
|
||||
</qualityAssurance>
|
||||
</dmStatus>
|
||||
</identAndStatusSection>
|
||||
<content>
|
||||
<productCrossRefTable>
|
||||
<product id="ContentProfile1">
|
||||
<assign applicPropertyIdent="contentprofileid" applicPropertyType="prodattr" applicPropertyValue="1212B070643ASD"/>
|
||||
<assign applicPropertyIdent="contentprofilename" applicPropertyType="prodattr" applicPropertyValue="DEFAULT"/>
|
||||
<!-- settings_defaultcommentqueryMI
|
||||
Идентификационный код модели по умолчанию для Комментария
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryMI" applicPropertyType="condition" applicPropertyValue="DA42T"/>
|
||||
<!-- settings_defaultcommentqueryIssuer
|
||||
Издатель Комментария по умолчанию
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryIssuer" applicPropertyType="condition" applicPropertyValue="UWCAD"/>
|
||||
<!-- settings_commentlangs
|
||||
список допустимых языков при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentlangs" applicPropertyType="condition" applicPropertyValue="ru,en"/>
|
||||
<!-- settings_commentcountries
|
||||
список допустимых стран при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentcountries" applicPropertyType="condition" applicPropertyValue="RU,GB"/>
|
||||
<!-- format_xslType с BRDP-S1-00473 по BRDP-S1-00479
|
||||
S1000D
|
||||
MILSTD
|
||||
GOST18675-2012
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_xslType" applicPropertyType="condition" applicPropertyValue="S1000D"/>
|
||||
<!-- format_csspagestyle BRDP-S1-00492
|
||||
doublecolumn1
|
||||
singlecolumn1
|
||||
singlecolumn2
|
||||
Основной параметр определяющий:
|
||||
число колонок
|
||||
нумерацию заголовков
|
||||
оформление заголовков
|
||||
оформление основного параграфа
|
||||
отсутпы и т.д.
|
||||
Сейчас надо стелать 3 варианта, остальное в течении жизни
|
||||
-->
|
||||
<assign applicPropertyIdent="format_csspagestyle" applicPropertyType="condition" applicPropertyValue="singlecolumn1"/>
|
||||
<!-- format_dmtitle BRDP-S1-00496
|
||||
onelinedot - в одну строку через точку
|
||||
onelinedash - в одну строку через тире
|
||||
twoline - в две строки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitle" applicPropertyType="condition" applicPropertyValue="onelinedash"/>
|
||||
<!--format_dmend BRDP-S1-00490
|
||||
dmend
|
||||
dmendplusdmtitle
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmend" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_procsteptitle BRDP-S1-00494
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_crewsteptitle BRDP-S1-00495
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_crewsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_toc BRDP-S1-00497
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_toc" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_lot BRDP-S1-00498
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lot" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_lof BRDP-S1-00500
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lof" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_levparatitle BRDP-S1-00503
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_levparatitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_procstepnumber BRDP-S1-00504
|
||||
numeric
|
||||
alphabetic
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procstepnumber" applicPropertyType="condition" applicPropertyValue="numeric"/>
|
||||
<!-- format_stepindent BRDP-S1-00506
|
||||
0 - не использовать отступ
|
||||
1 - использовать отступ
|
||||
-->
|
||||
<assign applicPropertyIdent="format_stepindent" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_randlistitemprefix BRDP-S1-00507
|
||||
0 - как в модуле
|
||||
1 - форсировать схема 1 (-,.,-)
|
||||
2 - форсировать (-,-,-)
|
||||
3 - форсировать (.,.,.)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_randlistitemprefix" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_footnotemarker BRDP-S1-00508
|
||||
superscript - верхний регистр
|
||||
brackets - скобки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotemarker" applicPropertyType="condition" applicPropertyValue="superscript"/>
|
||||
<!-- format_footnoteplace BRDP-S1-00509
|
||||
dmend - в конце МД
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnoteplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_footnotetableplace BRDP-S1-00510
|
||||
dmend - в конце МД
|
||||
tableend - в конце таблицы
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotetableplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_formaltablevertsep BRDP-S1-00511
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_formaltablevertsep" applicPropertyType="condition" applicPropertyValue="false"/>
|
||||
<!-- format_fuguresheets BRDP-S1-00512
|
||||
textdelim - (Лист 1 из 2)
|
||||
slashdelim (Лист 1/2)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_fuguresheets" applicPropertyType="condition" applicPropertyValue="textdelim"/>
|
||||
<!-- format_wcsymbols BRDP-S1-00514
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcsymbols" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_wcn BRDP-S1-00515
|
||||
textual - Только текст или с рамками
|
||||
symbol1 - схема c подложками заполнителей
|
||||
color1 - схема c заливкой цветом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcn" applicPropertyType="condition" applicPropertyValue="symbol1"/>
|
||||
<!-- format_notenumbers BRDP-S1-00516
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_notenumbers" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_changes BRDP-S1-00517
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать черной чертой слева
|
||||
2 - отображать светло-желтым цветом фона элемента
|
||||
3 - отображать по цветам (add-green, modify-yellow,delete-red)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_changes" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_dmtitleinrefstable BRDP-S1-00520
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitleinrefstable" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_pmtitleinrefs BRDP-S1-00521
|
||||
0 - не отображать
|
||||
1 - отображать pmtitle
|
||||
2 - отображать shortpmtitle
|
||||
3 - отображать оба
|
||||
-->
|
||||
<assign applicPropertyIdent="format_pmtitleinrefs" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_refssequence BRDP-S1-00522
|
||||
asis
|
||||
codeup
|
||||
codedown
|
||||
dmpmextpub
|
||||
-->
|
||||
<assign applicPropertyIdent="format_refssequence" applicPropertyType="condition" applicPropertyValue="dmpmextpub"/>
|
||||
<!-- format_prelreqnames BRDP-S1-00524
|
||||
name - Только имя
|
||||
shortname - Только короткое имя
|
||||
nameandshort - Оба Имя (короткое имя)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_prelreqnames" applicPropertyType="condition" applicPropertyValue="name"/>
|
||||
<!-- format_inlineapplic BRDP-S1-00525
|
||||
pre - Перед элементом
|
||||
post - Внутри элемента
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplic" applicPropertyType="condition" applicPropertyValue="post"/>
|
||||
<!-- format_inlineapplicbold BRDP-S1-00526
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplicbold" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<assign applicPropertyIdent="tm_refs_text" applicPropertyType="condition" applicPropertyValue="References"/>
|
||||
<assign applicPropertyIdent="tm_ident_text" applicPropertyType="condition" applicPropertyValue="Identification"/>
|
||||
<assign applicPropertyIdent="tm_ref_text" applicPropertyType="condition" applicPropertyValue="Reference"/>
|
||||
<assign applicPropertyIdent="tm_footnotes_text" applicPropertyType="condition" applicPropertyValue="Footnotes"/>
|
||||
<assign applicPropertyIdent="tm_none_text" applicPropertyType="condition" applicPropertyValue="None"/>
|
||||
<assign applicPropertyIdent="tm_dmpm_text" applicPropertyType="condition" applicPropertyValue="Data Module/Technical Publication"/>
|
||||
<assign applicPropertyIdent="tm_title_text" applicPropertyType="condition" applicPropertyValue="Title"/>
|
||||
<assign applicPropertyIdent="tm_name_text" applicPropertyType="condition" applicPropertyValue="Name"/>
|
||||
<assign applicPropertyIdent="tm_altname_text" applicPropertyType="condition" applicPropertyValue="Alternate name"/>
|
||||
<assign applicPropertyIdent="tm_dm_text" applicPropertyType="condition" applicPropertyValue="Data module"/>
|
||||
<assign applicPropertyIdent="tm_dmc_text" applicPropertyType="condition" applicPropertyValue="Data module code"/>
|
||||
<assign applicPropertyIdent="tm_pmc_text" applicPropertyType="condition" applicPropertyValue="Publication module code"/>
|
||||
<assign applicPropertyIdent="tm_idssection_text" applicPropertyType="condition" applicPropertyValue="Identification and Status Section"/>
|
||||
<assign applicPropertyIdent="tm_idsection_text" applicPropertyType="condition" applicPropertyValue="Identification Section"/>
|
||||
<assign applicPropertyIdent="tm_issue_text" applicPropertyType="condition" applicPropertyValue="Issue"/>
|
||||
<assign applicPropertyIdent="tm_statussection_text" applicPropertyType="condition" applicPropertyValue="Status Section"/>
|
||||
<assign applicPropertyIdent="tm_sequrity_text" applicPropertyType="condition" applicPropertyValue="Security"/>
|
||||
<assign applicPropertyIdent="tm_sequrityclass_text" applicPropertyType="condition" applicPropertyValue="Security Classification"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_01" applicPropertyType="condition" applicPropertyValue="UNCLASSIFIED"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_02" applicPropertyType="condition" applicPropertyValue="SECURITY CLASS 1"/>
|
||||
<assign applicPropertyIdent="tm_commclass_text" applicPropertyType="condition" applicPropertyValue="Commertial Classification"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc01" applicPropertyType="condition" applicPropertyValue="COMM CLASS 1"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc02" applicPropertyType="condition" applicPropertyValue="COMM CLASS 2"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc51" applicPropertyType="condition" applicPropertyValue="COMM CLASS 51"/>
|
||||
<assign applicPropertyIdent="tm_caveat_text" applicPropertyType="condition" applicPropertyValue="Caveat"/>
|
||||
<assign applicPropertyIdent="tm_caveat_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv01" applicPropertyType="condition" applicPropertyValue="CAVEAT 1"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv02" applicPropertyType="condition" applicPropertyValue="CAVEAT 2"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv51" applicPropertyType="condition" applicPropertyValue="CAVEAT 51"/>
|
||||
<assign applicPropertyIdent="tm_status_" applicPropertyType="condition" applicPropertyValue="New"/>
|
||||
<assign applicPropertyIdent="tm_status_new" applicPropertyType="condition" applicPropertyValue="New"/>
|
||||
<assign applicPropertyIdent="tm_status_changed" applicPropertyType="condition" applicPropertyValue="Changed"/>
|
||||
<assign applicPropertyIdent="tm_status_deleted" applicPropertyType="condition" applicPropertyValue="Deleted"/>
|
||||
<assign applicPropertyIdent="tm_status_revised" applicPropertyType="condition" applicPropertyValue="Revised"/>
|
||||
<assign applicPropertyIdent="tm_status_status" applicPropertyType="condition" applicPropertyValue="Status changed"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-revised" applicPropertyType="condition" applicPropertyValue="Reinstated-Revised"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-changed" applicPropertyType="condition" applicPropertyValue="Reinstated-Changed"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-status" applicPropertyType="condition" applicPropertyValue="Reinstated-Status Changed"/>
|
||||
<assign applicPropertyIdent="tm_issdate_text" applicPropertyType="condition" applicPropertyValue="Issue Date"/>
|
||||
<assign applicPropertyIdent="tm_rpc_text" applicPropertyType="condition" applicPropertyValue="Responsible Partner Company"/>
|
||||
<assign applicPropertyIdent="tm_orig_text" applicPropertyType="condition" applicPropertyValue="Originator"/>
|
||||
<assign applicPropertyIdent="tm_applic_text" applicPropertyType="condition" applicPropertyValue="Applicable to"/>
|
||||
<assign applicPropertyIdent="tm_brexdm_text" applicPropertyType="condition" applicPropertyValue="BREX Data Module"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_text" applicPropertyType="condition" applicPropertyValue="Quality Assurance"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_unverified" applicPropertyType="condition" applicPropertyValue="Unverified"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_firstVerification" applicPropertyType="condition" applicPropertyValue="First Verification"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_secondVerification" applicPropertyType="condition" applicPropertyValue="Second Verification"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_tabtop" applicPropertyType="condition" applicPropertyValue="Table Top"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_onobject" applicPropertyType="condition" applicPropertyValue="On Object"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_ttandoo" applicPropertyType="condition" applicPropertyValue="Table Top and On Object"/>
|
||||
<assign applicPropertyIdent="tm_contrlang_text" applicPropertyType="condition" applicPropertyValue="Country/Language"/>
|
||||
<assign applicPropertyIdent="tm_no_text" applicPropertyType="condition" applicPropertyValue="None"/>
|
||||
<assign applicPropertyIdent="tm_yes_text" applicPropertyType="condition" applicPropertyValue="Yes"/>
|
||||
<assign applicPropertyIdent="tm_referror_text" applicPropertyType="condition" applicPropertyValue="Referenced Data Module Not Found"/>
|
||||
<assign applicPropertyIdent="tm_figure_text" applicPropertyType="condition" applicPropertyValue="Fig"/>
|
||||
<assign applicPropertyIdent="tm_sheet_text" applicPropertyType="condition" applicPropertyValue="Sheet"/>
|
||||
<assign applicPropertyIdent="tm_multimedia_text" applicPropertyType="condition" applicPropertyValue="Multimedia"/>
|
||||
<assign applicPropertyIdent="tm_para_text" applicPropertyType="condition" applicPropertyValue="Para"/>
|
||||
<assign applicPropertyIdent="tm_procstep_text" applicPropertyType="condition" applicPropertyValue="Step"/>
|
||||
<assign applicPropertyIdent="tm_table_text" applicPropertyType="condition" applicPropertyValue="Table"/>
|
||||
<assign applicPropertyIdent="tm_zone_text" applicPropertyType="condition" applicPropertyValue="Zone"/>
|
||||
<assign applicPropertyIdent="tm_accpnl_text" applicPropertyType="condition" applicPropertyValue="Access point"/>
|
||||
<assign applicPropertyIdent="tm_supply_text" applicPropertyType="condition" applicPropertyValue="Supply"/>
|
||||
<assign applicPropertyIdent="tm_cb_text" applicPropertyType="condition" applicPropertyValue="CB"/>
|
||||
<assign applicPropertyIdent="tm_notfound_text" applicPropertyType="condition" applicPropertyValue="Not found"/>
|
||||
<assign applicPropertyIdent="tm_question_text" applicPropertyType="condition" applicPropertyValue="Question"/>
|
||||
<assign applicPropertyIdent="tm_answer_text" applicPropertyType="condition" applicPropertyValue="Answer"/>
|
||||
<assign applicPropertyIdent="tm_show_text" applicPropertyType="condition" applicPropertyValue="Show"/>
|
||||
<assign applicPropertyIdent="tm_type_text" applicPropertyType="condition" applicPropertyValue="Type"/>
|
||||
<assign applicPropertyIdent="tm_accpnltype_text" applicPropertyType="condition" applicPropertyValue="Access type"/>
|
||||
<assign applicPropertyIdent="tm_accessto_text" applicPropertyType="condition" applicPropertyValue="Access to"/>
|
||||
<assign applicPropertyIdent="tm_qty_text" applicPropertyType="condition" applicPropertyValue="Quantity"/>
|
||||
<assign applicPropertyIdent="tm_sunzone_text" applicPropertyType="condition" applicPropertyValue="Subzone"/>
|
||||
<assign applicPropertyIdent="tm_to_text" applicPropertyType="condition" applicPropertyValue="to"/>
|
||||
<assign applicPropertyIdent="tm_from_text" applicPropertyType="condition" applicPropertyValue="from"/>
|
||||
<assign applicPropertyIdent="tm_location_text" applicPropertyType="condition" applicPropertyValue="Location"/>
|
||||
<assign applicPropertyIdent="tm_accessfrom_text" applicPropertyType="condition" applicPropertyValue="Access from"/>
|
||||
<assign applicPropertyIdent="tm_prereqs_text" applicPropertyType="condition" applicPropertyValue="Preliminary requirements"/>
|
||||
<assign applicPropertyIdent="tm_prodmaint_text" applicPropertyType="condition" applicPropertyValue="Production Maintenance Data"/>
|
||||
<assign applicPropertyIdent="tm_trhldint_text" applicPropertyType="condition" applicPropertyValue="Threshold interval"/>
|
||||
<assign applicPropertyIdent="tm_wrkarealoc_text" applicPropertyType="condition" applicPropertyValue="Work area location"/>
|
||||
<assign applicPropertyIdent="tm_wrkloc_text" applicPropertyType="condition" applicPropertyValue="Work location"/>
|
||||
<assign applicPropertyIdent="tm_mnttaskduration_text" applicPropertyType="condition" applicPropertyValue="Maintenance task duration"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th01" applicPropertyType="condition" applicPropertyValue="FH"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th02" applicPropertyType="condition" applicPropertyValue="FC"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th03" applicPropertyType="condition" applicPropertyValue="M"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th04" applicPropertyType="condition" applicPropertyValue="W"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th05" applicPropertyType="condition" applicPropertyValue="Y"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th06" applicPropertyType="condition" applicPropertyValue="D"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th07" applicPropertyType="condition" applicPropertyValue="SS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th08" applicPropertyType="condition" applicPropertyValue="PRESS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th09" applicPropertyType="condition" applicPropertyValue="ENG CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th10" applicPropertyType="condition" applicPropertyValue="ENG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th11" applicPropertyType="condition" applicPropertyValue="SHOP VISITS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th12" applicPropertyType="condition" applicPropertyValue="APU CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th13" applicPropertyType="condition" applicPropertyValue="LG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th14" applicPropertyType="condition" applicPropertyValue="WHL CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th15" applicPropertyType="condition" applicPropertyValue="ENG START"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th16" applicPropertyType="condition" applicPropertyValue="APU HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th17" applicPropertyType="condition" applicPropertyValue="ENG HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th18" applicPropertyType="condition" applicPropertyValue="ELP HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th19" applicPropertyType="condition" applicPropertyValue="LDGs"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th20" applicPropertyType="condition" applicPropertyValue="OPER CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th21" applicPropertyType="condition" applicPropertyValue="OPER HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th22" applicPropertyType="condition" applicPropertyValue="SS HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th23" applicPropertyType="condition" applicPropertyValue="A CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th24" applicPropertyType="condition" applicPropertyValue="B CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th25" applicPropertyType="condition" applicPropertyValue="C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th26" applicPropertyType="condition" applicPropertyValue="D CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th27" applicPropertyType="condition" applicPropertyValue="DLY"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th28" applicPropertyType="condition" applicPropertyValue="E CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th29" applicPropertyType="condition" applicPropertyValue="OVRNGT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th30" applicPropertyType="condition" applicPropertyValue="PREFLT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th31" applicPropertyType="condition" applicPropertyValue="ROUTINE CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th32" applicPropertyType="condition" applicPropertyValue="S C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th33" applicPropertyType="condition" applicPropertyValue="SVC CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th34" applicPropertyType="condition" applicPropertyValue="TRANSIT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th35" applicPropertyType="condition" applicPropertyValue="KM"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th36" applicPropertyType="condition" applicPropertyValue="Q3"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th37" applicPropertyType="condition" applicPropertyValue="QL"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th38" applicPropertyType="condition" applicPropertyValue="SHOTS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th39" applicPropertyType="condition" applicPropertyValue="EFC"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp01" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp02" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp03" applicPropertyType="condition" applicPropertyValue="Station"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp04" applicPropertyType="condition" applicPropertyValue="Water line"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp05" applicPropertyType="condition" applicPropertyValue="Buttock line"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit01" applicPropertyType="condition" applicPropertyValue="Exact"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit02" applicPropertyType="condition" applicPropertyValue="Family"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl01" applicPropertyType="condition" applicPropertyValue="Door"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl02" applicPropertyType="condition" applicPropertyValue="Panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl03" applicPropertyType="condition" applicPropertyValue="Electrical panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl04" applicPropertyType="condition" applicPropertyValue="Hatch"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl05" applicPropertyType="condition" applicPropertyValue="Fillet"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi01" applicPropertyType="condition" applicPropertyValue="Frame"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi02" applicPropertyType="condition" applicPropertyValue="Rib"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi03" applicPropertyType="condition" applicPropertyValue="Stringer"/>
|
||||
<assign applicPropertyIdent="tm_condition_text" applicPropertyType="condition" applicPropertyValue="Action/Condition"/>
|
||||
<assign applicPropertyIdent="tm_reference_text" applicPropertyType="condition" applicPropertyValue="Reference"/>
|
||||
<assign applicPropertyIdent="tm_reqperson_text" applicPropertyType="condition" applicPropertyValue="Required persons"/>
|
||||
<assign applicPropertyIdent="tm_person_text" applicPropertyType="condition" applicPropertyValue="Person"/>
|
||||
<assign applicPropertyIdent="tm_cat_text" applicPropertyType="condition" applicPropertyValue="Category"/>
|
||||
<assign applicPropertyIdent="tm_tradecode_text" applicPropertyType="condition" applicPropertyValue="Trade/Trade code"/>
|
||||
<assign applicPropertyIdent="tm_skilllvl_text" applicPropertyType="condition" applicPropertyValue="Skill level"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk01" applicPropertyType="condition" applicPropertyValue="Basic"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk02" applicPropertyType="condition" applicPropertyValue="Intermediate"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk03" applicPropertyType="condition" applicPropertyValue="Advanced"/>
|
||||
<assign applicPropertyIdent="tm_esttime_text" applicPropertyType="condition" applicPropertyValue="Estimated time"/>
|
||||
<assign applicPropertyIdent="tm_applicto_text" applicPropertyType="condition" applicPropertyValue="Applicable to"/>
|
||||
<assign applicPropertyIdent="tm_model_text" applicPropertyType="condition" applicPropertyValue="Model"/>
|
||||
<assign applicPropertyIdent="tm_version_text" applicPropertyType="condition" applicPropertyValue="Version"/>
|
||||
<assign applicPropertyIdent="tm_supequip_text" applicPropertyType="condition" applicPropertyValue="Support equipment"/>
|
||||
<assign applicPropertyIdent="tm_manfac_text" applicPropertyType="condition" applicPropertyValue="Manufacturer"/>
|
||||
<assign applicPropertyIdent="tm_consumables_text" applicPropertyType="condition" applicPropertyValue="Consumables, materials and expendables"/>
|
||||
<assign applicPropertyIdent="tm_procedure_text" applicPropertyType="condition" applicPropertyValue="Procedure"/>
|
||||
<assign applicPropertyIdent="tm_spares_text" applicPropertyType="condition" applicPropertyValue="Spares"/>
|
||||
<assign applicPropertyIdent="tm_closecond_text" applicPropertyType="condition" applicPropertyValue="Requirements after job completion"/>
|
||||
<assign applicPropertyIdent="tm_stocknmbr_text" applicPropertyType="condition" applicPropertyValue="Stock number"/>
|
||||
<assign applicPropertyIdent="tm_partno_text" applicPropertyType="condition" applicPropertyValue="Part number"/>
|
||||
<assign applicPropertyIdent="tm_partn_text" applicPropertyType="condition" applicPropertyValue="Part No."/>
|
||||
<assign applicPropertyIdent="tm_serialno_text" applicPropertyType="condition" applicPropertyValue="Serial number"/>
|
||||
<assign applicPropertyIdent="tm_refid_text" applicPropertyType="condition" applicPropertyValue="Refs"/>
|
||||
<assign applicPropertyIdent="tm_remarks_text" applicPropertyType="condition" applicPropertyValue="Remarks"/>
|
||||
<assign applicPropertyIdent="tm_note_text" applicPropertyType="condition" applicPropertyValue="Note"/>
|
||||
<assign applicPropertyIdent="tm_warning_text" applicPropertyType="condition" applicPropertyValue="WARNING"/>
|
||||
<assign applicPropertyIdent="tm_danger_text" applicPropertyType="condition" applicPropertyValue="DANGER"/>
|
||||
<assign applicPropertyIdent="tm_caution_text" applicPropertyType="condition" applicPropertyValue="CAUTION"/>
|
||||
<assign applicPropertyIdent="tm_safcon_text" applicPropertyType="condition" applicPropertyValue="Safety conditions"/>
|
||||
<assign applicPropertyIdent="tm_isoendstep_text" applicPropertyType="condition" applicPropertyValue="End of isolation procedure"/>
|
||||
<assign applicPropertyIdent="tm_isoproc_text" applicPropertyType="condition" applicPropertyValue="Fault isolation procedure"/>
|
||||
<assign applicPropertyIdent="tm_description_text" applicPropertyType="condition" applicPropertyValue="Description"/>
|
||||
<assign applicPropertyIdent="tm_reqconds_text" applicPropertyType="condition" applicPropertyValue="Required conditions"/>
|
||||
<assign applicPropertyIdent="tm_schedule_text" applicPropertyType="condition" applicPropertyValue="Maintenance Planning"/>
|
||||
<assign applicPropertyIdent="tm_fault_text" applicPropertyType="condition" applicPropertyValue="Fault"/>
|
||||
<assign applicPropertyIdent="tm_faultreport_text" applicPropertyType="condition" applicPropertyValue="Fault Reporting"/>
|
||||
<assign applicPropertyIdent="tm_faultisolation_text" applicPropertyType="condition" applicPropertyValue="Fault Isolation"/>
|
||||
<assign applicPropertyIdent="tm_crewrefcard_text" applicPropertyType="condition" applicPropertyValue="Crew Reference Card"/>
|
||||
<assign applicPropertyIdent="tm_crewdescr_text" applicPropertyType="condition" applicPropertyValue="Description Attributed to Crew"/>
|
||||
<assign applicPropertyIdent="tm_commrep_text" applicPropertyType="condition" applicPropertyValue="Common Repository"/>
|
||||
<assign applicPropertyIdent="tm_comminfo_text" applicPropertyType="condition" applicPropertyValue="Common Information"/>
|
||||
<assign applicPropertyIdent="tm_endofdm_text" applicPropertyType="condition" applicPropertyValue="End of data module"/>
|
||||
<assign applicPropertyIdent="tm_ipp_text" applicPropertyType="condition" applicPropertyValue="Initial Provisioning Project"/>
|
||||
<assign applicPropertyIdent="tm_item_text" applicPropertyType="condition" applicPropertyValue="Item"/>
|
||||
<assign applicPropertyIdent="tm_upha_text" applicPropertyType="condition" applicPropertyValue="Units per NHA"/>
|
||||
<assign applicPropertyIdent="tm_uoi_text" applicPropertyType="condition" applicPropertyValue="UOM"/>
|
||||
<assign applicPropertyIdent="tm_design_text" applicPropertyType="condition" applicPropertyValue="Designation"/>
|
||||
<assign applicPropertyIdent="tm_ncage_text" applicPropertyType="condition" applicPropertyValue="NCAGE"/>
|
||||
<assign applicPropertyIdent="tm_nsn_text" applicPropertyType="condition" applicPropertyValue="NSN"/>
|
||||
<assign applicPropertyIdent="tm_nomen_text" applicPropertyType="condition" applicPropertyValue="Nomenclature"/>
|
||||
<assign applicPropertyIdent="tm_uoc_text" applicPropertyType="condition" applicPropertyValue="UOC"/>
|
||||
<assign applicPropertyIdent="tm_mv_text" applicPropertyType="condition" applicPropertyValue="MV"/>
|
||||
<assign applicPropertyIdent="tm_effect_text" applicPropertyType="condition" applicPropertyValue="Effect."/>
|
||||
<assign applicPropertyIdent="tm_notill_text" applicPropertyType="condition" applicPropertyValue="Not Illustrated"/>
|
||||
<assign applicPropertyIdent="tm_reftype_" applicPropertyType="condition" applicPropertyValue="Refer to"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft01" applicPropertyType="condition" applicPropertyValue="Refer to NHA"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft02" applicPropertyType="condition" applicPropertyValue="Refer to details"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft05" applicPropertyType="condition" applicPropertyValue="Attaching part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft03" applicPropertyType="condition" applicPropertyValue="Equivalent part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft04" applicPropertyType="condition" applicPropertyValue="Substitute part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft06" applicPropertyType="condition" applicPropertyValue="Removal/Installation part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft07" applicPropertyType="condition" applicPropertyValue="Select from part(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft08" applicPropertyType="condition" applicPropertyValue="Oversize/Undersize"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft09" applicPropertyType="condition" applicPropertyValue="Connecting item(s)"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft10" applicPropertyType="condition" applicPropertyValue="Breakdown"/>
|
||||
<assign applicPropertyIdent="tm_ipc_text" applicPropertyType="condition" applicPropertyValue="Illustrated Parts Catalog"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm01" applicPropertyType="condition" applicPropertyValue="All"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm02" applicPropertyType="condition" applicPropertyValue="P"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm03" applicPropertyType="condition" applicPropertyValue="CP"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm04" applicPropertyType="condition" applicPropertyValue="N"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm05" applicPropertyType="condition" applicPropertyValue="E"/>
|
||||
<assign applicPropertyIdent="tm_if_text" applicPropertyType="condition" applicPropertyValue="If"/>
|
||||
<assign applicPropertyIdent="tm_case_text" applicPropertyType="condition" applicPropertyValue="Case"/>
|
||||
<assign applicPropertyIdent="tm_elseif_text" applicPropertyType="condition" applicPropertyValue="Else if"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_text" applicPropertyType="condition" applicPropertyValue="Comment priority"/>
|
||||
<assign applicPropertyIdent="tm_commorig_text" applicPropertyType="condition" applicPropertyValue="Comment originator"/>
|
||||
<assign applicPropertyIdent="tm_entName_text" applicPropertyType="condition" applicPropertyValue="Originator name"/>
|
||||
<assign applicPropertyIdent="tm_division_text" applicPropertyType="condition" applicPropertyValue="Division"/>
|
||||
<assign applicPropertyIdent="tm_entUnit_text" applicPropertyType="condition" applicPropertyValue="Enterprise Unit"/>
|
||||
<assign applicPropertyIdent="tm_LastName_text" applicPropertyType="condition" applicPropertyValue="Last Name"/>
|
||||
<assign applicPropertyIdent="tm_FirstName_text" applicPropertyType="condition" applicPropertyValue="First Name"/>
|
||||
<assign applicPropertyIdent="tm_JobTitle_text" applicPropertyType="condition" applicPropertyValue="Job Title"/>
|
||||
<assign applicPropertyIdent="tm_department_text" applicPropertyType="condition" applicPropertyValue="Department"/>
|
||||
<assign applicPropertyIdent="tm_street_text" applicPropertyType="condition" applicPropertyValue="Street"/>
|
||||
<assign applicPropertyIdent="tm_pobox_text" applicPropertyType="condition" applicPropertyValue="PO Box"/>
|
||||
<assign applicPropertyIdent="tm_poZipCode_text" applicPropertyType="condition" applicPropertyValue="Postal ZIP Code"/>
|
||||
<assign applicPropertyIdent="tm_city_text" applicPropertyType="condition" applicPropertyValue="City"/>
|
||||
<assign applicPropertyIdent="tm_country_text" applicPropertyType="condition" applicPropertyValue="Country"/>
|
||||
<assign applicPropertyIdent="tm_state_text" applicPropertyType="condition" applicPropertyValue="State"/>
|
||||
<assign applicPropertyIdent="tm_province_text" applicPropertyType="condition" applicPropertyValue="Province"/>
|
||||
<assign applicPropertyIdent="tm_building_text" applicPropertyType="condition" applicPropertyValue="Building"/>
|
||||
<assign applicPropertyIdent="tm_room_text" applicPropertyType="condition" applicPropertyValue="Room"/>
|
||||
<assign applicPropertyIdent="tm_phoneNumber_text" applicPropertyType="condition" applicPropertyValue="Phone number"/>
|
||||
<assign applicPropertyIdent="tm_faxNumber_text" applicPropertyType="condition" applicPropertyValue="Fax number"/>
|
||||
<assign applicPropertyIdent="tm_email_text" applicPropertyType="condition" applicPropertyValue="e-mail"/>
|
||||
<assign applicPropertyIdent="tm_internet_text" applicPropertyType="condition" applicPropertyValue="Website"/>
|
||||
<assign applicPropertyIdent="tm_SITA_text" applicPropertyType="condition" applicPropertyValue="SITA"/>
|
||||
<assign applicPropertyIdent="tm_commrefs_text" applicPropertyType="condition" applicPropertyValue="Comment references"/>
|
||||
<assign applicPropertyIdent="tm_commcontent_text" applicPropertyType="condition" applicPropertyValue="Comment content"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp01" applicPropertyType="condition" applicPropertyValue="Routine"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp02" applicPropertyType="condition" applicPropertyValue="Emergency"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp03" applicPropertyType="condition" applicPropertyValue="Safety critical"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt01" applicPropertyType="condition" applicPropertyValue="Accepted"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt02" applicPropertyType="condition" applicPropertyValue="Pending"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt03" applicPropertyType="condition" applicPropertyValue="Partially accepted"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt04" applicPropertyType="condition" applicPropertyValue="Rejected"/>
|
||||
<assign applicPropertyIdent="tm_pm_text" applicPropertyType="condition" applicPropertyValue="Publication module"/>
|
||||
<assign applicPropertyIdent="tm_comc_text" applicPropertyType="condition" applicPropertyValue="Comment code"/>
|
||||
<assign applicPropertyIdent="tm_gotoclosereqs_text" applicPropertyType="condition" applicPropertyValue="Goto requirements after job completion"/>
|
||||
<assign applicPropertyIdent="tm_goto_text" applicPropertyType="condition" applicPropertyValue="Goto"/>
|
||||
<assign applicPropertyIdent="tm_faultcode_text" applicPropertyType="condition" applicPropertyValue="Fault code"/>
|
||||
<assign applicPropertyIdent="tm_techinfo_text" applicPropertyType="condition" applicPropertyValue="Based on"/>
|
||||
<assign applicPropertyIdent="tm_multpquest_text" applicPropertyType="condition" applicPropertyValue="Multiple Choice Question"/>
|
||||
<assign applicPropertyIdent="tm_singlquest_text" applicPropertyType="condition" applicPropertyValue="Single Choice Question"/>
|
||||
<assign applicPropertyIdent="tm_sequenquest_text" applicPropertyType="condition" applicPropertyValue="Sequencing Question"/>
|
||||
<assign applicPropertyIdent="tm_mathingquest_text" applicPropertyType="condition" applicPropertyValue="Matching Question"/>
|
||||
<assign applicPropertyIdent="tm_quest_text" applicPropertyType="condition" applicPropertyValue="Question " />
|
||||
<assign applicPropertyIdent="tm_questof_text" applicPropertyType="condition" applicPropertyValue=" of " />
|
||||
<assign applicPropertyIdent="tm_questbtnext_text" applicPropertyType="condition" applicPropertyValue="Next" />
|
||||
<assign applicPropertyIdent="tm_questbtchk_text" applicPropertyType="condition" applicPropertyValue="Check" />
|
||||
</product>
|
||||
</productCrossRefTable>
|
||||
</content>
|
||||
</dmodule>
|
||||
@@ -0,0 +1,528 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><!--Arbortext, Inc., 1988-2010, v.4002-->
|
||||
<dmodule xsi:noNamespaceSchemaLocation="http://www.s1000d.org/S1000D_4-1/xml_schema_flat/prdcrossreftable.xsd"
|
||||
xmlns:dc="http://www.purl.org/dc/elements/1.1/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<rdf:Description>
|
||||
<dc:creator>SF815</dc:creator>
|
||||
<dc:title>Content profile - Products cross-reference table</dc:title>
|
||||
<dc:subject>Mountain bicycle - Products cross-reference table</dc:subject>
|
||||
<dc:publisher>SF815</dc:publisher>
|
||||
<dc:contributor>SF815</dc:contributor>
|
||||
<dc:date>2008-08-01</dc:date>
|
||||
<dc:type>text</dc:type>
|
||||
<dc:format>text/xml</dc:format>
|
||||
<dc:identifier>S1000DSTUDIO-AAA-D20-00-00-00AA-00PA-D_004-00</dc:identifier>
|
||||
<dc:language>en-US</dc:language>
|
||||
<dc:rights>01</dc:rights>
|
||||
</rdf:Description>
|
||||
<identAndStatusSection>
|
||||
<dmAddress>
|
||||
<dmIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00P" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DSTUDIO" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
<language countryIsoCode="RU" languageIsoCode="ru"/>
|
||||
<issueInfo inWork="00" issueNumber="004"/>
|
||||
</dmIdent>
|
||||
<dmAddressItems>
|
||||
<issueDate day="01" month="08" year="2008"/>
|
||||
<dmTitle>
|
||||
<techName>Профиль содержимого</techName>
|
||||
<infoName>Таблица перекрестных ссылок на объект</infoName>
|
||||
</dmTitle>
|
||||
</dmAddressItems>
|
||||
</dmAddress>
|
||||
<dmStatus issueType="revised">
|
||||
<security securityClassification="01"/>
|
||||
<responsiblePartnerCompany enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</responsiblePartnerCompany>
|
||||
<originator enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</originator>
|
||||
<applicCrossRefTableRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-00WA-D" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00W" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</applicCrossRefTableRef>
|
||||
<applic>
|
||||
<displayText>
|
||||
<simplePara>All</simplePara>
|
||||
</displayText>
|
||||
</applic>
|
||||
<brexDmRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-022A-D_007-00" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="022" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D00" systemDiffCode="AAA"/>
|
||||
<issueInfo inWork="00" issueNumber="007"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</brexDmRef>
|
||||
<qualityAssurance>
|
||||
<firstVerification verificationType="ttandoo"/>
|
||||
</qualityAssurance>
|
||||
</dmStatus>
|
||||
</identAndStatusSection>
|
||||
<content>
|
||||
<productCrossRefTable>
|
||||
<product id="ContentProfile1">
|
||||
<assign applicPropertyIdent="contentprofileid" applicPropertyType="prodattr" applicPropertyValue="1212B070643ASD"/>
|
||||
<assign applicPropertyIdent="contentprofilename" applicPropertyType="prodattr" applicPropertyValue="DEFAULT"/>
|
||||
<!-- settings_defaultcommentqueryMI
|
||||
Идентификационный код модели по умолчанию для Комментария
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryMI" applicPropertyType="condition" applicPropertyValue="DA42T"/>
|
||||
<!-- settings_defaultcommentqueryIssuer
|
||||
Издатель Комментария по умолчанию
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryIssuer" applicPropertyType="condition" applicPropertyValue="UWCAD"/>
|
||||
<!-- settings_commentlangs
|
||||
список допустимых языков при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentlangs" applicPropertyType="condition" applicPropertyValue="ru,en"/>
|
||||
<!-- settings_commentcountries
|
||||
список допустимых стран при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentcountries" applicPropertyType="condition" applicPropertyValue="RU,GB"/>
|
||||
<!-- format_xslType с BRDP-S1-00473 по BRDP-S1-00479
|
||||
S1000D
|
||||
MILSTD
|
||||
GOST18675-2012
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_xslType" applicPropertyType="condition" applicPropertyValue="S1000D"/>
|
||||
<!-- format_csspagestyle BRDP-S1-00492
|
||||
doublecolumn1
|
||||
singlecolumn1
|
||||
singlecolumn2
|
||||
Основной параметр определяющий:
|
||||
число колонок
|
||||
нумерацию заголовков
|
||||
оформление заголовков
|
||||
оформление основного параграфа
|
||||
отсутпы и т.д.
|
||||
Сейчас надо стелать 3 варианта, остальное в течении жизни
|
||||
-->
|
||||
<assign applicPropertyIdent="format_csspagestyle" applicPropertyType="condition" applicPropertyValue="singlecolumn1"/>
|
||||
<!-- format_dmtitle BRDP-S1-00496
|
||||
onelinedot - в одну строку через точку
|
||||
onelinedash - в одну строку через тире
|
||||
twoline - в две строки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitle" applicPropertyType="condition" applicPropertyValue="onelinedash"/>
|
||||
<!--format_dmend BRDP-S1-00490
|
||||
dmend
|
||||
dmendplusdmtitle
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmend" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_procsteptitle BRDP-S1-00494
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_crewsteptitle BRDP-S1-00495
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_crewsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_toc BRDP-S1-00497
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_toc" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_lot BRDP-S1-00498
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lot" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_lof BRDP-S1-00500
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lof" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_levparatitle BRDP-S1-00503
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_levparatitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_procstepnumber BRDP-S1-00504
|
||||
numeric
|
||||
alphabetic
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procstepnumber" applicPropertyType="condition" applicPropertyValue="numeric"/>
|
||||
<!-- format_stepindent BRDP-S1-00506
|
||||
0 - не использовать отступ
|
||||
1 - использовать отступ
|
||||
-->
|
||||
<assign applicPropertyIdent="format_stepindent" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_randlistitemprefix BRDP-S1-00507
|
||||
0 - как в модуле
|
||||
1 - форсировать схема 1 (-,.,-)
|
||||
2 - форсировать (-,-,-)
|
||||
3 - форсировать (.,.,.)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_randlistitemprefix" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_footnotemarker BRDP-S1-00508
|
||||
superscript - верхний регистр
|
||||
brackets - скобки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotemarker" applicPropertyType="condition" applicPropertyValue="superscript"/>
|
||||
<!-- format_footnoteplace BRDP-S1-00509
|
||||
dmend - в конце МД
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnoteplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_footnotetableplace BRDP-S1-00510
|
||||
dmend - в конце МД
|
||||
tableend - в конце таблицы
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotetableplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_formaltablevertsep BRDP-S1-00511
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_formaltablevertsep" applicPropertyType="condition" applicPropertyValue="false"/>
|
||||
<!-- format_fuguresheets BRDP-S1-00512
|
||||
textdelim - (Лист 1 из 2)
|
||||
slashdelim (Лист 1/2)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_fuguresheets" applicPropertyType="condition" applicPropertyValue="textdelim"/>
|
||||
<!-- format_wcsymbols BRDP-S1-00514
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcsymbols" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_wcn BRDP-S1-00515
|
||||
textual - Только текст или с рамками
|
||||
symbol1 - схема c подложками заполнителей
|
||||
color1 - схема c заливкой цветом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcn" applicPropertyType="condition" applicPropertyValue="symbol1"/>
|
||||
<!-- format_notenumbers BRDP-S1-00516
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_notenumbers" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_changes BRDP-S1-00517
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать черной чертой слева
|
||||
2 - отображать светло-желтым цветом фона элемента
|
||||
3 - отображать по цветам (add-green, modify-yellow,delete-red)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_changes" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_dmtitleinrefstable BRDP-S1-00520
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitleinrefstable" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_pmtitleinrefs BRDP-S1-00521
|
||||
0 - не отображать
|
||||
1 - отображать pmtitle
|
||||
2 - отображать shortpmtitle
|
||||
3 - отображать оба
|
||||
-->
|
||||
<assign applicPropertyIdent="format_pmtitleinrefs" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_refssequence BRDP-S1-00522
|
||||
asis
|
||||
codeup
|
||||
codedown
|
||||
dmpmextpub
|
||||
-->
|
||||
<assign applicPropertyIdent="format_refssequence" applicPropertyType="condition" applicPropertyValue="dmpmextpub"/>
|
||||
<!-- format_prelreqnames BRDP-S1-00524
|
||||
name - Только имя
|
||||
shortname - Только короткое имя
|
||||
nameandshort - Оба Имя (короткое имя)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_prelreqnames" applicPropertyType="condition" applicPropertyValue="name"/>
|
||||
<!-- format_inlineapplic BRDP-S1-00525
|
||||
pre - Перед элементом
|
||||
post - Внутри элемента
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplic" applicPropertyType="condition" applicPropertyValue="post"/>
|
||||
<!-- format_inlineapplicbold BRDP-S1-00526
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="tm_refs_text" applicPropertyType="condition" applicPropertyValue="Referencias"/>
|
||||
<assign applicPropertyIdent="tm_ident_text" applicPropertyType="condition" applicPropertyValue="Identificador"/>
|
||||
<assign applicPropertyIdent="tm_ref_text" applicPropertyType="condition" applicPropertyValue="Referencia"/>
|
||||
<assign applicPropertyIdent="tm_footnotes_text" applicPropertyType="condition" applicPropertyValue="Remisiones"/>
|
||||
<assign applicPropertyIdent="tm_none_text" applicPropertyType="condition" applicPropertyValue="No"/>
|
||||
<assign applicPropertyIdent="tm_dmpm_text" applicPropertyType="condition" applicPropertyValue="Módulo de datos/Publicación técnica"/>
|
||||
<assign applicPropertyIdent="tm_title_text" applicPropertyType="condition" applicPropertyValue="Título"/>
|
||||
<assign applicPropertyIdent="tm_name_text" applicPropertyType="condition" applicPropertyValue="Denominación"/>
|
||||
<assign applicPropertyIdent="tm_altname_text" applicPropertyType="condition" applicPropertyValue="Denominación alternativa"/>
|
||||
<assign applicPropertyIdent="tm_dm_text" applicPropertyType="condition" applicPropertyValue="Módulo de datos"/>
|
||||
<assign applicPropertyIdent="tm_dmc_text" applicPropertyType="condition" applicPropertyValue="Código del Módulo de datos"/>
|
||||
<assign applicPropertyIdent="tm_pmc_text" applicPropertyType="condition" applicPropertyValue="Código del Módulo de publicación"/>
|
||||
<assign applicPropertyIdent="tm_idssection_text" applicPropertyType="condition" applicPropertyValue="Parte de identificación y estado"/>
|
||||
<assign applicPropertyIdent="tm_idsection_text" applicPropertyType="condition" applicPropertyValue="Parte de identificación"/>
|
||||
<assign applicPropertyIdent="tm_issue_text" applicPropertyType="condition" applicPropertyValue="Edición"/>
|
||||
<assign applicPropertyIdent="tm_statussection_text" applicPropertyType="condition" applicPropertyValue="Parte de estado"/>
|
||||
<assign applicPropertyIdent="tm_sequrity_text" applicPropertyType="condition" applicPropertyValue="Seguridad"/>
|
||||
<assign applicPropertyIdent="tm_sequrityclass_text" applicPropertyType="condition" applicPropertyValue="Clasificación de seguridad"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_01" applicPropertyType="condition" applicPropertyValue="NO CLASIFICADO"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_02" applicPropertyType="condition" applicPropertyValue="Clasificación 1"/>
|
||||
<assign applicPropertyIdent="tm_commclass_text" applicPropertyType="condition" applicPropertyValue="Clasificación de seguridad comercial"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc01" applicPropertyType="condition" applicPropertyValue="CLASIF. COM. 1"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc02" applicPropertyType="condition" applicPropertyValue="CLASIF. COM. 2"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc51" applicPropertyType="condition" applicPropertyValue="CLASIF. COM. 51"/>
|
||||
<assign applicPropertyIdent="tm_caveat_text" applicPropertyType="condition" applicPropertyValue="LIMITACIÓN"/>
|
||||
<assign applicPropertyIdent="tm_caveat_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv01" applicPropertyType="condition" applicPropertyValue="LIMITACIÓN 1"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv02" applicPropertyType="condition" applicPropertyValue="LIMITACIÓNЕ 2"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv51" applicPropertyType="condition" applicPropertyValue="LIMITACIÓN 51"/>
|
||||
<assign applicPropertyIdent="tm_status_" applicPropertyType="condition" applicPropertyValue="Nevo"/>
|
||||
<assign applicPropertyIdent="tm_status_new" applicPropertyType="condition" applicPropertyValue="Nuevo"/>
|
||||
<assign applicPropertyIdent="tm_status_changed" applicPropertyType="condition" applicPropertyValue="Modificado"/>
|
||||
<assign applicPropertyIdent="tm_status_deleted" applicPropertyType="condition" applicPropertyValue="Eliminado"/>
|
||||
<assign applicPropertyIdent="tm_status_revised" applicPropertyType="condition" applicPropertyValue="Revisado"/>
|
||||
<assign applicPropertyIdent="tm_status_status" applicPropertyType="condition" applicPropertyValue="Estado modificado"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-revised" applicPropertyType="condition" applicPropertyValue="Restablecido-Revisado"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-changed" applicPropertyType="condition" applicPropertyValue="Restablecido-Modificado"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-status" applicPropertyType="condition" applicPropertyValue="Restablecido-Estado modificado"/>
|
||||
<assign applicPropertyIdent="tm_issdate_text" applicPropertyType="condition" applicPropertyValue="Fecha de edición"/>
|
||||
<assign applicPropertyIdent="tm_rpc_text" applicPropertyType="condition" applicPropertyValue="Compañía responsable"/>
|
||||
<assign applicPropertyIdent="tm_orig_text" applicPropertyType="condition" applicPropertyValue="Elaborador"/>
|
||||
<assign applicPropertyIdent="tm_applic_text" applicPropertyType="condition" applicPropertyValue="Aplicable a"/>
|
||||
<assign applicPropertyIdent="tm_brexdm_text" applicPropertyType="condition" applicPropertyValue="МД BREX"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_text" applicPropertyType="condition" applicPropertyValue="Calidad garantizada"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_unverified" applicPropertyType="condition" applicPropertyValue="No verificado"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_firstVerification" applicPropertyType="condition" applicPropertyValue="Primera verificación"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_secondVerification" applicPropertyType="condition" applicPropertyValue="Segunda verificación"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_tabtop" applicPropertyType="condition" applicPropertyValue="en la mesa"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_onobject" applicPropertyType="condition" applicPropertyValue="en la mesa y en sitio"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_ttandoo" applicPropertyType="condition" applicPropertyValue="en la mesa y en sitio"/>
|
||||
<assign applicPropertyIdent="tm_contrlang_text" applicPropertyType="condition" applicPropertyValue="País/Idioma"/>
|
||||
<assign applicPropertyIdent="tm_no_text" applicPropertyType="condition" applicPropertyValue="No"/>
|
||||
<assign applicPropertyIdent="tm_yes_text" applicPropertyType="condition" applicPropertyValue="Sí"/>
|
||||
<assign applicPropertyIdent="tm_referror_text" applicPropertyType="condition" applicPropertyValue="Módulo de referencia no encontrado"/>
|
||||
<assign applicPropertyIdent="tm_figure_text" applicPropertyType="condition" applicPropertyValue="Fig"/>
|
||||
<assign applicPropertyIdent="tm_sheet_text" applicPropertyType="condition" applicPropertyValue="Hoja"/>
|
||||
<assign applicPropertyIdent="tm_multimedia_text" applicPropertyType="condition" applicPropertyValue="Multimedia"/>
|
||||
<assign applicPropertyIdent="tm_para_text" applicPropertyType="condition" applicPropertyValue="Párrafo"/>
|
||||
<assign applicPropertyIdent="tm_procstep_text" applicPropertyType="condition" applicPropertyValue="Paso"/>
|
||||
<assign applicPropertyIdent="tm_table_text" applicPropertyType="condition" applicPropertyValue="Tabla"/>
|
||||
<assign applicPropertyIdent="tm_zone_text" applicPropertyType="condition" applicPropertyValue="Zona"/>
|
||||
<assign applicPropertyIdent="tm_accpnl_text" applicPropertyType="condition" applicPropertyValue="Punto de acceso"/>
|
||||
<assign applicPropertyIdent="tm_supply_text" applicPropertyType="condition" applicPropertyValue="Material"/>
|
||||
<assign applicPropertyIdent="tm_cb_text" applicPropertyType="condition" applicPropertyValue="АЗС"/>
|
||||
<assign applicPropertyIdent="tm_notfound_text" applicPropertyType="condition" applicPropertyValue="No encontrado"/>
|
||||
<assign applicPropertyIdent="tm_question_text" applicPropertyType="condition" applicPropertyValue="Pregunta"/>
|
||||
<assign applicPropertyIdent="tm_answer_text" applicPropertyType="condition" applicPropertyValue="Respuesta"/>
|
||||
<assign applicPropertyIdent="tm_show_text" applicPropertyType="condition" applicPropertyValue="Mostrar"/>
|
||||
<assign applicPropertyIdent="tm_type_text" applicPropertyType="condition" applicPropertyValue="Tipo"/>
|
||||
<assign applicPropertyIdent="tm_accpnltype_text" applicPropertyType="condition" applicPropertyValue="Forma de acceso"/>
|
||||
<assign applicPropertyIdent="tm_accessto_text" applicPropertyType="condition" applicPropertyValue="Acceso a"/>
|
||||
<assign applicPropertyIdent="tm_qty_text" applicPropertyType="condition" applicPropertyValue="Cantidad"/>
|
||||
<assign applicPropertyIdent="tm_sunzone_text" applicPropertyType="condition" applicPropertyValue="Sybzona"/>
|
||||
<assign applicPropertyIdent="tm_to_text" applicPropertyType="condition" applicPropertyValue="a"/>
|
||||
<assign applicPropertyIdent="tm_from_text" applicPropertyType="condition" applicPropertyValue="de"/>
|
||||
<assign applicPropertyIdent="tm_location_text" applicPropertyType="condition" applicPropertyValue="Ubicación"/>
|
||||
<assign applicPropertyIdent="tm_accessfrom_text" applicPropertyType="condition" applicPropertyValue="Acceso desde"/>
|
||||
<assign applicPropertyIdent="tm_prereqs_text" applicPropertyType="condition" applicPropertyValue="Requisitos previos"/>
|
||||
<assign applicPropertyIdent="tm_prodmaint_text" applicPropertyType="condition" applicPropertyValue="Datos de realización de trabajos"/>
|
||||
<assign applicPropertyIdent="tm_trhldint_text" applicPropertyType="condition" applicPropertyValue="Intevalo de umbral"/>
|
||||
<assign applicPropertyIdent="tm_wrkarealoc_text" applicPropertyType="condition" applicPropertyValue="Ubicación de la zona de trabajos"/>
|
||||
<assign applicPropertyIdent="tm_wrkloc_text" applicPropertyType="condition" applicPropertyValue="Lugar de trabajo"/>
|
||||
<assign applicPropertyIdent="tm_mnttaskduration_text" applicPropertyType="condition" applicPropertyValue="Duración de la tarea MT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th01" applicPropertyType="condition" applicPropertyValue="HV"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th02" applicPropertyType="condition" applicPropertyValue="CV"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th03" applicPropertyType="condition" applicPropertyValue="M"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th04" applicPropertyType="condition" applicPropertyValue="S"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th05" applicPropertyType="condition" applicPropertyValue="A(s)"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th06" applicPropertyType="condition" applicPropertyValue="D"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th07" applicPropertyType="condition" applicPropertyValue="SS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th08" applicPropertyType="condition" applicPropertyValue="PRESS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th09" applicPropertyType="condition" applicPropertyValue="ENG CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th10" applicPropertyType="condition" applicPropertyValue="ENG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th11" applicPropertyType="condition" applicPropertyValue="SHOP VISITS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th12" applicPropertyType="condition" applicPropertyValue="APU CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th13" applicPropertyType="condition" applicPropertyValue="LG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th14" applicPropertyType="condition" applicPropertyValue="WHL CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th15" applicPropertyType="condition" applicPropertyValue="ENG START"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th16" applicPropertyType="condition" applicPropertyValue="APU HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th17" applicPropertyType="condition" applicPropertyValue="ENG HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th18" applicPropertyType="condition" applicPropertyValue="ELP HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th19" applicPropertyType="condition" applicPropertyValue="LDGs"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th20" applicPropertyType="condition" applicPropertyValue="OPER CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th21" applicPropertyType="condition" applicPropertyValue="OPER HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th22" applicPropertyType="condition" applicPropertyValue="SS HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th23" applicPropertyType="condition" applicPropertyValue="A CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th24" applicPropertyType="condition" applicPropertyValue="B CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th25" applicPropertyType="condition" applicPropertyValue="C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th26" applicPropertyType="condition" applicPropertyValue="D CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th27" applicPropertyType="condition" applicPropertyValue="DLY"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th28" applicPropertyType="condition" applicPropertyValue="E CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th29" applicPropertyType="condition" applicPropertyValue="OVRNGT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th30" applicPropertyType="condition" applicPropertyValue="PREFLT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th31" applicPropertyType="condition" applicPropertyValue="ROUTINE CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th32" applicPropertyType="condition" applicPropertyValue="S C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th33" applicPropertyType="condition" applicPropertyValue="SVC CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th34" applicPropertyType="condition" applicPropertyValue="TRANSIT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th35" applicPropertyType="condition" applicPropertyValue="KM"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th36" applicPropertyType="condition" applicPropertyValue="Q3"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th37" applicPropertyType="condition" applicPropertyValue="QL"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th38" applicPropertyType="condition" applicPropertyValue="SHOTS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th39" applicPropertyType="condition" applicPropertyValue="EFC"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp01" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp02" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp03" applicPropertyType="condition" applicPropertyValue="Station"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp04" applicPropertyType="condition" applicPropertyValue="Water line"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp05" applicPropertyType="condition" applicPropertyValue="Buttock line"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit01" applicPropertyType="condition" applicPropertyValue="Exact"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit02" applicPropertyType="condition" applicPropertyValue="Family"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl01" applicPropertyType="condition" applicPropertyValue="Door"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl02" applicPropertyType="condition" applicPropertyValue="Panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl03" applicPropertyType="condition" applicPropertyValue="Electrical panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl04" applicPropertyType="condition" applicPropertyValue="Hatch"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl05" applicPropertyType="condition" applicPropertyValue="Fillet"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi01" applicPropertyType="condition" applicPropertyValue="Frame"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi02" applicPropertyType="condition" applicPropertyValue="Rib"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi03" applicPropertyType="condition" applicPropertyValue="Stringer"/>
|
||||
<assign applicPropertyIdent="tm_condition_text" applicPropertyType="condition" applicPropertyValue="Acción/Condición"/>
|
||||
<assign applicPropertyIdent="tm_reference_text" applicPropertyType="condition" applicPropertyValue="Referencia"/>
|
||||
<assign applicPropertyIdent="tm_reqperson_text" applicPropertyType="condition" applicPropertyValue="Personal requerido"/>
|
||||
<assign applicPropertyIdent="tm_person_text" applicPropertyType="condition" applicPropertyValue="Personalл"/>
|
||||
<assign applicPropertyIdent="tm_cat_text" applicPropertyType="condition" applicPropertyValue="Categoría"/>
|
||||
<assign applicPropertyIdent="tm_tradecode_text" applicPropertyType="condition" applicPropertyValue="Especialidad/Código"/>
|
||||
<assign applicPropertyIdent="tm_skilllvl_text" applicPropertyType="condition" applicPropertyValue="Nivel de cualificación"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk01" applicPropertyType="condition" applicPropertyValue="Básico"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk02" applicPropertyType="condition" applicPropertyValue="Medio"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk03" applicPropertyType="condition" applicPropertyValue="Alto"/>
|
||||
<assign applicPropertyIdent="tm_esttime_text" applicPropertyType="condition" applicPropertyValue="Tiempo previsto"/>
|
||||
<assign applicPropertyIdent="tm_applicto_text" applicPropertyType="condition" applicPropertyValue="Aplicable para"/>
|
||||
<assign applicPropertyIdent="tm_model_text" applicPropertyType="condition" applicPropertyValue="Modelo"/>
|
||||
<assign applicPropertyIdent="tm_version_text" applicPropertyType="condition" applicPropertyValue="Versión"/>
|
||||
<assign applicPropertyIdent="tm_supequip_text" applicPropertyType="condition" applicPropertyValue="Equipo auxiliar"/>
|
||||
<assign applicPropertyIdent="tm_manfac_text" applicPropertyType="condition" applicPropertyValue="Productor"/>
|
||||
<assign applicPropertyIdent="tm_consumables_text" applicPropertyType="condition" applicPropertyValue="Consumibles"/>
|
||||
<assign applicPropertyIdent="tm_procedure_text" applicPropertyType="condition" applicPropertyValue="Procedimiento"/>
|
||||
<assign applicPropertyIdent="tm_spares_text" applicPropertyType="condition" applicPropertyValue="Repuestos"/>
|
||||
<assign applicPropertyIdent="tm_closecond_text" applicPropertyType="condition" applicPropertyValue="Requerimientos después de finalizar los trabajos"/>
|
||||
<assign applicPropertyIdent="tm_stocknmbr_text" applicPropertyType="condition" applicPropertyValue="Инвентарный номер"/>
|
||||
<assign applicPropertyIdent="tm_partno_text" applicPropertyType="condition" applicPropertyValue="Número de parte"/>
|
||||
<assign applicPropertyIdent="tm_partn_text" applicPropertyType="condition" applicPropertyValue="№"/>
|
||||
<assign applicPropertyIdent="tm_serialno_text" applicPropertyType="condition" applicPropertyValue="Serial"/>
|
||||
<assign applicPropertyIdent="tm_refid_text" applicPropertyType="condition" applicPropertyValue="Referencias"/>
|
||||
<assign applicPropertyIdent="tm_remarks_text" applicPropertyType="condition" applicPropertyValue="Notas"/>
|
||||
<assign applicPropertyIdent="tm_note_text" applicPropertyType="condition" applicPropertyValue="Nota"/>
|
||||
<assign applicPropertyIdent="tm_warning_text" applicPropertyType="condition" applicPropertyValue="ATENCIÓN"/>
|
||||
<assign applicPropertyIdent="tm_danger_text" applicPropertyType="condition" applicPropertyValue="PELIGRO"/>
|
||||
<assign applicPropertyIdent="tm_caution_text" applicPropertyType="condition" applicPropertyValue="PRECAUCIÓN"/>
|
||||
<assign applicPropertyIdent="tm_safcon_text" applicPropertyType="condition" applicPropertyValue="Requerimientos de seguridad"/>
|
||||
<assign applicPropertyIdent="tm_isoendstep_text" applicPropertyType="condition" applicPropertyValue="Fin del procedimiento de localización"/>
|
||||
<assign applicPropertyIdent="tm_isoproc_text" applicPropertyType="condition" applicPropertyValue="Procedimiento de localización"/>
|
||||
<assign applicPropertyIdent="tm_description_text" applicPropertyType="condition" applicPropertyValue="Descripción"/>
|
||||
<assign applicPropertyIdent="tm_reqconds_text" applicPropertyType="condition" applicPropertyValue="Condiciones requeridas"/>
|
||||
<assign applicPropertyIdent="tm_schedule_text" applicPropertyType="condition" applicPropertyValue="Planificación del mantenimiento técnico"/>
|
||||
<assign applicPropertyIdent="tm_fault_text" applicPropertyType="condition" applicPropertyValue="Falla"/>
|
||||
<assign applicPropertyIdent="tm_faultreport_text" applicPropertyType="condition" applicPropertyValue="Informe sobre las fallas"/>
|
||||
<assign applicPropertyIdent="tm_faultisolation_text" applicPropertyType="condition" applicPropertyValue="Localización de fallas"/>
|
||||
<assign applicPropertyIdent="tm_crewrefcard_text" applicPropertyType="condition" applicPropertyValue="Ficha de control"/>
|
||||
<assign applicPropertyIdent="tm_crewdescr_text" applicPropertyType="condition" applicPropertyValue="Descripción para la tripulación"/>
|
||||
<assign applicPropertyIdent="tm_commrep_text" applicPropertyType="condition" applicPropertyValue="Repositorió común"/>
|
||||
<assign applicPropertyIdent="tm_comminfo_text" applicPropertyType="condition" applicPropertyValue="Información general"/>
|
||||
<assign applicPropertyIdent="tm_endofdm_text" applicPropertyType="condition" applicPropertyValue="Fin del Módulo de datos"/>
|
||||
<assign applicPropertyIdent="tm_ipp_text" applicPropertyType="condition" applicPropertyValue="Proyecto de suministro inicial"/>
|
||||
<assign applicPropertyIdent="tm_item_text" applicPropertyType="condition" applicPropertyValue="Parte"/>
|
||||
<assign applicPropertyIdent="tm_upha_text" applicPropertyType="condition" applicPropertyValue="Cantidad en BS"/>
|
||||
<assign applicPropertyIdent="tm_uoi_text" applicPropertyType="condition" applicPropertyValue="Ud.med."/>
|
||||
<assign applicPropertyIdent="tm_design_text" applicPropertyType="condition" applicPropertyValue="Designación"/>
|
||||
<assign applicPropertyIdent="tm_ncage_text" applicPropertyType="condition" applicPropertyValue="Código del producto"/>
|
||||
<assign applicPropertyIdent="tm_nsn_text" applicPropertyType="condition" applicPropertyValue="Código mercantíl de OTAN"/>
|
||||
<assign applicPropertyIdent="tm_nomen_text" applicPropertyType="condition" applicPropertyValue="Denominación"/>
|
||||
<assign applicPropertyIdent="tm_uoc_text" applicPropertyType="condition" applicPropertyValue="UOC"/>
|
||||
<assign applicPropertyIdent="tm_mv_text" applicPropertyType="condition" applicPropertyValue="Взаим."/>
|
||||
<assign applicPropertyIdent="tm_effect_text" applicPropertyType="condition" applicPropertyValue="Прим."/>
|
||||
<assign applicPropertyIdent="tm_notill_text" applicPropertyType="condition" applicPropertyValue="No disponible"/>
|
||||
<assign applicPropertyIdent="tm_reftype_" applicPropertyType="condition" applicPropertyValue="Véase"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft01" applicPropertyType="condition" applicPropertyValue="Véase BS"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft02" applicPropertyType="condition" applicPropertyValue="En detalle"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft05" applicPropertyType="condition" applicPropertyValue="Parte de fijación"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft03" applicPropertyType="condition" applicPropertyValue="Parte análoga"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft04" applicPropertyType="condition" applicPropertyValue="Parte de sustitución"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft06" applicPropertyType="condition" applicPropertyValue="Parte para montaje/desmontaje"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft07" applicPropertyType="condition" applicPropertyValue="Seleccionar de las partes"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft08" applicPropertyType="condition" applicPropertyValue="Dimensión máx./Dimensión mín."/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft09" applicPropertyType="condition" applicPropertyValue="Parte de unión"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft10" applicPropertyType="condition" applicPropertyValue="Desglose"/>
|
||||
<assign applicPropertyIdent="tm_ipc_text" applicPropertyType="condition" applicPropertyValue="Catálogo de partes ilustrado"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_" applicPropertyType="condition" applicPropertyValue="Todos"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm01" applicPropertyType="condition" applicPropertyValue="Todos"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm02" applicPropertyType="condition" applicPropertyValue="Piloto al mando"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm03" applicPropertyType="condition" applicPropertyValue="Copiloto"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm04" applicPropertyType="condition" applicPropertyValue="Navegador"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm05" applicPropertyType="condition" applicPropertyValue="Mecánico"/>
|
||||
<assign applicPropertyIdent="tm_if_text" applicPropertyType="condition" applicPropertyValue="Si"/>
|
||||
<assign applicPropertyIdent="tm_case_text" applicPropertyType="condition" applicPropertyValue="Selección"/>
|
||||
<assign applicPropertyIdent="tm_elseif_text" applicPropertyType="condition" applicPropertyValue="De lo contrario, si"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_text" applicPropertyType="condition" applicPropertyValue="Prioridad del comentario"/>
|
||||
<assign applicPropertyIdent="tm_commorig_text" applicPropertyType="condition" applicPropertyValue="Comentario elaborado por"/>
|
||||
<assign applicPropertyIdent="tm_entName_text" applicPropertyType="condition" applicPropertyValue="Nombre de la empresa"/>
|
||||
<assign applicPropertyIdent="tm_division_text" applicPropertyType="condition" applicPropertyValue="Subdivisión"/>
|
||||
<assign applicPropertyIdent="tm_entUnit_text" applicPropertyType="condition" applicPropertyValue="Unidad organizativa"/>
|
||||
<assign applicPropertyIdent="tm_LastName_text" applicPropertyType="condition" applicPropertyValue="Apellido"/>
|
||||
<assign applicPropertyIdent="tm_FirstName_text" applicPropertyType="condition" applicPropertyValue="Nombre"/>
|
||||
<assign applicPropertyIdent="tm_JobTitle_text" applicPropertyType="condition" applicPropertyValue="Cargo"/>
|
||||
<assign applicPropertyIdent="tm_department_text" applicPropertyType="condition" applicPropertyValue="Departamento"/>
|
||||
<assign applicPropertyIdent="tm_street_text" applicPropertyType="condition" applicPropertyValue="Calle"/>
|
||||
<assign applicPropertyIdent="tm_pobox_text" applicPropertyType="condition" applicPropertyValue="Caja postal"/>
|
||||
<assign applicPropertyIdent="tm_poZipCode_text" applicPropertyType="condition" applicPropertyValue="Código postal"/>
|
||||
<assign applicPropertyIdent="tm_city_text" applicPropertyType="condition" applicPropertyValue="Ciudad"/>
|
||||
<assign applicPropertyIdent="tm_country_text" applicPropertyType="condition" applicPropertyValue="País"/>
|
||||
<assign applicPropertyIdent="tm_state_text" applicPropertyType="condition" applicPropertyValue="Estado"/>
|
||||
<assign applicPropertyIdent="tm_province_text" applicPropertyType="condition" applicPropertyValue="Región/Distrito"/>
|
||||
<assign applicPropertyIdent="tm_building_text" applicPropertyType="condition" applicPropertyValue="Edificio"/>
|
||||
<assign applicPropertyIdent="tm_room_text" applicPropertyType="condition" applicPropertyValue="Oficina/Habitación"/>
|
||||
<assign applicPropertyIdent="tm_phoneNumber_text" applicPropertyType="condition" applicPropertyValue="Número de teléfono"/>
|
||||
<assign applicPropertyIdent="tm_faxNumber_text" applicPropertyType="condition" applicPropertyValue="Fax"/>
|
||||
<assign applicPropertyIdent="tm_email_text" applicPropertyType="condition" applicPropertyValue="Correo electrónico"/>
|
||||
<assign applicPropertyIdent="tm_internet_text" applicPropertyType="condition" applicPropertyValue="Sitio Web"/>
|
||||
<assign applicPropertyIdent="tm_SITA_text" applicPropertyType="condition" applicPropertyValue="Código SITA"/>
|
||||
<assign applicPropertyIdent="tm_commrefs_text" applicPropertyType="condition" applicPropertyValue="Ссылки комментария"/>
|
||||
<assign applicPropertyIdent="tm_commcontent_text" applicPropertyType="condition" applicPropertyValue="Contenido del comentario"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp01" applicPropertyType="condition" applicPropertyValue="Regular"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp02" applicPropertyType="condition" applicPropertyValue="Urgente"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp03" applicPropertyType="condition" applicPropertyValue="Influye a la seguridad"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt01" applicPropertyType="condition" applicPropertyValue="Aprobado"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt02" applicPropertyType="condition" applicPropertyValue="En lista de espera"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt03" applicPropertyType="condition" applicPropertyValue="Aprobación parcial"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt04" applicPropertyType="condition" applicPropertyValue="Rechazado"/>
|
||||
<assign applicPropertyIdent="tm_pm_text" applicPropertyType="condition" applicPropertyValue="Móduo de publicación"/>
|
||||
<assign applicPropertyIdent="tm_comc_text" applicPropertyType="condition" applicPropertyValue="Código del comentario"/>
|
||||
<assign applicPropertyIdent="tm_gotoclosereqs_text" applicPropertyType="condition" applicPropertyValue="Pasar a los requisitos después de finalizar los trabajos"/>
|
||||
<assign applicPropertyIdent="tm_goto_text" applicPropertyType="condition" applicPropertyValue="Pasar a"/>
|
||||
<assign applicPropertyIdent="tm_faultcode_text" applicPropertyType="condition" applicPropertyValue="Código de falla"/>
|
||||
<assign applicPropertyIdent="tm_techinfo_text" applicPropertyType="condition" applicPropertyValue="Elaborado a base de"/>
|
||||
<assign applicPropertyIdent="tm_multpquest_text" applicPropertyType="condition" applicPropertyValue="Pregunta de opción múltiple"/>
|
||||
<assign applicPropertyIdent="tm_singlquest_text" applicPropertyType="condition" applicPropertyValue="Pregunta de opción única"/>
|
||||
<assign applicPropertyIdent="tm_sequenquest_text" applicPropertyType="condition" applicPropertyValue="Pregunta de secuenciación"/>
|
||||
<assign applicPropertyIdent="tm_mathingquest_text" applicPropertyType="condition" applicPropertyValue="Pregunta de coincidencia"/>
|
||||
<assign applicPropertyIdent="tm_quest_text" applicPropertyType="condition" applicPropertyValue="Pregunta " />
|
||||
<assign applicPropertyIdent="tm_questof_text" applicPropertyType="condition" applicPropertyValue=" de " />
|
||||
<assign applicPropertyIdent="tm_questbtnext_text" applicPropertyType="condition" applicPropertyValue="Continuar" />
|
||||
<assign applicPropertyIdent="tm_questbtchk_text" applicPropertyType="condition" applicPropertyValue="Revisar" />
|
||||
</product>
|
||||
</productCrossRefTable>
|
||||
</content>
|
||||
</dmodule>
|
||||
@@ -0,0 +1,529 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><!--Arbortext, Inc., 1988-2010, v.4002-->
|
||||
<dmodule xsi:noNamespaceSchemaLocation="http://www.s1000d.org/S1000D_4-1/xml_schema_flat/prdcrossreftable.xsd"
|
||||
xmlns:dc="http://www.purl.org/dc/elements/1.1/"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<rdf:Description>
|
||||
<dc:creator>SF815</dc:creator>
|
||||
<dc:title>Content profile - Products cross-reference table</dc:title>
|
||||
<dc:subject>Mountain bicycle - Products cross-reference table</dc:subject>
|
||||
<dc:publisher>SF815</dc:publisher>
|
||||
<dc:contributor>SF815</dc:contributor>
|
||||
<dc:date>2008-08-01</dc:date>
|
||||
<dc:type>text</dc:type>
|
||||
<dc:format>text/xml</dc:format>
|
||||
<dc:identifier>S1000DSTUDIO-AAA-D20-00-00-00AA-00PA-D_004-00</dc:identifier>
|
||||
<dc:language>en-US</dc:language>
|
||||
<dc:rights>01</dc:rights>
|
||||
</rdf:Description>
|
||||
<identAndStatusSection>
|
||||
<dmAddress>
|
||||
<dmIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00P" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DSTUDIO" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
<language countryIsoCode="RU" languageIsoCode="ru"/>
|
||||
<issueInfo inWork="00" issueNumber="004"/>
|
||||
</dmIdent>
|
||||
<dmAddressItems>
|
||||
<issueDate day="01" month="08" year="2008"/>
|
||||
<dmTitle>
|
||||
<techName>Профиль содержимого</techName>
|
||||
<infoName>Таблица перекрестных ссылок на объект</infoName>
|
||||
</dmTitle>
|
||||
</dmAddressItems>
|
||||
</dmAddress>
|
||||
<dmStatus issueType="revised">
|
||||
<security securityClassification="01"/>
|
||||
<responsiblePartnerCompany enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</responsiblePartnerCompany>
|
||||
<originator enterpriseCode="SF815">
|
||||
<enterpriseName>SIOM</enterpriseName>
|
||||
</originator>
|
||||
<applicCrossRefTableRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-00WA-D" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="00W" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D20" systemDiffCode="AAA"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</applicCrossRefTableRef>
|
||||
<applic>
|
||||
<displayText>
|
||||
<simplePara>All</simplePara>
|
||||
</displayText>
|
||||
</applic>
|
||||
<brexDmRef>
|
||||
<dmRef xlink:actuate="onRequest" xlink:href="URN:S1000D:DMC-S1000DBIKE-AAA-D00-00-00-00AA-022A-D_007-00" xlink:show="replace" xlink:type="simple">
|
||||
<dmRefIdent>
|
||||
<dmCode assyCode="00" disassyCode="00" disassyCodeVariant="AA" infoCode="022" infoCodeVariant="A" itemLocationCode="D" modelIdentCode="S1000DBIKE" subSubSystemCode="0" subSystemCode="0" systemCode="D00" systemDiffCode="AAA"/>
|
||||
<issueInfo inWork="00" issueNumber="007"/>
|
||||
</dmRefIdent>
|
||||
</dmRef>
|
||||
</brexDmRef>
|
||||
<qualityAssurance>
|
||||
<firstVerification verificationType="ttandoo"/>
|
||||
</qualityAssurance>
|
||||
</dmStatus>
|
||||
</identAndStatusSection>
|
||||
<content>
|
||||
<productCrossRefTable>
|
||||
<product id="ContentProfile1">
|
||||
<assign applicPropertyIdent="contentprofileid" applicPropertyType="prodattr" applicPropertyValue="1212B070643ASD"/>
|
||||
<assign applicPropertyIdent="contentprofilename" applicPropertyType="prodattr" applicPropertyValue="DEFAULT"/>
|
||||
<!-- settings_defaultcommentqueryMI
|
||||
Идентификационный код модели по умолчанию для Комментария
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryMI" applicPropertyType="condition" applicPropertyValue="DA42T"/>
|
||||
<!-- settings_defaultcommentqueryIssuer
|
||||
Издатель Комментария по умолчанию
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_defaultcommentqueryIssuer" applicPropertyType="condition" applicPropertyValue="UWCAD"/>
|
||||
<!-- settings_commentlangs
|
||||
список допустимых языков при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentlangs" applicPropertyType="condition" applicPropertyValue="ru,en"/>
|
||||
<!-- settings_commentcountries
|
||||
список допустимых стран при заполнении Комментария, через запятую
|
||||
-->
|
||||
<assign applicPropertyIdent="settings_commentcountries" applicPropertyType="condition" applicPropertyValue="RU,GB"/>
|
||||
<!-- format_xslType с BRDP-S1-00473 по BRDP-S1-00479
|
||||
S1000D
|
||||
MILSTD
|
||||
GOST18675-2012
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_xslType" applicPropertyType="condition" applicPropertyValue="S1000D"/>
|
||||
<!-- format_csspagestyle BRDP-S1-00492
|
||||
doublecolumn1
|
||||
singlecolumn1
|
||||
singlecolumn2
|
||||
Основной параметр определяющий:
|
||||
число колонок
|
||||
нумерацию заголовков
|
||||
оформление заголовков
|
||||
оформление основного параграфа
|
||||
отсутпы и т.д.
|
||||
Сейчас надо стелать 3 варианта, остальное в течении жизни
|
||||
-->
|
||||
<assign applicPropertyIdent="format_csspagestyle" applicPropertyType="condition" applicPropertyValue="singlecolumn1"/>
|
||||
<!-- format_dmtitle BRDP-S1-00496
|
||||
onelinedot - в одну строку через точку
|
||||
onelinedash - в одну строку через тире
|
||||
twoline - в две строки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitle" applicPropertyType="condition" applicPropertyValue="onelinedash"/>
|
||||
<!--format_dmend BRDP-S1-00490
|
||||
dmend
|
||||
dmendplusdmtitle
|
||||
Последним видимым текстом в окне содержимого будет конструкция с этим параметром
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmend" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_procsteptitle BRDP-S1-00494
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_crewsteptitle BRDP-S1-00495
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_crewsteptitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_toc BRDP-S1-00497
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_toc" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_lot BRDP-S1-00498
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lot" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_lof BRDP-S1-00500
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать без префикса
|
||||
2 - отображать с префиксом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_lof" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_levparatitle BRDP-S1-00503
|
||||
0,1,2,3,4,5,6,7,8
|
||||
0 - не отображать
|
||||
1 - отображать до уровня 1
|
||||
и т.д.
|
||||
-->
|
||||
<assign applicPropertyIdent="format_levparatitle" applicPropertyType="condition" applicPropertyValue="8"/>
|
||||
<!-- format_procstepnumber BRDP-S1-00504
|
||||
numeric
|
||||
alphabetic
|
||||
-->
|
||||
<assign applicPropertyIdent="format_procstepnumber" applicPropertyType="condition" applicPropertyValue="numeric"/>
|
||||
<!-- format_stepindent BRDP-S1-00506
|
||||
0 - не использовать отступ
|
||||
1 - использовать отступ
|
||||
-->
|
||||
<assign applicPropertyIdent="format_stepindent" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_randlistitemprefix BRDP-S1-00507
|
||||
0 - как в модуле
|
||||
1 - форсировать схема 1 (-,.,-)
|
||||
2 - форсировать (-,-,-)
|
||||
3 - форсировать (.,.,.)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_randlistitemprefix" applicPropertyType="condition" applicPropertyValue="0"/>
|
||||
<!-- format_footnotemarker BRDP-S1-00508
|
||||
superscript - верхний регистр
|
||||
brackets - скобки
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotemarker" applicPropertyType="condition" applicPropertyValue="superscript"/>
|
||||
<!-- format_footnoteplace BRDP-S1-00509
|
||||
dmend - в конце МД
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnoteplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_footnotetableplace BRDP-S1-00510
|
||||
dmend - в конце МД
|
||||
tableend - в конце таблицы
|
||||
tip - всплывающая подсказка
|
||||
-->
|
||||
<assign applicPropertyIdent="format_footnotetableplace" applicPropertyType="condition" applicPropertyValue="dmend"/>
|
||||
<!-- format_formaltablevertsep BRDP-S1-00511
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_formaltablevertsep" applicPropertyType="condition" applicPropertyValue="false"/>
|
||||
<!-- format_fuguresheets BRDP-S1-00512
|
||||
textdelim - (Лист 1 из 2)
|
||||
slashdelim (Лист 1/2)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_fuguresheets" applicPropertyType="condition" applicPropertyValue="textdelim"/>
|
||||
<!-- format_wcsymbols BRDP-S1-00514
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcsymbols" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_wcn BRDP-S1-00515
|
||||
textual - Только текст или с рамками
|
||||
symbol1 - схема c подложками заполнителей
|
||||
color1 - схема c заливкой цветом
|
||||
-->
|
||||
<assign applicPropertyIdent="format_wcn" applicPropertyType="condition" applicPropertyValue="symbol1"/>
|
||||
<!-- format_notenumbers BRDP-S1-00516
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_notenumbers" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_changes BRDP-S1-00517
|
||||
0,1,2
|
||||
0 - не отображать
|
||||
1 - отображать черной чертой слева
|
||||
2 - отображать светло-желтым цветом фона элемента
|
||||
3 - отображать по цветам (add-green, modify-yellow,delete-red)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_changes" applicPropertyType="condition" applicPropertyValue="3"/>
|
||||
<!-- format_dmtitleinrefstable BRDP-S1-00520
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_dmtitleinrefstable" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<!-- format_pmtitleinrefs BRDP-S1-00521
|
||||
0 - не отображать
|
||||
1 - отображать pmtitle
|
||||
2 - отображать shortpmtitle
|
||||
3 - отображать оба
|
||||
-->
|
||||
<assign applicPropertyIdent="format_pmtitleinrefs" applicPropertyType="condition" applicPropertyValue="1"/>
|
||||
<!-- format_refssequence BRDP-S1-00522
|
||||
asis
|
||||
codeup
|
||||
codedown
|
||||
dmpmextpub
|
||||
-->
|
||||
<assign applicPropertyIdent="format_refssequence" applicPropertyType="condition" applicPropertyValue="dmpmextpub"/>
|
||||
<!-- format_prelreqnames BRDP-S1-00524
|
||||
name - Только имя
|
||||
shortname - Только короткое имя
|
||||
nameandshort - Оба Имя (короткое имя)
|
||||
-->
|
||||
<assign applicPropertyIdent="format_prelreqnames" applicPropertyType="condition" applicPropertyValue="name"/>
|
||||
<!-- format_inlineapplic BRDP-S1-00525
|
||||
pre - Перед элементом
|
||||
post - Внутри элемента
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplic" applicPropertyType="condition" applicPropertyValue="post"/>
|
||||
<!-- format_inlineapplicbold BRDP-S1-00526
|
||||
true
|
||||
false
|
||||
-->
|
||||
<assign applicPropertyIdent="format_inlineapplicbold" applicPropertyType="condition" applicPropertyValue="true"/>
|
||||
<assign applicPropertyIdent="tm_refs_text" applicPropertyType="condition" applicPropertyValue="Ссылки"/>
|
||||
<assign applicPropertyIdent="tm_ident_text" applicPropertyType="condition" applicPropertyValue="Идентификатор"/>
|
||||
<assign applicPropertyIdent="tm_ref_text" applicPropertyType="condition" applicPropertyValue="Ссылка"/>
|
||||
<assign applicPropertyIdent="tm_footnotes_text" applicPropertyType="condition" applicPropertyValue="Сноски"/>
|
||||
<assign applicPropertyIdent="tm_none_text" applicPropertyType="condition" applicPropertyValue="Нет"/>
|
||||
<assign applicPropertyIdent="tm_dmpm_text" applicPropertyType="condition" applicPropertyValue="Модуль данных/Техническая публикация"/>
|
||||
<assign applicPropertyIdent="tm_title_text" applicPropertyType="condition" applicPropertyValue="Заголовок"/>
|
||||
<assign applicPropertyIdent="tm_name_text" applicPropertyType="condition" applicPropertyValue="Наименование"/>
|
||||
<assign applicPropertyIdent="tm_altname_text" applicPropertyType="condition" applicPropertyValue="Альтернативное наименование"/>
|
||||
<assign applicPropertyIdent="tm_dm_text" applicPropertyType="condition" applicPropertyValue="Модуль данных"/>
|
||||
<assign applicPropertyIdent="tm_dmc_text" applicPropertyType="condition" applicPropertyValue="Код модуля данных"/>
|
||||
<assign applicPropertyIdent="tm_pmc_text" applicPropertyType="condition" applicPropertyValue="Код модуля публикации"/>
|
||||
<assign applicPropertyIdent="tm_idssection_text" applicPropertyType="condition" applicPropertyValue="Идентификационно-статусная часть"/>
|
||||
<assign applicPropertyIdent="tm_idsection_text" applicPropertyType="condition" applicPropertyValue="Идентификационная часть"/>
|
||||
<assign applicPropertyIdent="tm_issue_text" applicPropertyType="condition" applicPropertyValue="Издание"/>
|
||||
<assign applicPropertyIdent="tm_statussection_text" applicPropertyType="condition" applicPropertyValue="Статусная часть"/>
|
||||
<assign applicPropertyIdent="tm_sequrity_text" applicPropertyType="condition" applicPropertyValue="Безопасность"/>
|
||||
<assign applicPropertyIdent="tm_sequrityclass_text" applicPropertyType="condition" applicPropertyValue="Гриф секретности"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_01" applicPropertyType="condition" applicPropertyValue="НЕСЕКРЕТНО"/>
|
||||
<assign applicPropertyIdent="tm_securityClassification_02" applicPropertyType="condition" applicPropertyValue="ГРИФ 1"/>
|
||||
<assign applicPropertyIdent="tm_commclass_text" applicPropertyType="condition" applicPropertyValue="Коммерческий гриф секретности"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc01" applicPropertyType="condition" applicPropertyValue="КОММ. ГРИФ 1"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc02" applicPropertyType="condition" applicPropertyValue="КОММ. ГРИФ 2"/>
|
||||
<assign applicPropertyIdent="tm_commercialClassification_cc51" applicPropertyType="condition" applicPropertyValue="КОММ. ГРИФ 51"/>
|
||||
<assign applicPropertyIdent="tm_caveat_text" applicPropertyType="condition" applicPropertyValue="Ограничение"/>
|
||||
<assign applicPropertyIdent="tm_caveat_" applicPropertyType="condition" applicPropertyValue=" "/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv01" applicPropertyType="condition" applicPropertyValue="ОГРАНИЧЕНИЕ 1"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv02" applicPropertyType="condition" applicPropertyValue="ОГРАНИЧЕНИЕ 2"/>
|
||||
<assign applicPropertyIdent="tm_caveat_cv51" applicPropertyType="condition" applicPropertyValue="ОГРАНИЧЕНИЕ 51"/>
|
||||
<assign applicPropertyIdent="tm_status_" applicPropertyType="condition" applicPropertyValue="Новый"/>
|
||||
<assign applicPropertyIdent="tm_status_new" applicPropertyType="condition" applicPropertyValue="Новый"/>
|
||||
<assign applicPropertyIdent="tm_status_changed" applicPropertyType="condition" applicPropertyValue="Изменен"/>
|
||||
<assign applicPropertyIdent="tm_status_deleted" applicPropertyType="condition" applicPropertyValue="Удален"/>
|
||||
<assign applicPropertyIdent="tm_status_revised" applicPropertyType="condition" applicPropertyValue="Пересмотрен"/>
|
||||
<assign applicPropertyIdent="tm_status_status" applicPropertyType="condition" applicPropertyValue="Изменен статус"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-revised" applicPropertyType="condition" applicPropertyValue="Восстановлен-Пересмотрен"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-changed" applicPropertyType="condition" applicPropertyValue="Восстановлен-Изменен"/>
|
||||
<assign applicPropertyIdent="tm_status_reinstated-status" applicPropertyType="condition" applicPropertyValue="Восстановлен-Статус Изменен"/>
|
||||
<assign applicPropertyIdent="tm_issdate_text" applicPropertyType="condition" applicPropertyValue="Дата издания"/>
|
||||
<assign applicPropertyIdent="tm_rpc_text" applicPropertyType="condition" applicPropertyValue="Ответственная компания"/>
|
||||
<assign applicPropertyIdent="tm_orig_text" applicPropertyType="condition" applicPropertyValue="Разработчик"/>
|
||||
<assign applicPropertyIdent="tm_applic_text" applicPropertyType="condition" applicPropertyValue="Применимо к"/>
|
||||
<assign applicPropertyIdent="tm_brexdm_text" applicPropertyType="condition" applicPropertyValue="МД BREX"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_text" applicPropertyType="condition" applicPropertyValue="Обеспечение качества"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_unverified" applicPropertyType="condition" applicPropertyValue="Не проверен"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_firstVerification" applicPropertyType="condition" applicPropertyValue="Первая проверка"/>
|
||||
<assign applicPropertyIdent="tm_qualityass_secondVerification" applicPropertyType="condition" applicPropertyValue="Вторая проверка"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_tabtop" applicPropertyType="condition" applicPropertyValue="На столе"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_onobject" applicPropertyType="condition" applicPropertyValue="На объекте"/>
|
||||
<assign applicPropertyIdent="tm_veriftype_ttandoo" applicPropertyType="condition" applicPropertyValue="На столе и на объекте"/>
|
||||
<assign applicPropertyIdent="tm_contrlang_text" applicPropertyType="condition" applicPropertyValue="Страна/Язык"/>
|
||||
<assign applicPropertyIdent="tm_no_text" applicPropertyType="condition" applicPropertyValue="Нет"/>
|
||||
<assign applicPropertyIdent="tm_yes_text" applicPropertyType="condition" applicPropertyValue="Да"/>
|
||||
<assign applicPropertyIdent="tm_referror_text" applicPropertyType="condition" applicPropertyValue="Ссылочный модуль не найден"/>
|
||||
<assign applicPropertyIdent="tm_figure_text" applicPropertyType="condition" applicPropertyValue="Рис"/>
|
||||
<assign applicPropertyIdent="tm_sheet_text" applicPropertyType="condition" applicPropertyValue="Лист"/>
|
||||
<assign applicPropertyIdent="tm_multimedia_text" applicPropertyType="condition" applicPropertyValue="Мультимедия"/>
|
||||
<assign applicPropertyIdent="tm_para_text" applicPropertyType="condition" applicPropertyValue="Параграф"/>
|
||||
<assign applicPropertyIdent="tm_procstep_text" applicPropertyType="condition" applicPropertyValue="Шаг"/>
|
||||
<assign applicPropertyIdent="tm_table_text" applicPropertyType="condition" applicPropertyValue="Таблица"/>
|
||||
<assign applicPropertyIdent="tm_zone_text" applicPropertyType="condition" applicPropertyValue="Зона"/>
|
||||
<assign applicPropertyIdent="tm_accpnl_text" applicPropertyType="condition" applicPropertyValue="Точка доступа"/>
|
||||
<assign applicPropertyIdent="tm_supply_text" applicPropertyType="condition" applicPropertyValue="Материал"/>
|
||||
<assign applicPropertyIdent="tm_cb_text" applicPropertyType="condition" applicPropertyValue="АЗС"/>
|
||||
<assign applicPropertyIdent="tm_notfound_text" applicPropertyType="condition" applicPropertyValue="Не найден"/>
|
||||
<assign applicPropertyIdent="tm_question_text" applicPropertyType="condition" applicPropertyValue="Вопрос"/>
|
||||
<assign applicPropertyIdent="tm_answer_text" applicPropertyType="condition" applicPropertyValue="Ответ"/>
|
||||
<assign applicPropertyIdent="tm_show_text" applicPropertyType="condition" applicPropertyValue="Показать"/>
|
||||
<assign applicPropertyIdent="tm_type_text" applicPropertyType="condition" applicPropertyValue="Тип"/>
|
||||
<assign applicPropertyIdent="tm_accpnltype_text" applicPropertyType="condition" applicPropertyValue="Вид доступа"/>
|
||||
<assign applicPropertyIdent="tm_accessto_text" applicPropertyType="condition" applicPropertyValue="Доступ к"/>
|
||||
<assign applicPropertyIdent="tm_qty_text" applicPropertyType="condition" applicPropertyValue="Кол-во"/>
|
||||
<assign applicPropertyIdent="tm_sunzone_text" applicPropertyType="condition" applicPropertyValue="Подзона"/>
|
||||
<assign applicPropertyIdent="tm_to_text" applicPropertyType="condition" applicPropertyValue="до"/>
|
||||
<assign applicPropertyIdent="tm_from_text" applicPropertyType="condition" applicPropertyValue="от"/>
|
||||
<assign applicPropertyIdent="tm_location_text" applicPropertyType="condition" applicPropertyValue="Расположение"/>
|
||||
<assign applicPropertyIdent="tm_accessfrom_text" applicPropertyType="condition" applicPropertyValue="Доступ из"/>
|
||||
<assign applicPropertyIdent="tm_prereqs_text" applicPropertyType="condition" applicPropertyValue="Предварительные требования"/>
|
||||
<assign applicPropertyIdent="tm_prodmaint_text" applicPropertyType="condition" applicPropertyValue="Данные по выполнению работ"/>
|
||||
<assign applicPropertyIdent="tm_trhldint_text" applicPropertyType="condition" applicPropertyValue="Пороговый интервал"/>
|
||||
<assign applicPropertyIdent="tm_wrkarealoc_text" applicPropertyType="condition" applicPropertyValue="Расположение зоны работ"/>
|
||||
<assign applicPropertyIdent="tm_wrkloc_text" applicPropertyType="condition" applicPropertyValue="Место выполнения работы"/>
|
||||
<assign applicPropertyIdent="tm_mnttaskduration_text" applicPropertyType="condition" applicPropertyValue="Длительность задачи ТО"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th01" applicPropertyType="condition" applicPropertyValue="ЛЧ"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th02" applicPropertyType="condition" applicPropertyValue="ЛЦ"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th03" applicPropertyType="condition" applicPropertyValue="М"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th04" applicPropertyType="condition" applicPropertyValue="Н"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th05" applicPropertyType="condition" applicPropertyValue="Г(Л)"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th06" applicPropertyType="condition" applicPropertyValue="Д"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th07" applicPropertyType="condition" applicPropertyValue="SS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th08" applicPropertyType="condition" applicPropertyValue="PRESS CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th09" applicPropertyType="condition" applicPropertyValue="ENG CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th10" applicPropertyType="condition" applicPropertyValue="ENG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th11" applicPropertyType="condition" applicPropertyValue="SHOP VISITS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th12" applicPropertyType="condition" applicPropertyValue="APU CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th13" applicPropertyType="condition" applicPropertyValue="LG CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th14" applicPropertyType="condition" applicPropertyValue="WHL CHG"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th15" applicPropertyType="condition" applicPropertyValue="ENG START"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th16" applicPropertyType="condition" applicPropertyValue="APU HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th17" applicPropertyType="condition" applicPropertyValue="ENG HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th18" applicPropertyType="condition" applicPropertyValue="ELP HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th19" applicPropertyType="condition" applicPropertyValue="LDGs"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th20" applicPropertyType="condition" applicPropertyValue="OPER CLS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th21" applicPropertyType="condition" applicPropertyValue="OPER HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th22" applicPropertyType="condition" applicPropertyValue="SS HRS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th23" applicPropertyType="condition" applicPropertyValue="A CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th24" applicPropertyType="condition" applicPropertyValue="B CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th25" applicPropertyType="condition" applicPropertyValue="C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th26" applicPropertyType="condition" applicPropertyValue="D CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th27" applicPropertyType="condition" applicPropertyValue="DLY"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th28" applicPropertyType="condition" applicPropertyValue="E CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th29" applicPropertyType="condition" applicPropertyValue="OVRNGT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th30" applicPropertyType="condition" applicPropertyValue="PREFLT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th31" applicPropertyType="condition" applicPropertyValue="ROUTINE CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th32" applicPropertyType="condition" applicPropertyValue="S C CHECK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th33" applicPropertyType="condition" applicPropertyValue="SVC CHK"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th34" applicPropertyType="condition" applicPropertyValue="TRANSIT"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th35" applicPropertyType="condition" applicPropertyValue="KM"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th36" applicPropertyType="condition" applicPropertyValue="Q3"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th37" applicPropertyType="condition" applicPropertyValue="QL"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th38" applicPropertyType="condition" applicPropertyValue="SHOTS"/>
|
||||
<assign applicPropertyIdent="tm_thresholdUnitOfMeasure_th39" applicPropertyType="condition" applicPropertyValue="EFC"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp01" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp02" applicPropertyType="condition" applicPropertyValue="Section"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp03" applicPropertyType="condition" applicPropertyValue="Station"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp04" applicPropertyType="condition" applicPropertyValue="Water line"/>
|
||||
<assign applicPropertyIdent="tm_installationLocationType_instloctyp05" applicPropertyType="condition" applicPropertyValue="Buttock line"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit01" applicPropertyType="condition" applicPropertyValue="Exact"/>
|
||||
<assign applicPropertyIdent="tm_functionalItemType_fit02" applicPropertyType="condition" applicPropertyValue="Family"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl01" applicPropertyType="condition" applicPropertyValue="Door"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl02" applicPropertyType="condition" applicPropertyValue="Panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl03" applicPropertyType="condition" applicPropertyValue="Electrical panel"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl04" applicPropertyType="condition" applicPropertyValue="Hatch"/>
|
||||
<assign applicPropertyIdent="tm_accessPointTypeValue_accpnl05" applicPropertyType="condition" applicPropertyValue="Fillet"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi01" applicPropertyType="condition" applicPropertyValue="Frame"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi02" applicPropertyType="condition" applicPropertyValue="Rib"/>
|
||||
<assign applicPropertyIdent="tm_productItemType_pi03" applicPropertyType="condition" applicPropertyValue="Stringer"/>
|
||||
<assign applicPropertyIdent="tm_condition_text" applicPropertyType="condition" applicPropertyValue="Действие/Условие"/>
|
||||
<assign applicPropertyIdent="tm_reference_text" applicPropertyType="condition" applicPropertyValue="Ссылка"/>
|
||||
<assign applicPropertyIdent="tm_reqperson_text" applicPropertyType="condition" applicPropertyValue="Требуемый персонал"/>
|
||||
<assign applicPropertyIdent="tm_person_text" applicPropertyType="condition" applicPropertyValue="Персонал"/>
|
||||
<assign applicPropertyIdent="tm_cat_text" applicPropertyType="condition" applicPropertyValue="Категория"/>
|
||||
<assign applicPropertyIdent="tm_tradecode_text" applicPropertyType="condition" applicPropertyValue="Специальность/Код"/>
|
||||
<assign applicPropertyIdent="tm_skilllvl_text" applicPropertyType="condition" applicPropertyValue="Уровень квалификации"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk01" applicPropertyType="condition" applicPropertyValue="Базовый"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk02" applicPropertyType="condition" applicPropertyValue="Средний"/>
|
||||
<assign applicPropertyIdent="tm_skillLevelCode_sk03" applicPropertyType="condition" applicPropertyValue="Высокий"/>
|
||||
<assign applicPropertyIdent="tm_esttime_text" applicPropertyType="condition" applicPropertyValue="Ожидаемое время"/>
|
||||
<assign applicPropertyIdent="tm_applicto_text" applicPropertyType="condition" applicPropertyValue="Применимо к"/>
|
||||
<assign applicPropertyIdent="tm_model_text" applicPropertyType="condition" applicPropertyValue="Модель"/>
|
||||
<assign applicPropertyIdent="tm_version_text" applicPropertyType="condition" applicPropertyValue="Версия"/>
|
||||
<assign applicPropertyIdent="tm_supequip_text" applicPropertyType="condition" applicPropertyValue="Вспомогательное оборудование"/>
|
||||
<assign applicPropertyIdent="tm_manfac_text" applicPropertyType="condition" applicPropertyValue="Изготовитель"/>
|
||||
<assign applicPropertyIdent="tm_consumables_text" applicPropertyType="condition" applicPropertyValue="Расходуемые материалы"/>
|
||||
<assign applicPropertyIdent="tm_procedure_text" applicPropertyType="condition" applicPropertyValue="Процедура"/>
|
||||
<assign applicPropertyIdent="tm_spares_text" applicPropertyType="condition" applicPropertyValue="Запасные части"/>
|
||||
<assign applicPropertyIdent="tm_closecond_text" applicPropertyType="condition" applicPropertyValue="Требования после завершения работ"/>
|
||||
<assign applicPropertyIdent="tm_stocknmbr_text" applicPropertyType="condition" applicPropertyValue="Инвентарный номер"/>
|
||||
<assign applicPropertyIdent="tm_partno_text" applicPropertyType="condition" applicPropertyValue="Номер детали"/>
|
||||
<assign applicPropertyIdent="tm_partn_text" applicPropertyType="condition" applicPropertyValue="№"/>
|
||||
<assign applicPropertyIdent="tm_serialno_text" applicPropertyType="condition" applicPropertyValue="Серийный номер"/>
|
||||
<assign applicPropertyIdent="tm_refid_text" applicPropertyType="condition" applicPropertyValue="Ссылки"/>
|
||||
<assign applicPropertyIdent="tm_remarks_text" applicPropertyType="condition" applicPropertyValue="Примечания"/>
|
||||
<assign applicPropertyIdent="tm_note_text" applicPropertyType="condition" applicPropertyValue="Примечание"/>
|
||||
<assign applicPropertyIdent="tm_warning_text" applicPropertyType="condition" applicPropertyValue="ПРЕДУПРЕЖДЕНИЕ"/>
|
||||
<assign applicPropertyIdent="tm_danger_text" applicPropertyType="condition" applicPropertyValue="ОПАСНО"/>
|
||||
<assign applicPropertyIdent="tm_caution_text" applicPropertyType="condition" applicPropertyValue="ПРЕДОСТЕРЕЖЕНИЕ"/>
|
||||
<assign applicPropertyIdent="tm_safcon_text" applicPropertyType="condition" applicPropertyValue="Требования безопасности"/>
|
||||
<assign applicPropertyIdent="tm_isoendstep_text" applicPropertyType="condition" applicPropertyValue="Конец процедуры локализации"/>
|
||||
<assign applicPropertyIdent="tm_isoproc_text" applicPropertyType="condition" applicPropertyValue="Процедура локализации"/>
|
||||
<assign applicPropertyIdent="tm_description_text" applicPropertyType="condition" applicPropertyValue="Описание"/>
|
||||
<assign applicPropertyIdent="tm_reqconds_text" applicPropertyType="condition" applicPropertyValue="Требуемые условия"/>
|
||||
<assign applicPropertyIdent="tm_schedule_text" applicPropertyType="condition" applicPropertyValue="Планирование технического обслуживания"/>
|
||||
<assign applicPropertyIdent="tm_fault_text" applicPropertyType="condition" applicPropertyValue="Неисправность"/>
|
||||
<assign applicPropertyIdent="tm_faultreport_text" applicPropertyType="condition" applicPropertyValue="Отчеты о неисправностях"/>
|
||||
<assign applicPropertyIdent="tm_faultisolation_text" applicPropertyType="condition" applicPropertyValue="Локализация неисправностей"/>
|
||||
<assign applicPropertyIdent="tm_crewrefcard_text" applicPropertyType="condition" applicPropertyValue="Контрольная карта"/>
|
||||
<assign applicPropertyIdent="tm_crewdescr_text" applicPropertyType="condition" applicPropertyValue="Описание для экипажа"/>
|
||||
<assign applicPropertyIdent="tm_commrep_text" applicPropertyType="condition" applicPropertyValue="Общий репозиторий"/>
|
||||
<assign applicPropertyIdent="tm_comminfo_text" applicPropertyType="condition" applicPropertyValue="Общая информация"/>
|
||||
<assign applicPropertyIdent="tm_endofdm_text" applicPropertyType="condition" applicPropertyValue="Конец модуля данных"/>
|
||||
<assign applicPropertyIdent="tm_ipp_text" applicPropertyType="condition" applicPropertyValue="Проект начальной поставки"/>
|
||||
<assign applicPropertyIdent="tm_item_text" applicPropertyType="condition" applicPropertyValue="Деталь"/>
|
||||
<assign applicPropertyIdent="tm_upha_text" applicPropertyType="condition" applicPropertyValue="Кол-во на СБ"/>
|
||||
<assign applicPropertyIdent="tm_uoi_text" applicPropertyType="condition" applicPropertyValue="Ед.изм."/>
|
||||
<assign applicPropertyIdent="tm_design_text" applicPropertyType="condition" applicPropertyValue="Обозначение"/>
|
||||
<assign applicPropertyIdent="tm_ncage_text" applicPropertyType="condition" applicPropertyValue="Код изг-ля"/>
|
||||
<assign applicPropertyIdent="tm_nsn_text" applicPropertyType="condition" applicPropertyValue="Код поставки НАТО"/>
|
||||
<assign applicPropertyIdent="tm_nomen_text" applicPropertyType="condition" applicPropertyValue="Наименование"/>
|
||||
<assign applicPropertyIdent="tm_uoc_text" applicPropertyType="condition" applicPropertyValue="UOC"/>
|
||||
<assign applicPropertyIdent="tm_mv_text" applicPropertyType="condition" applicPropertyValue="Взаим."/>
|
||||
<assign applicPropertyIdent="tm_effect_text" applicPropertyType="condition" applicPropertyValue="Прим."/>
|
||||
<assign applicPropertyIdent="tm_notill_text" applicPropertyType="condition" applicPropertyValue="Не показано"/>
|
||||
<assign applicPropertyIdent="tm_reftype_" applicPropertyType="condition" applicPropertyValue="Смотри"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft01" applicPropertyType="condition" applicPropertyValue="Смотри СБ"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft02" applicPropertyType="condition" applicPropertyValue="Подробнее"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft05" applicPropertyType="condition" applicPropertyValue="Деталь крепления"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft03" applicPropertyType="condition" applicPropertyValue="Деталь-аналог"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft04" applicPropertyType="condition" applicPropertyValue="Деталь замещения"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft06" applicPropertyType="condition" applicPropertyValue="Деталь для монтажа/демонтажа"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft07" applicPropertyType="condition" applicPropertyValue="Выбрать из деталей"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft08" applicPropertyType="condition" applicPropertyValue="Макс размер/Мин размер"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft09" applicPropertyType="condition" applicPropertyValue="Деталь соединения"/>
|
||||
<assign applicPropertyIdent="tm_reftype_rft10" applicPropertyType="condition" applicPropertyValue="Разбивка"/>
|
||||
<assign applicPropertyIdent="tm_ipc_text" applicPropertyType="condition" applicPropertyValue="Иллюстрированный каталог деталей"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_" applicPropertyType="condition" applicPropertyValue="Все"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm01" applicPropertyType="condition" applicPropertyValue="Все"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm02" applicPropertyType="condition" applicPropertyValue="КВС"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm03" applicPropertyType="condition" applicPropertyValue="2П"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm04" applicPropertyType="condition" applicPropertyValue="ШТ"/>
|
||||
<assign applicPropertyIdent="tm_crewmembertype_cm05" applicPropertyType="condition" applicPropertyValue="Б"/>
|
||||
<assign applicPropertyIdent="tm_if_text" applicPropertyType="condition" applicPropertyValue="Если"/>
|
||||
<assign applicPropertyIdent="tm_case_text" applicPropertyType="condition" applicPropertyValue="Выбор"/>
|
||||
<assign applicPropertyIdent="tm_elseif_text" applicPropertyType="condition" applicPropertyValue="Иначе если"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_text" applicPropertyType="condition" applicPropertyValue="Приоритет комментария"/>
|
||||
<assign applicPropertyIdent="tm_commorig_text" applicPropertyType="condition" applicPropertyValue="Разработчик комментария"/>
|
||||
<assign applicPropertyIdent="tm_entName_text" applicPropertyType="condition" applicPropertyValue="Наименование организации"/>
|
||||
<assign applicPropertyIdent="tm_division_text" applicPropertyType="condition" applicPropertyValue="Подразделение"/>
|
||||
<assign applicPropertyIdent="tm_entUnit_text" applicPropertyType="condition" applicPropertyValue="Организационная единица"/>
|
||||
<assign applicPropertyIdent="tm_LastName_text" applicPropertyType="condition" applicPropertyValue="Фамилия"/>
|
||||
<assign applicPropertyIdent="tm_FirstName_text" applicPropertyType="condition" applicPropertyValue="Имя"/>
|
||||
<assign applicPropertyIdent="tm_JobTitle_text" applicPropertyType="condition" applicPropertyValue="Должность"/>
|
||||
<assign applicPropertyIdent="tm_department_text" applicPropertyType="condition" applicPropertyValue="Отдел"/>
|
||||
<assign applicPropertyIdent="tm_street_text" applicPropertyType="condition" applicPropertyValue="Улица"/>
|
||||
<assign applicPropertyIdent="tm_pobox_text" applicPropertyType="condition" applicPropertyValue="Почтовый ящик"/>
|
||||
<assign applicPropertyIdent="tm_poZipCode_text" applicPropertyType="condition" applicPropertyValue="Почтовый индекс"/>
|
||||
<assign applicPropertyIdent="tm_city_text" applicPropertyType="condition" applicPropertyValue="Город"/>
|
||||
<assign applicPropertyIdent="tm_country_text" applicPropertyType="condition" applicPropertyValue="Страна"/>
|
||||
<assign applicPropertyIdent="tm_state_text" applicPropertyType="condition" applicPropertyValue="Штат"/>
|
||||
<assign applicPropertyIdent="tm_province_text" applicPropertyType="condition" applicPropertyValue="Область/Район"/>
|
||||
<assign applicPropertyIdent="tm_building_text" applicPropertyType="condition" applicPropertyValue="Строение"/>
|
||||
<assign applicPropertyIdent="tm_room_text" applicPropertyType="condition" applicPropertyValue="Офис/Комната"/>
|
||||
<assign applicPropertyIdent="tm_phoneNumber_text" applicPropertyType="condition" applicPropertyValue="Телефон"/>
|
||||
<assign applicPropertyIdent="tm_faxNumber_text" applicPropertyType="condition" applicPropertyValue="Факс"/>
|
||||
<assign applicPropertyIdent="tm_email_text" applicPropertyType="condition" applicPropertyValue="Эл. почта"/>
|
||||
<assign applicPropertyIdent="tm_internet_text" applicPropertyType="condition" applicPropertyValue="Веб-сайт"/>
|
||||
<assign applicPropertyIdent="tm_SITA_text" applicPropertyType="condition" applicPropertyValue="Код SITA"/>
|
||||
<assign applicPropertyIdent="tm_commrefs_text" applicPropertyType="condition" applicPropertyValue="Ссылки комментария"/>
|
||||
<assign applicPropertyIdent="tm_commcontent_text" applicPropertyType="condition" applicPropertyValue="Содержание комментария"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp01" applicPropertyType="condition" applicPropertyValue="Обычный"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp02" applicPropertyType="condition" applicPropertyValue="Срочный"/>
|
||||
<assign applicPropertyIdent="tm_commpriority_cp03" applicPropertyType="condition" applicPropertyValue="Влияющий на безопасность"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt01" applicPropertyType="condition" applicPropertyValue="Принят"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt02" applicPropertyType="condition" applicPropertyValue="В очереди"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt03" applicPropertyType="condition" applicPropertyValue="Частично принят"/>
|
||||
<assign applicPropertyIdent="tm_responsetype_rt04" applicPropertyType="condition" applicPropertyValue="Отклонен"/>
|
||||
<assign applicPropertyIdent="tm_pm_text" applicPropertyType="condition" applicPropertyValue="Публикационный модуль"/>
|
||||
<assign applicPropertyIdent="tm_comc_text" applicPropertyType="condition" applicPropertyValue="Код комментария"/>
|
||||
<assign applicPropertyIdent="tm_gotoclosereqs_text" applicPropertyType="condition" applicPropertyValue="Перейти к требованиям после завершения работ"/>
|
||||
<assign applicPropertyIdent="tm_goto_text" applicPropertyType="condition" applicPropertyValue="Перейти к"/>
|
||||
<assign applicPropertyIdent="tm_faultcode_text" applicPropertyType="condition" applicPropertyValue="Код неисправности"/>
|
||||
<assign applicPropertyIdent="tm_techinfo_text" applicPropertyType="condition" applicPropertyValue="Разработано на основании"/>
|
||||
<assign applicPropertyIdent="tm_multpquest_text" applicPropertyType="condition" applicPropertyValue="Вопрос с несколькими вариантами ответа"/>
|
||||
<assign applicPropertyIdent="tm_singlquest_text" applicPropertyType="condition" applicPropertyValue="Вопрос с одним вариантом ответа"/>
|
||||
<assign applicPropertyIdent="tm_sequenquest_text" applicPropertyType="condition" applicPropertyValue="Вопрос на определение последовательности"/>
|
||||
<assign applicPropertyIdent="tm_mathingquest_text" applicPropertyType="condition" applicPropertyValue="Вопрос на сопоставление"/>
|
||||
<assign applicPropertyIdent="tm_quest_text" applicPropertyType="condition" applicPropertyValue="Вопрос " />
|
||||
<assign applicPropertyIdent="tm_questof_text" applicPropertyType="condition" applicPropertyValue=" из " />
|
||||
<assign applicPropertyIdent="tm_questbtnext_text" applicPropertyType="condition" applicPropertyValue="Далее" />
|
||||
<assign applicPropertyIdent="tm_questbtchk_text" applicPropertyType="condition" applicPropertyValue="Проверить" />
|
||||
</product>
|
||||
</productCrossRefTable>
|
||||
</content>
|
||||
</dmodule>
|
||||
718
ИЭТР-тест/Develop/app/Functions.js
Normal file
@@ -0,0 +1,718 @@
|
||||
/*******************************************************************************
|
||||
ADL SCORM 2004 4th Edition MSCE
|
||||
|
||||
The ADL SCORM 2004 4th Ed. MSCE is licensed under
|
||||
|
||||
Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States.
|
||||
|
||||
|
||||
|
||||
The Advanced Distributed Learning Initiative allows you to:
|
||||
|
||||
* Share - to copy, distribute and transmit the work.
|
||||
|
||||
* Remix - to adapt the work.
|
||||
|
||||
|
||||
|
||||
Under the following conditions:
|
||||
|
||||
* Attribution. You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work).
|
||||
|
||||
* Noncommercial. You may not use this work for commercial purposes.
|
||||
|
||||
* Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar license to this one.
|
||||
|
||||
|
||||
|
||||
For any reuse or distribution, you must make clear to others the license terms of this work.
|
||||
|
||||
Any of the above conditions can be waived if you get permission from the ADL Initiative.
|
||||
|
||||
Nothing in this license impairs or restricts the author's moral rights.
|
||||
|
||||
*******************************************************************************/
|
||||
function Trim(s)
|
||||
{
|
||||
// Remove leading spaces and carriage returns
|
||||
|
||||
while ((s.substring(0,1) == ' ') || (s.substring(0,1) == '\n') || (s.substring(0,1) == '\r'))
|
||||
{
|
||||
s = s.substring(1,s.length);
|
||||
}
|
||||
|
||||
// Remove trailing spaces and carriage returns
|
||||
|
||||
while ((s.substring(s.length-1,s.length) == ' ') || (s.substring(s.length-1,s.length) == '\n') || (s.substring(s.length-1,s.length) == '\r'))
|
||||
{
|
||||
s = s.substring(0,s.length-1);
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
//-- BEGIN ASSESSMENT VALIDATION and FEEDBACK FUNCTIONS
|
||||
// Set some variables global to the SCO
|
||||
var answer = "";
|
||||
var rawScore = 0;
|
||||
var exitPageStatus = false;
|
||||
|
||||
/**********************************************************************
|
||||
** Function: submitenter( myfield, e )
|
||||
** Description: This function is responsible for catching if the
|
||||
** "Enter" key has been pressed in answering a fill-in question
|
||||
** to submit the answer for validation, handled generically by
|
||||
** checking for the event ("e").
|
||||
**********************************************************************/
|
||||
function submitenter( e )
|
||||
{
|
||||
var keycode;
|
||||
if ( window.event ) keycode = window.event.keyCode;
|
||||
else if ( e ) keycode = e.which;
|
||||
else return true;
|
||||
if ( keycode == 13 )
|
||||
{
|
||||
calcScore();
|
||||
return false;
|
||||
}
|
||||
else return true;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: convertCase()
|
||||
** Description: This function is responsible lowercasing the user
|
||||
** entered value.
|
||||
**********************************************************************/
|
||||
function convertCase()
|
||||
{
|
||||
var x = document.examForm.Q1.value;
|
||||
if ( x != "" )
|
||||
{
|
||||
x = Trim( x.toLowerCase() );
|
||||
}
|
||||
return x;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: calcRawScore()
|
||||
** Description: This function is responsible for incrementing the raw
|
||||
** score (cmi.score.raw) if the question was
|
||||
** answered correctly. If not, it keeps the raw score
|
||||
** at its initial value (0).
|
||||
**********************************************************************/
|
||||
function calcRawScore()
|
||||
{
|
||||
rawScore = 0;
|
||||
//loop through the possible
|
||||
for( i=0; i < key.length; i++ )
|
||||
{
|
||||
if( convertCase() == Trim( key[i].toLowerCase() ) )
|
||||
{
|
||||
rawScore++;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: calcScore()
|
||||
** Description: This function is responsible for using the raw score
|
||||
** set in "calcRawScore()" to determine the status of
|
||||
** the SCO. The scaled score
|
||||
** (cmi.score.scaled), Success Status
|
||||
** (cmi.success_status) and Completion Status
|
||||
** (cmi.completion_status) are set appropriately.
|
||||
** After each value is set, the SCO is finished with a
|
||||
** call to Terminate().
|
||||
**********************************************************************/
|
||||
function calcScore(v)
|
||||
{
|
||||
doSetValue( "cmi.score.scaled", v );
|
||||
if ( v < 70 )
|
||||
{
|
||||
doSetValue( "cmi.success_status", "failed" );
|
||||
}
|
||||
else
|
||||
{
|
||||
doSetValue( "cmi.success_status", "passed" );
|
||||
}
|
||||
doSetValue( "cmi.completion_status", "completed" );
|
||||
doSetValue( "cmi.exit", "" );
|
||||
exitPageStatus = true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
** Function: showDiv( exempt )
|
||||
** Description: This function is called to display or hide content
|
||||
** within a div tag identified by the parameter, "exempt."
|
||||
**********************************************************************/
|
||||
function pretestShowDiv( exempt )
|
||||
{
|
||||
// if older browsers can't understand a document.getElementsByTagName
|
||||
if (!document.getElementsByTagName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
// otherwise, proceed...
|
||||
var divs = document.getElementsByTagName("div");
|
||||
for ( var i = 0; i < divs.length; i++ )
|
||||
{
|
||||
var div = divs[i];
|
||||
var id = div.id;
|
||||
if ( id.substring(0,6) == "assess" )
|
||||
{
|
||||
div.style.display = "none";
|
||||
}
|
||||
if ( id == exempt )
|
||||
{
|
||||
div.style.display = "block";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function pretestBtnAction(thisId, btn)
|
||||
{
|
||||
if (btn == 'prev')
|
||||
{
|
||||
// Go to previous SCO if back is hit on first page
|
||||
if (prevId == 1){
|
||||
Previous();
|
||||
return;
|
||||
}
|
||||
else{
|
||||
prevId--;
|
||||
nextId--;
|
||||
pretestShowDiv('assess'+prevId);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
prevId++;
|
||||
nextId++;
|
||||
pretestShowDiv('assess'+nextId);
|
||||
}
|
||||
document.getElementById('prevBtn').style.visibility='visible';
|
||||
document.getElementById('nextBtn').style.visibility='visible';
|
||||
document.getElementById('submitBtn').style.visibility='hidden';
|
||||
if (prevId == 1)
|
||||
{
|
||||
// On first page, display previous button if LMS indicates previous sco availible
|
||||
if (RenderPreviousButton()) {
|
||||
document.getElementById('prevBtn').style.visibility='visible';
|
||||
}
|
||||
else{
|
||||
document.getElementById('prevBtn').style.visibility='hidden';
|
||||
}
|
||||
}
|
||||
if (nextId == document.getElementById('content').getElementsByTagName("div").length)
|
||||
{
|
||||
document.getElementById('nextBtn').style.visibility='hidden';
|
||||
document.getElementById('submitBtn').style.visibility='visible';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**********************************************************************
|
||||
** Function: pretestCalcRawScore()
|
||||
** Description: This function is responsible for incrementing the raw
|
||||
** score (cmi.score.raw) if the question was
|
||||
** answered correctly. If not, it keeps the raw score
|
||||
** at its initial value (0).
|
||||
**********************************************************************/
|
||||
function pretestCalcRawScore()
|
||||
{
|
||||
rawScore1 = 0;
|
||||
rawScore2 = 0;
|
||||
rawScore3 = 0;
|
||||
//loop through the possible
|
||||
for( i=0; i < key.length; i++ )
|
||||
{
|
||||
compareAnswer = "unanswered";
|
||||
if (i == "0"){compareAnswer = document.examForm.Q1.value;}
|
||||
else if (i == "1"){for (var k=0; k<document.examForm.Q2.length; k++){if (document.examForm.Q2[k].checked) {compareAnswer = document.examForm.Q2[k].value;}}}
|
||||
else if (i == "2"){for (var k=0; k<document.examForm.Q3.length; k++){if (document.examForm.Q3[k].checked) {compareAnswer = document.examForm.Q3[k].value;}}}
|
||||
else if (i == "3"){for (var k=0; k<document.examForm.Q4.length; k++){if (document.examForm.Q4[k].checked) {compareAnswer = document.examForm.Q4[k].value;}}}
|
||||
else if (i == "4"){for (var k=0; k<document.examForm.Q5.length; k++){if (document.examForm.Q5[k].checked) {compareAnswer = document.examForm.Q5[k].value;}}}
|
||||
else if (i == "5"){compareAnswer = document.examForm.Q6.value;}
|
||||
else if (i == "6"){compareAnswer = document.examForm.Q7.value;}
|
||||
else if (i == "7"){compareAnswer = document.examForm.Q8.value;}
|
||||
else if (i == "8"){for (var k=0; k<document.examForm.Q9.length; k++){if (document.examForm.Q9[k].checked) {compareAnswer = document.examForm.Q9[k].value;}}}
|
||||
else if (i == "9"){compareAnswer = document.examForm.Q10.value;}
|
||||
else if (i == "10"){compareAnswer = document.examForm.Q11.value;}
|
||||
else if (i == "11"){compareAnswer = document.examForm.Q12.value;}
|
||||
else if (i == "12"){compareAnswer = document.examForm.Q13.value;}
|
||||
else if (i == "13"){compareAnswer = document.examForm.Q14.value;}
|
||||
else if (i == "14"){compareAnswer = document.examForm.Q15.value;}
|
||||
else if (i == "15"){compareAnswer = document.examForm.Q16.value;}
|
||||
else if (i == "16"){for (var k=0; k<document.examForm.Q17.length; k++){if (document.examForm.Q17[k].checked) {compareAnswer = document.examForm.Q17[k].value;}}}
|
||||
else if (i == "17"){for (var k=0; k<document.examForm.Q18.length; k++){if (document.examForm.Q18[k].checked) {compareAnswer = document.examForm.Q18[k].value;}}}
|
||||
else if (i == "18"){for (var k=0; k<document.examForm.Q19.length; k++){if (document.examForm.Q19[k].checked) {compareAnswer = document.examForm.Q19[k].value;}}}
|
||||
else if (i == "19"){for (var k=0; k<document.examForm.Q20.length; k++){if (document.examForm.Q20[k].checked) {compareAnswer = document.examForm.Q20[k].value;}}}
|
||||
else if (i == "20"){compareAnswer = document.examForm.Q21.value;}
|
||||
else if (i == "21"){for (var k=0; k<document.examForm.Q22.length; k++){if (document.examForm.Q22[k].checked) {compareAnswer = document.examForm.Q22[k].value;}}}
|
||||
else if (i == "22"){for (var k=0; k<document.examForm.Q23.length; k++){if (document.examForm.Q23[k].checked) {compareAnswer = document.examForm.Q23[k].value;}}}
|
||||
else if (i == "23"){for (var k=0; k<document.examForm.Q24.length; k++){if (document.examForm.Q24[k].checked) {compareAnswer = document.examForm.Q24[k].value;}}}
|
||||
else if (i == "24"){for (var k=0; k<document.examForm.Q25.length; k++){if (document.examForm.Q25[k].checked) {compareAnswer = document.examForm.Q25[k].value;}}}
|
||||
else if (i == "25"){for (var k=0; k<document.examForm.Q26.length; k++){if (document.examForm.Q26[k].checked) {compareAnswer = document.examForm.Q26[k].value;}}}
|
||||
else if (i == "26"){for (var k=0; k<document.examForm.Q27.length; k++){if (document.examForm.Q27[k].checked) {compareAnswer = document.examForm.Q27[k].value;}}}
|
||||
else if (i == "27"){for (var k=0; k<document.examForm.Q28.length; k++){if (document.examForm.Q28[k].checked) {compareAnswer = document.examForm.Q28[k].value;}}}
|
||||
else if (i == "28"){for (var k=0; k<document.examForm.Q29.length; k++){if (document.examForm.Q29[k].checked) {compareAnswer = document.examForm.Q29[k].value;}}}
|
||||
else if (i == "29"){for (var k=0; k<document.examForm.Q30.length; k++){if (document.examForm.Q30[k].checked) {compareAnswer = document.examForm.Q30[k].value;}}}
|
||||
else if (i == "30"){for (var k=0; k<document.examForm.Q31.length; k++){if (document.examForm.Q31[k].checked) {compareAnswer = document.examForm.Q31[k].value;}}}
|
||||
else if (i == "31"){for (var k=0; k<document.examForm.Q32.length; k++){if (document.examForm.Q32[k].checked) {compareAnswer = document.examForm.Q32[k].value;}}}
|
||||
else if (i == "32"){for (var k=0; k<document.examForm.Q33.length; k++){if (document.examForm.Q33[k].checked) {compareAnswer = document.examForm.Q33[k].value;}}}
|
||||
else if (i == "33"){for (var k=0; k<document.examForm.Q34.length; k++){if (document.examForm.Q34[k].checked) {compareAnswer = document.examForm.Q34[k].value;}}}
|
||||
else if (i == "34"){for (var k=0; k<document.examForm.Q35.length; k++){if (document.examForm.Q35[k].checked) {compareAnswer = document.examForm.Q35[k].value;}}}
|
||||
compareAnswer = Trim(compareAnswer.toLowerCase());
|
||||
if (typeof key[i] == "object")
|
||||
{
|
||||
for ( k=0; k < key[i].length; k++ )
|
||||
{
|
||||
compareKey = Trim( key[i][k].toLowerCase());
|
||||
//alert (compareAnswer);
|
||||
//alert (compareKey);
|
||||
if( compareAnswer == compareKey )
|
||||
{
|
||||
if (i <= 3){ rawScore1++; }
|
||||
if ( 3 < i && i <= 23){ rawScore2++; }
|
||||
if ( 23 < i && i <= 33){ rawScore3++; }
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
compareKey = Trim( key[i].toLowerCase());
|
||||
//alert (compareAnswer);
|
||||
//alert (compareKey);
|
||||
if( compareAnswer == compareKey )
|
||||
{
|
||||
if (i <= 3){ rawScore1++; }
|
||||
if ( 3 < i && i <= 23){ rawScore2++; }
|
||||
if ( 23 < i && i <= 33){ rawScore3++; }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: calcScore()
|
||||
** Description: This function is responsible for using the raw score
|
||||
** set in "calcRawScore()" to determine the status of
|
||||
** the SCO. The scaled score
|
||||
** (cmi.score.scaled), Success Status
|
||||
** (cmi.success_status) and Completion Status
|
||||
** (cmi.completion_status) are set appropriately.
|
||||
** After each value is set, the SCO is finished with a
|
||||
** call to Terminate().
|
||||
**********************************************************************/
|
||||
function pretestCalcScore()
|
||||
{
|
||||
// Disable the submit buttons so that it can not be clicked
|
||||
document.examForm.submitBtn.disabled = true;
|
||||
|
||||
// Get the raw score
|
||||
pretestCalcRawScore();
|
||||
|
||||
// Set the scaled score that will be used in the
|
||||
// Sequencing Tracking Model
|
||||
var childCount = doGetValue("cmi.objectives._count");
|
||||
|
||||
for (i=0; i < childCount; i++){
|
||||
|
||||
var currentVal = doGetValue("cmi.objectives."+i+".id");
|
||||
if (currentVal == "obj_module_1")
|
||||
{
|
||||
var id1 = "cmi.objectives."+i;
|
||||
}
|
||||
else if (currentVal == "obj_module_2")
|
||||
{
|
||||
var id2 = "cmi.objectives."+i;
|
||||
}
|
||||
else if (currentVal == "obj_module_3")
|
||||
{
|
||||
var id3 = "cmi.objectives."+i;
|
||||
}
|
||||
}
|
||||
|
||||
var scaledScore1 = Math.round( rawScore1 / 3 * 100 ) / 100;
|
||||
if (scaledScore1 >= 1 ) { scaledScore1 = 1; }
|
||||
doSetValue( id1 + ".score.scaled", String( scaledScore1 ) );
|
||||
if ( rawScore1 >= 3 )
|
||||
{
|
||||
doSetValue( id1+".success_status", "passed" );
|
||||
}
|
||||
else
|
||||
{
|
||||
doSetValue( id1+".success_status", "failed" );
|
||||
}
|
||||
|
||||
var scaledScore2 = Math.round( rawScore2 / 15 * 100 ) / 100;
|
||||
if (scaledScore2 >= 1 ) { scaledScore2 = 1; }
|
||||
doSetValue( id2 + ".score.scaled", String( scaledScore2 ) );
|
||||
if ( rawScore2 >= 15 )
|
||||
{
|
||||
doSetValue( id2+".success_status", "passed" );
|
||||
}
|
||||
else
|
||||
{
|
||||
doSetValue( id2+".success_status", "failed" );
|
||||
}
|
||||
|
||||
var scaledScore3 = Math.round( rawScore3 / 8 * 100 ) / 100;
|
||||
if (scaledScore3 >= 1 ) { scaledScore3 = 1; }
|
||||
doSetValue( id3 + ".score.scaled", String( scaledScore3 ) );
|
||||
if ( rawScore3 >= 8 )
|
||||
{
|
||||
doSetValue( id3+".success_status", "passed" );
|
||||
}
|
||||
else
|
||||
{
|
||||
doSetValue( id3+".success_status", "failed" );
|
||||
}
|
||||
// Set the SCO to completed with a normal exit
|
||||
doSetValue( "cmi.completion_status", "completed" );
|
||||
doSetValue( "cmi.exit", "" );
|
||||
|
||||
|
||||
// Indicate that the SCO was finished normally
|
||||
exitPageStatus = true;
|
||||
IntraNavigation = true;
|
||||
// we request the next SCO from the LMS
|
||||
doSetValue("adl.nav.request", "continue");
|
||||
|
||||
var result = doTerminate();
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: loadPage()
|
||||
** Description: This is called when a SCO is first loaded in the
|
||||
** browser (onload()). It finds the API if it was not
|
||||
** already located and calls Initialize(). In
|
||||
** the exitPageStatus global variable is set to false
|
||||
** indicating that the SCO is not yet finished.
|
||||
**********************************************************************/
|
||||
function loadPage()
|
||||
{
|
||||
Initialize();
|
||||
SetContinue();
|
||||
exitPageStatus = false;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: doQuit()
|
||||
** Description: This function is called in the case that the user
|
||||
** does not finish the SCO "gracefully". For example,
|
||||
** the user may click the "continue" button before
|
||||
** submitting an answer to a question. In this case,
|
||||
** this function is called as part of the page unloading.
|
||||
** This function ensures that Terminate() is called
|
||||
** and that the correct statuses are set even if the
|
||||
** user closes the SCO window or navigates away before
|
||||
** finishing the SCO.
|
||||
**********************************************************************/
|
||||
function doQuit()
|
||||
{
|
||||
calcScore();
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: doQuit()
|
||||
** Description: This function is called in the case that the user
|
||||
** does not finish the SCO "gracefully". For example,
|
||||
** the user may click the "continue" button before
|
||||
** submitting an answer to a question. In this case,
|
||||
** this function is called as part of the page unloading.
|
||||
** This function ensures that Terminate() is called
|
||||
** even if the user closes the SCO window or navigates
|
||||
** away before finishing the SCO.
|
||||
**********************************************************************/
|
||||
function unloadPage()
|
||||
{
|
||||
|
||||
if (exitPageStatus != true)
|
||||
{
|
||||
doQuit();
|
||||
}
|
||||
|
||||
// NOTE: don't return anything that resembles a javascript
|
||||
// string from this function or IE will take the
|
||||
// liberty of displaying a confirm message box
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
** Function: showDiv( exempt )
|
||||
** Description: This function is called to display or hide content
|
||||
** within a div tag identified by the parameter, "exempt."
|
||||
**********************************************************************/
|
||||
function showDiv( exempt )
|
||||
{
|
||||
// if older browsers can't understand a document.getElementsByTagName
|
||||
if (!document.getElementsByTagName) {
|
||||
return null;
|
||||
}
|
||||
// otherwise, proceed...
|
||||
var divs = document.getElementsByTagName("div");
|
||||
for ( var i = 0; i < divs.length; i++ )
|
||||
{
|
||||
var div = divs[i];
|
||||
var id = div.id;
|
||||
if ( ( id == "question" ) || ( id == "correct" ) || ( id == "incorrect" ) )
|
||||
{
|
||||
div.style.display = "none";
|
||||
}
|
||||
if ( ( id == exempt ) )
|
||||
{
|
||||
div.style.display = "block";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
// JavaScript Document
|
||||
|
||||
// Global variables
|
||||
var IntraNavigation = false
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function is used to go to another page of a multi-page SCO
|
||||
**
|
||||
** Inputs: page - the location that we're bookmarking
|
||||
**
|
||||
**
|
||||
*******************************************************************************/
|
||||
function GoToPage( page )
|
||||
{
|
||||
IntraNavigation = true;
|
||||
|
||||
// replace the current page with the page specified
|
||||
window.location.replace( page );
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function is used to go to a previous SCO
|
||||
**
|
||||
*******************************************************************************/
|
||||
function Previous() {
|
||||
// we request the previous SCO from the LMS
|
||||
doSetValue( "adl.nav.request", "previous" );
|
||||
var value = doGetValue("adl.nav.request_valid.previous");
|
||||
IntraNavigation = true;
|
||||
// we terminate this SCO's communication with the LMS
|
||||
doTerminate();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function is used to go to a next SCO
|
||||
**
|
||||
*******************************************************************************/
|
||||
function Continue()
|
||||
{
|
||||
// we request the next SCO from the LMS
|
||||
doSetValue("adl.nav.request", "continue");
|
||||
IntraNavigation = true;
|
||||
// we terminate this SCO's communication with the LMS
|
||||
doTerminate();
|
||||
}
|
||||
function PreviousQuiz() {
|
||||
// we request the previous SCO from the LMS
|
||||
doSetValue( "adl.nav.request", "previous" );
|
||||
var value = doGetValue("adl.nav.request_valid.previous");
|
||||
IntraNavigation = true;
|
||||
// we terminate this SCO's communication with the LMS
|
||||
var result = doTerminate();
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function is used to go to a next SCO
|
||||
**
|
||||
*******************************************************************************/
|
||||
function ContinueQuiz()
|
||||
{
|
||||
// we request the next SCO from the LMS
|
||||
doSetValue("adl.nav.request", "continue");
|
||||
IntraNavigation = true;
|
||||
// we terminate this SCO's communication with the LMS
|
||||
var result = doTerminate();
|
||||
}
|
||||
|
||||
|
||||
function onUnexpectedExit()
|
||||
{
|
||||
|
||||
// we're going to check to see if this is a "good" exit or a "bad" exit
|
||||
if ( IntraNavigation == false )
|
||||
{
|
||||
// terminate our communication with the LMS
|
||||
doTerminate();
|
||||
}
|
||||
else
|
||||
{
|
||||
IntraNavigation = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Initialize SCO and set previous and continue button visible states
|
||||
**
|
||||
** Inputs: String - "singlePage" triggers check for a continue sco
|
||||
** otherwise only checks previous
|
||||
**
|
||||
** Return: None
|
||||
**
|
||||
*******************************************************************************/
|
||||
|
||||
function Initialize(SCOLength)
|
||||
{
|
||||
if ( !(entryStatus == "resume") )
|
||||
{
|
||||
doInitialize();
|
||||
}
|
||||
|
||||
// search dom for previous button - visibilty set off in html
|
||||
// turn previous button on if lms reports previous sco
|
||||
var imgs = document.getElementsByTagName("img");
|
||||
|
||||
for ( var i = 0; i < imgs.length; i++ ) {
|
||||
var img = imgs[i];
|
||||
var className = img.className;
|
||||
|
||||
if ( className == "prevBtn" ){
|
||||
if ( RenderPreviousButton() ){
|
||||
// show previous button
|
||||
img.style.visibility = "visible";
|
||||
}
|
||||
}
|
||||
if (SCOLength == "singlepage"){
|
||||
if ( className == "nextBtn" ){
|
||||
if ( RenderContinueButton() ){
|
||||
// show continue button
|
||||
img.style.visibility = "visible";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// we need to determine if this is a new "learner attempt" or a
|
||||
// suspended "learner attempt
|
||||
var entryStatus = doGetValue( "cmi.entry" );
|
||||
|
||||
|
||||
// check to see if this a resumption of a suspended learner attempt
|
||||
/***********************************************************
|
||||
** Currently NOT needed (keep for future use/reminder)
|
||||
************************************************************
|
||||
if ( entryStatus == "resume" )
|
||||
{
|
||||
var location = retrieveDataValue( "cmi.location" );
|
||||
|
||||
// jump to the location we just retrieved
|
||||
|
||||
//find the path name of the current SCO
|
||||
var path = getSCOLocation(currentSCO); //Need to recreate getSCOLocation function with method you decided to use
|
||||
var newLocation = path+location+".html";
|
||||
window.location.replace( newLocation );
|
||||
}
|
||||
*************************************************/
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function is used to by multi-page SCOs in the process of determining
|
||||
** whether or not to display a next button on the last page of a multi-page SCO
|
||||
**
|
||||
** Inputs: None
|
||||
**
|
||||
** Return: None
|
||||
**
|
||||
*******************************************************************************/
|
||||
|
||||
function SetContinue() {
|
||||
// search dom for next button - visibilty set off in html
|
||||
// turn next button on if lms reports continue sco
|
||||
var imgs = document.getElementsByTagName("img");
|
||||
|
||||
for ( var i = 0; i < imgs.length; i++ ) {
|
||||
var img = imgs[i];
|
||||
var className = img.className;
|
||||
|
||||
if ( className == "nextBtn" ){
|
||||
if ( RenderContinueButton() ){
|
||||
// show continue button
|
||||
img.style.visibility = "visible";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** Makes the appropriate calls for a normal exit calling Terminate and
|
||||
** setting some data model elements for a normal exit
|
||||
**
|
||||
** Inputs: None
|
||||
**
|
||||
** Return: None
|
||||
**
|
||||
*******************************************************************************/
|
||||
function Terminate()
|
||||
{
|
||||
if (!IntraNavigation)
|
||||
{
|
||||
doSetValue( "cmi.completion_status", "completed" );
|
||||
|
||||
doSetValue( "cmi.exit", "" );
|
||||
|
||||
doTerminate();
|
||||
}
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function asks the LMS if there exists a previous SCO or Asset to go to.
|
||||
** If a SCO or Asset exists, then the previous button is displayed.
|
||||
**
|
||||
** Inputs: None
|
||||
**
|
||||
** Return: String - "true" if the previous button should be displayed
|
||||
** "false" if failed.
|
||||
**
|
||||
*******************************************************************************/
|
||||
function RenderPreviousButton() {
|
||||
var value = doGetValue("adl.nav.request_valid.previous");
|
||||
|
||||
if (value == "true"){
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
**
|
||||
** This function asks the LMS if there exists a next SCO or Asset to continue
|
||||
** to. If a SCO or Asset exists, then the continue button is displayed.
|
||||
**
|
||||
** Inputs: None
|
||||
**
|
||||
** Return: String - "true" if the continue button should be displayed
|
||||
** "false" if failed.
|
||||
**
|
||||
*******************************************************************************/
|
||||
function RenderContinueButton() {
|
||||
var value = doGetValue("adl.nav.request_valid.continue");
|
||||
|
||||
if (value == "true"){
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
241
ИЭТР-тест/Develop/app/assessment.css
Normal file
@@ -0,0 +1,241 @@
|
||||
.seqAnswerList
|
||||
{
|
||||
list-style-type: lower-alpha;
|
||||
}
|
||||
#feedbackCorrect
|
||||
{
|
||||
text-align: center;
|
||||
display: none;
|
||||
color: green;
|
||||
}
|
||||
#feedbackIncorrect
|
||||
{
|
||||
text-align: center;
|
||||
display: none;
|
||||
color: red;
|
||||
}
|
||||
#noAnswerChosen
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
.answerList
|
||||
{
|
||||
margin-left:25px;
|
||||
}
|
||||
.header
|
||||
{
|
||||
height: auto;
|
||||
/*margin-top: 50px;*/
|
||||
}
|
||||
.knowledgeCheckHeader
|
||||
{
|
||||
font-size: 18 pt;
|
||||
font-weight: bold;
|
||||
color: #374F3F;
|
||||
/* position: absolute; */
|
||||
position: relative;
|
||||
/* top: 3.5em; */
|
||||
z-index: 10;
|
||||
padding-left: 0.5em;
|
||||
/* bottom: 0.7em;
|
||||
margin-top: 1em; */
|
||||
text-align: center;
|
||||
}
|
||||
.fancySmallLine
|
||||
{
|
||||
position: relative;
|
||||
float: left;
|
||||
height: 0.1em;
|
||||
width: 100%;
|
||||
/* z-index: -1; */
|
||||
bottom: 2.45em;
|
||||
border: 0; /* none; */
|
||||
}
|
||||
|
||||
.fancyLine
|
||||
{
|
||||
position: relative;
|
||||
float: left;
|
||||
height: 0.8em;
|
||||
width: 100%;
|
||||
/* z-index: -1; */
|
||||
bottom: 2.4em;
|
||||
border: 0; /* none; */
|
||||
}
|
||||
|
||||
.content /* use with image*/
|
||||
{
|
||||
/*display: inline;*/
|
||||
width:auto; /* how wide the picture is...may not be the best way to keep everything lined up horizontally */
|
||||
}
|
||||
.checkButton
|
||||
{
|
||||
/*background: #3498db;
|
||||
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
|
||||
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
|
||||
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
|
||||
background-image: -o-linear-gradient(top, #3498db, #2980b9);
|
||||
background-image: linear-gradient(to bottom, #3498db, #2980b9);
|
||||
-webkit-border-radius: 0;
|
||||
-moz-border-radius: 0;
|
||||
border-radius: 0px;
|
||||
font-family: Arial;
|
||||
color: #ffffff;
|
||||
font-size: 14px;
|
||||
padding: 10px 20px 10px 20px;
|
||||
text-decoration: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: block;*/
|
||||
border: none;
|
||||
padding: 0 50px;
|
||||
height: 50px;
|
||||
color: #fff;
|
||||
background: rgb(124,37,41);
|
||||
font-size: 20px;
|
||||
font-family: RobotoRegular, Arial, sans-serif;
|
||||
margin: 10px;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.checkButton:hover {
|
||||
background: rgb(157,34,53);
|
||||
/*background-image: -webkit-linear-gradient(top, #3cb0fd, #3934d9);
|
||||
background-image: -moz-linear-gradient(top, #3cb0fd, #3934d9);
|
||||
background-image: -ms-linear-gradient(top, #3cb0fd, #3934d9);
|
||||
background-image: -o-linear-gradient(top, #3cb0fd, #3934d9);
|
||||
background-image: linear-gradient(to bottom, #3cb0fd, #3934d9);*/
|
||||
text-decoration: none;
|
||||
}
|
||||
.checkButtonImage
|
||||
{
|
||||
margin: auto;
|
||||
display: block;
|
||||
}
|
||||
.line
|
||||
{
|
||||
height: 2px;
|
||||
/* Old browsers (this seems to hurt the rendering on IE8)*/
|
||||
/* background: #B6BFCB;*/
|
||||
/* FF3.6+ */
|
||||
background: -moz-linear-gradient(top, #FFFFFF, #DEE2E7, #FFFFFF);
|
||||
/* Chrome,Safari4+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#DEE2E7));
|
||||
/* Chrome10+,Safari5.1+ */
|
||||
background: -webkit-linear-gradient(top, #FFFFFF, #DEE2E7, #FFFFFF);
|
||||
/* Opera11.10+ */
|
||||
background: -o-linear-gradient(top, #FFFFFF, #DEE2E7, #FFFFFF);
|
||||
/* IE10+ */
|
||||
background: -ms-linear-gradient(top, #FFFFFF, #DEE2E7, #FFFFFF);
|
||||
/* IE6-9 */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorStr='#FFFFFF', endColorStr='#DEE2E7', gradientType='1');/*middleColorStr='#DEE2E7', endColorStr='#FFFFFF'); doesn't seem to work*/
|
||||
/* W3C */
|
||||
background: linear-gradient(top, #FFFFFF, #DEE2E7, #FFFFFF);
|
||||
}
|
||||
.sortable
|
||||
{
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.sortable li
|
||||
{
|
||||
margin: 0 3px 3px 3px;
|
||||
padding: 0.4em;
|
||||
padding-left: 1.5em;
|
||||
height: 60px;
|
||||
}
|
||||
.sortable li span
|
||||
{
|
||||
position: absolute;
|
||||
margin-left: -1.3em;
|
||||
}
|
||||
.questionNumber
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
#questionNumber1 /* This needs set to block so original question will show up */
|
||||
{
|
||||
display: block;
|
||||
}
|
||||
#grade
|
||||
{
|
||||
display: none;
|
||||
position:relative;
|
||||
width:40%;
|
||||
padding:2em;
|
||||
margin:auto;
|
||||
margin-top: 10%;
|
||||
text-align: center;
|
||||
background:#fff;
|
||||
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
-webkit-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
-moz-box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
|
||||
}
|
||||
|
||||
#grade:before,
|
||||
#grade:after {
|
||||
content:"";
|
||||
position:absolute;
|
||||
z-index:-2;
|
||||
}
|
||||
#grade p {
|
||||
font-size:16px;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
}
|
||||
#hotspotContent
|
||||
{
|
||||
position: relative;
|
||||
}
|
||||
.hotspotImage
|
||||
{
|
||||
z-index: 0;
|
||||
}
|
||||
.hotspotDiv
|
||||
{
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
border: 1px solid #6CB7E8;
|
||||
background-color: #C7C7C7;
|
||||
display: none;
|
||||
filter:alpha(opacity=70);
|
||||
}
|
||||
.hotspotCheckButton
|
||||
{
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.questionCount
|
||||
{
|
||||
font-size: 10pt;
|
||||
float: right;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
body {
|
||||
/*margin-top: 200px;
|
||||
margin-right: 40px;
|
||||
margin-left: 70px;
|
||||
margin-bottom: 10px; */
|
||||
}
|
||||
.questionText
|
||||
{
|
||||
margin: 20px 20px;
|
||||
font-size: 14pt;
|
||||
}
|
||||
|
||||
.questionType
|
||||
{
|
||||
margin: 20px 20px;
|
||||
text-align: center;
|
||||
font-size: 14pt;
|
||||
}
|
||||
347
ИЭТР-тест/Develop/app/assessmenthtml.xslt
Normal file
@@ -0,0 +1,347 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://www.purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0">
|
||||
|
||||
<xsl:variable name="lcInteractionIdArray">
|
||||
<xsl:for-each select="//dmodule/content/learning/learningAssessment/lcInteraction">
|
||||
<xsl:value-of select="@id"/>
|
||||
</xsl:for-each>
|
||||
</xsl:variable>
|
||||
<xsl:template match="para">
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="subscrpt|subScript">
|
||||
<sub>
|
||||
<xsl:apply-templates />
|
||||
</sub>
|
||||
</xsl:template>
|
||||
<xsl:template match="supscrpt|superScript">
|
||||
<sup>
|
||||
<xsl:apply-templates />
|
||||
</sup>
|
||||
</xsl:template>
|
||||
<xsl:template match="acronym">
|
||||
<span><xsl:attribute name="title"><xsl:for-each select="acronymDefinition//text()"><xsl:value-of select="."></xsl:value-of></xsl:for-each></xsl:attribute>
|
||||
<xsl:apply-templates select="acronymTerm"></xsl:apply-templates>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="acronymTerm[not(parent::acronym)]">
|
||||
<xsl:variable name="intref" select="@internalRefId"></xsl:variable>
|
||||
<span>
|
||||
<xsl:for-each select="//acronym[@id=$intref]">
|
||||
<xsl:attribute name="title"><xsl:for-each select="acronymDefinition//text()"><xsl:value-of select="."></xsl:value-of></xsl:for-each></xsl:attribute>
|
||||
</xsl:for-each>
|
||||
<xsl:apply-templates></xsl:apply-templates>
|
||||
</span>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="symbol">
|
||||
<xsl:variable name="boardNum">
|
||||
<xsl:value-of select="@infoEntityIdent"/>
|
||||
</xsl:variable>
|
||||
<img class="S1000Dsymbol">
|
||||
<xsl:if test="@reproductionHeight">
|
||||
<xsl:attribute name="height">
|
||||
<xsl:value-of select="@reproductionHeight"></xsl:value-of>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:attribute name="src"><xsl:value-of select="$boardNum"/><xsl:value-of select="'.svg'"></xsl:value-of></xsl:attribute>
|
||||
</img>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="assessment" match="learningAssessment">
|
||||
<xsl:variable name="quizType">
|
||||
<xsl:value-of select="//title/."/>
|
||||
</xsl:variable>
|
||||
<div class="content">
|
||||
<div class="header">
|
||||
<!-- <h1 class="knowledgeCheckHeader"><xsl:value-of select="//title/." /></h1> -->
|
||||
<h1 class="S1000DCenterhead1"><xsl:value-of select="//title/." /></h1>
|
||||
<div class="fancySmallLine fancySmallLineGradient" />
|
||||
<div class="fancyLine fancyLineGradient" />
|
||||
</div>
|
||||
<xsl:choose>
|
||||
<xsl:when test="//title/.='Knowledge Check'">
|
||||
<form name="answerOptionsForm">
|
||||
<ol>
|
||||
<xsl:apply-templates select="lcInteraction" />
|
||||
</ol>
|
||||
</form>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:for-each select="lcInteraction">
|
||||
<xsl:variable name="position">
|
||||
<xsl:value-of select="position()"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="count">
|
||||
<xsl:value-of select="count(//lcInteraction)"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="countMP">
|
||||
<xsl:value-of select="count(lcMatching/lcMatchTable/lcMatchingPair)"/>
|
||||
</xsl:variable>
|
||||
<form name="answerOptionsForm{$position}">
|
||||
<div class="questionNumber" id="questionNumber{$position}">
|
||||
<p class="questionCount"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_quest_text'"/>
|
||||
</xsl:call-template><xsl:value-of select="$position"/><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_questof_text'"/>
|
||||
</xsl:call-template><xsl:value-of select="$count"/></p><br/>
|
||||
<ol>
|
||||
<xsl:apply-templates/>
|
||||
<xsl:for-each select="lcSingleSelect">
|
||||
<script type="text/javascript">
|
||||
$(function()
|
||||
{
|
||||
shuffle($("#questionNumber<xsl:value-of select="$position"/>").find( ".radioButtonClass" ));
|
||||
});
|
||||
</script>
|
||||
<input type="submit" class="checkButton" value="" onClick="javascript:checkIfSingleTrue(document.forms['answerOptionsForm{$position}'], '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_questbtnext_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="lcTrueFalse">
|
||||
<input type="submit" class="checkButton" value="" onClick="javascript:checkIfSingleTrue(document.forms['answerOptionsForm{$position}'], '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_questbtnext_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="lcMultipleSelect">
|
||||
<input type="submit" class="checkButton" value="" onClick="javascript:checkIfMultipleTrue(document.forms['answerOptionsForm{$position}'], '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_questbtnext_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="lcSequencing">
|
||||
<script type="text/javascript">
|
||||
$(function()
|
||||
{
|
||||
shuffle($("#questionNumber" + <xsl:value-of select="$position"/>).find( "li" ));
|
||||
});
|
||||
</script>
|
||||
<input type="submit" class="checkButton" value="" onClick="javascript:checkSortableCorrect(document.forms['answerOptionsForm{$position}'], {$position}); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_questbtnext_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:for-each>
|
||||
|
||||
<xsl:for-each select="lcMatching">
|
||||
<!-- <script>
|
||||
$(function()
|
||||
{
|
||||
shuffle($(".answerOptionsForm").find( ".radioButtonClass" ));
|
||||
});
|
||||
</script> -->
|
||||
<input type="submit" class="checkButton" value="" onClick="javascript:checkIfMatchingTrue(document.forms['answerOptionsForm{$position}'], '{$countMP}', '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam"><xsl:with-param name="paramName" select="'tm_questbtchk_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="lcHotspot">
|
||||
<!-- <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
|
||||
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
|
||||
WIDTH="745"
|
||||
HEIGHT="600" id="col_master.swf">
|
||||
<param NAME="movie" VALUE="Assessment_templates/Hotspot.swf" />
|
||||
<param NAME="FlashVars" VALUE="theFileName={$global_dmc}" />
|
||||
<param NAME="quality" VALUE="high"/>
|
||||
<param NAME="bgcolor" VALUE="#FFFFFF" />
|
||||
</object> -->
|
||||
</xsl:for-each>
|
||||
</ol>
|
||||
</div>
|
||||
</form>
|
||||
</xsl:for-each>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<div id="grade">
|
||||
</div>
|
||||
<div id="tableResult" style="margin-top: 20px;">
|
||||
</div>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcInteraction">
|
||||
<xsl:if test="position()=1">
|
||||
<xsl:apply-templates />
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcTrueFalse">
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcMultipleSelect">
|
||||
<p class="questionType"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_multpquest_text'"/>
|
||||
</xsl:call-template></p>
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcSingleSelect">
|
||||
<p class="questionType"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_singlquest_text'"/>
|
||||
</xsl:call-template></p>
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcSequencing">
|
||||
<p class="questionType"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_sequenquest_text'"/>
|
||||
</xsl:call-template></p>
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcMatching">
|
||||
<p class="questionType"><xsl:call-template name="getContentParam">
|
||||
<xsl:with-param name="paramName" select="'tm_mathingquest_text'"/>
|
||||
</xsl:call-template></p>
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcQuestion">
|
||||
<div class="questionText">
|
||||
<xsl:apply-templates /></div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcAnswerOptionGroup">
|
||||
<xsl:variable name="quizType">
|
||||
<xsl:value-of select="//title/."/>
|
||||
</xsl:variable>
|
||||
<div class="answerList">
|
||||
<ul>
|
||||
<xsl:for-each select="lcAnswerOption">
|
||||
<xsl:variable name="id">
|
||||
<xsl:value-of select="position()"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="correct">
|
||||
<xsl:if test="lcCorrectResponse">
|
||||
<xsl:value-of select="$id"/>
|
||||
</xsl:if>
|
||||
</xsl:variable>
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor::lcSingleSelect or ancestor::lcTrueFalse">
|
||||
<div class="radioButtonClass">
|
||||
<label>
|
||||
<input type="radio" id="{$id}" name="answerChoiceRadio" style="margin-right: 5px;" value="{$id}, {$correct}"/>
|
||||
<xsl:apply-templates /></label>
|
||||
<!-- </input> -->
|
||||
|
||||
</div>
|
||||
<br />
|
||||
</xsl:when>
|
||||
<xsl:when test="ancestor::lcMultipleSelect">
|
||||
<div class="checkboxClass">
|
||||
<label>
|
||||
<input type="checkbox" id="{$id}" style="margin-right: 5px;" name="answerChoiceCheckbox" value="{$id}, {$correct}"/>
|
||||
<xsl:apply-templates /></label>
|
||||
<!-- </input> -->
|
||||
</div>
|
||||
<br />
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</xsl:for-each>
|
||||
<xsl:choose>
|
||||
<xsl:when test="//title/.='Knowledge Check'">
|
||||
<xsl:choose>
|
||||
<xsl:when test="ancestor::lcMultipleSelect">
|
||||
<input type="submit" class="checkButton" value="Проверить" onClick="javascript:checkIfMultipleTrue(document.forms['answerOptionsForm'], '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam"><xsl:with-param name="paramName" select="'tm_questbtchk_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:when>
|
||||
<xsl:when test="ancestor::lcSingleSelect or ancestor::lcTrueFalse">
|
||||
<input type="submit" class="checkButton" value="Проверить" onClick="javascript:checkIfSingleTrue(document.forms['answerOptionsForm'], '{$quizType}'); return false;"><xsl:attribute name="value"><xsl:call-template name="getContentParam"><xsl:with-param name="paramName" select="'tm_questbtchk_text'"/></xsl:call-template></xsl:attribute></input>
|
||||
</xsl:when>
|
||||
<!-- <xsl:when test="'//lcMatchingPair'">
|
||||
<input type="submit" class="checkButton" value="Check" onClick="javascript:checkIfMatchingTrue(document.forms['answerOptionsForm'], '{$quizType}'); return false;"/>
|
||||
</xsl:when> -->
|
||||
</xsl:choose>
|
||||
</xsl:when>
|
||||
</xsl:choose>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcFeedbackIncorrect">
|
||||
<div id="feedbackIncorrect">
|
||||
<div class="line"/>
|
||||
<xsl:apply-templates />
|
||||
<div class="line"/>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcFeedbackCorrect">
|
||||
<div id="feedbackCorrect">
|
||||
<div class="line"/>
|
||||
<xsl:apply-templates />
|
||||
<div class="line"/>
|
||||
</div>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcAnswerOption">
|
||||
<li>
|
||||
<xsl:apply-templates />
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcAnswerOptionContent">
|
||||
|
||||
<xsl:apply-templates/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcSequenceOptionGroup">
|
||||
<script>
|
||||
$(function()
|
||||
{
|
||||
$( ".sortable" ).sortable();
|
||||
$( ".sortable" ).disableSelection();
|
||||
});
|
||||
</script>
|
||||
<ol class="seqAnswerList">
|
||||
<ul class="sortable">
|
||||
<xsl:apply-templates />
|
||||
</ul>
|
||||
</ol>
|
||||
<br />
|
||||
<br />
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcSequenceOption">
|
||||
<xsl:variable name="id">
|
||||
<xsl:value-of select="lcSequence/@lcValue"/>
|
||||
</xsl:variable>
|
||||
<!-- <xsl:apply-templates /> -->
|
||||
<li id="{$id}" class="correct ui-state-default">
|
||||
<span class="ui-icon ui-icon-arrowthick-2-n-s"/>
|
||||
<xsl:apply-templates />
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcMatchTable">
|
||||
<xsl:variable name="count">
|
||||
<xsl:value-of select="count(lcMatchingPair)"/>
|
||||
</xsl:variable>
|
||||
<!-- NOTE: This most likely will NOT work in assessments...would need to go be question number or something -->
|
||||
<form name="matchingPairForm">
|
||||
<div id="matchingQuestion">
|
||||
<ul>
|
||||
<xsl:apply-templates />
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="lcMatchingPair">
|
||||
<!-- I had to do some math here to make the position show up as 1, 2, 3...but this might change depending on the problem -->
|
||||
<xsl:variable name="matchPosition">
|
||||
<xsl:value-of select="position() * 0.5"/>
|
||||
</xsl:variable>
|
||||
<xsl:variable name="correctAnswer">
|
||||
<xsl:value-of select="./lcMatchingItem/description/para"/>
|
||||
</xsl:variable>
|
||||
<p>
|
||||
<li class="answerList" >
|
||||
<xsl:value-of select="./lcItem/description/para"/>
|
||||
<select name="{$correctAnswer}">
|
||||
<xsl:for-each select="//lcMatchTable/lcMatchingPair/lcMatchingItem">
|
||||
<option><xsl:apply-templates /></option>
|
||||
</xsl:for-each>
|
||||
</select>
|
||||
</li>
|
||||
</p>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
</xsl:stylesheet>
|
||||
492
ИЭТР-тест/Develop/app/bower_components/Select2/css/select2.css
vendored
Normal file
@@ -0,0 +1,492 @@
|
||||
.select2-container {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle; }
|
||||
.select2-container .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
height: 38px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--single .select2-selection__rendered {
|
||||
display: block;
|
||||
padding-left: 8px;
|
||||
padding-right: 20px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-selection--single .select2-selection__clear {
|
||||
position: relative; }
|
||||
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
||||
padding-right: 8px;
|
||||
padding-left: 20px; }
|
||||
.select2-container .select2-selection--multiple {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 32px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
padding-left: 8px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap; }
|
||||
.select2-container .select2-search--inline {
|
||||
float: left; }
|
||||
.select2-container .select2-search--inline .select2-search__field {
|
||||
box-sizing: border-box;
|
||||
border: none;
|
||||
font-size: 100%;
|
||||
margin-top: 5px;
|
||||
padding: 0; }
|
||||
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
|
||||
.select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
display: block;
|
||||
position: absolute;
|
||||
left: -100000px;
|
||||
width: 100%;
|
||||
z-index: 1051; }
|
||||
|
||||
.select2-results {
|
||||
display: block; }
|
||||
|
||||
.select2-results__options {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
.select2-results__option {
|
||||
padding: 6px;
|
||||
user-select: none;
|
||||
-webkit-user-select: none; }
|
||||
.select2-results__option[aria-selected] {
|
||||
cursor: pointer; }
|
||||
|
||||
.select2-container--open .select2-dropdown {
|
||||
left: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--above {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--open .select2-dropdown--below {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-search--dropdown {
|
||||
display: block;
|
||||
padding: 4px; }
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 4px;
|
||||
width: 100%;
|
||||
box-sizing: border-box; }
|
||||
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
||||
-webkit-appearance: none; }
|
||||
.select2-search--dropdown.select2-search--hide {
|
||||
display: none; }
|
||||
|
||||
.select2-close-mask {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: block;
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
min-height: 100%;
|
||||
min-width: 100%;
|
||||
height: auto;
|
||||
width: auto;
|
||||
opacity: 0;
|
||||
z-index: 99;
|
||||
background-color: #fff;
|
||||
filter: alpha(opacity=0); }
|
||||
|
||||
.select2-hidden-accessible {
|
||||
border: 0 !important;
|
||||
clip: rect(0 0 0 0) !important;
|
||||
height: 1px !important;
|
||||
margin: -1px !important;
|
||||
overflow: hidden !important;
|
||||
padding: 0 !important;
|
||||
position: absolute !important;
|
||||
width: 1px !important; }
|
||||
|
||||
.select2-container--default .select2-selection--single {
|
||||
background-color: #fff;
|
||||
/*border: 1px solid #1e88e5;*/
|
||||
border: 1px solid #bbb;
|
||||
border-radius: 4px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 38px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
||||
height: 35px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 25px; }
|
||||
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
||||
/*border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;*/
|
||||
display: block;
|
||||
background: url(../../../images/arrow_select.png) no-repeat;
|
||||
height: 12px;
|
||||
width: 14px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
left: 1px;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
/*border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px;*/
|
||||
background-position: 0 -12px;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #1e88e5;
|
||||
border-radius: 4px;
|
||||
cursor: text; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
||||
box-sizing: border-box;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
||||
list-style: none; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
||||
color: #999;
|
||||
margin-top: 5px;
|
||||
float: left; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-top: 5px;
|
||||
margin-right: 10px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #1e88e5;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #333; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
||||
float: right; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
||||
border: solid black 1px;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
||||
background-color: #eee;
|
||||
cursor: default; }
|
||||
|
||||
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
||||
display: none; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #1e88e5; }
|
||||
|
||||
.select2-container--default .select2-search--inline .select2-search__field {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: textfield; }
|
||||
|
||||
.select2-container--default .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--default .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-disabled=true] {
|
||||
color: #999; }
|
||||
|
||||
.select2-container--default .select2-results__option[aria-selected=true] {
|
||||
background-color: #ddd; }
|
||||
|
||||
.select2-container--default .select2-results__option .select2-results__option {
|
||||
padding-left: 1em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
||||
padding-left: 0; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -1em;
|
||||
padding-left: 2em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -2em;
|
||||
padding-left: 3em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -3em;
|
||||
padding-left: 4em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -4em;
|
||||
padding-left: 5em; }
|
||||
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
||||
margin-left: -5em;
|
||||
padding-left: 6em; }
|
||||
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #5897fb;
|
||||
color: white; }
|
||||
|
||||
.select2-container--default .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic .select2-selection--single {
|
||||
background-color: #f7f7f7;
|
||||
border: 1px solid #1e88e5;
|
||||
border-radius: 4px;
|
||||
outline: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
||||
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
||||
color: #444;
|
||||
line-height: 28px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
font-weight: bold;
|
||||
margin-right: 10px; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
||||
color: #999; }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
||||
background-color: #ddd;
|
||||
border: none;
|
||||
border-left: 1px solid #1e88e5;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
height: 26px;
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 20px;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
||||
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: #888 transparent transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: 5px 4px 0 4px;
|
||||
height: 0;
|
||||
left: 50%;
|
||||
margin-left: -4px;
|
||||
margin-top: -2px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 0; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
||||
float: left; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
||||
border: none;
|
||||
border-right: 1px solid #1e88e5;
|
||||
border-radius: 0;
|
||||
border-top-left-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
left: 1px;
|
||||
right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--single {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
||||
background: transparent;
|
||||
border: none; }
|
||||
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
||||
border-color: transparent transparent #888 transparent;
|
||||
border-width: 0 4px 5px 4px; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
||||
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
||||
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
||||
background-repeat: repeat-x;
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
||||
|
||||
.select2-container--classic .select2-selection--multiple {
|
||||
background-color: white;
|
||||
border: 1px solid #1e88e5;
|
||||
border-radius: 4px;
|
||||
cursor: text;
|
||||
outline: 0; }
|
||||
.select2-container--classic .select2-selection--multiple:focus {
|
||||
border: 1px solid #5897fb; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
||||
display: none; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
||||
background-color: #e4e4e4;
|
||||
border: 1px solid #1e88e5;
|
||||
border-radius: 4px;
|
||||
cursor: default;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
margin-top: 5px;
|
||||
padding: 0 5px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
||||
color: #888;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-weight: bold;
|
||||
margin-right: 2px; }
|
||||
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
||||
color: #555; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
float: right; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
||||
margin-left: 5px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
||||
margin-left: 2px;
|
||||
margin-right: auto; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
||||
border: 1px solid #5897fb; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
||||
border-top: none;
|
||||
border-top-left-radius: 0;
|
||||
border-top-right-radius: 0; }
|
||||
|
||||
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
||||
border: 1px solid #1e88e5;
|
||||
outline: 0; }
|
||||
|
||||
.select2-container--classic .select2-search--inline .select2-search__field {
|
||||
outline: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown {
|
||||
background-color: white;
|
||||
border: 1px solid transparent; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--above {
|
||||
border-bottom: none; }
|
||||
|
||||
.select2-container--classic .select2-dropdown--below {
|
||||
border-top: none; }
|
||||
|
||||
.select2-container--classic .select2-results > .select2-results__options {
|
||||
max-height: 200px;
|
||||
overflow-y: auto; }
|
||||
|
||||
.select2-container--classic .select2-results__option[role=group] {
|
||||
padding: 0; }
|
||||
|
||||
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
||||
color: grey; }
|
||||
|
||||
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: #3875d7;
|
||||
color: white; }
|
||||
|
||||
.select2-container--classic .select2-results__group {
|
||||
cursor: default;
|
||||
display: block;
|
||||
padding: 6px; }
|
||||
|
||||
.select2-container--classic.select2-container--open .select2-dropdown {
|
||||
border-color: #5897fb; }
|
||||
1
ИЭТР-тест/Develop/app/bower_components/Select2/css/select2.min.css
vendored
Normal file
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ar.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/az.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/bg.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ca.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/cs.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/da.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/de.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/el.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/en.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/es.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/et.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/eu.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/fa.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها میتوانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجهای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/fi.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/fr.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/gl.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/he.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/hi.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/hr.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/hu.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/id.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/is.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/it.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ja.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/km.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ko.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/lt.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/lv.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/mk.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ms.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/nb.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/nl.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/pl.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/pt-BR.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/pt.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ro.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+"sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/ru.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/sk.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/sr-Cyrl.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/sr.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/sv.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/th.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/tr.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/uk.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/vi.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/zh-CN.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})();
|
||||
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/i18n/zh-TW.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
||||
|
||||
(function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})();
|
||||
6436
ИЭТР-тест/Develop/app/bower_components/Select2/js/select2.full.js
vendored
Normal file
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/select2.full.min.js
vendored
Normal file
5725
ИЭТР-тест/Develop/app/bower_components/Select2/js/select2.js
vendored
Normal file
3
ИЭТР-тест/Develop/app/bower_components/Select2/js/select2.min.js
vendored
Normal file
759
ИЭТР-тест/Develop/app/bower_components/jQuery.dotdotdot/src/jquery.dotdotdot.js
vendored
Normal file
@@ -0,0 +1,759 @@
|
||||
/*
|
||||
* jQuery dotdotdot 1.8.3
|
||||
*
|
||||
* Copyright (c) Fred Heusschen
|
||||
* www.frebsite.nl
|
||||
*
|
||||
* Plugin website:
|
||||
* dotdotdot.frebsite.nl
|
||||
*
|
||||
* Licensed under the MIT license.
|
||||
* http://en.wikipedia.org/wiki/MIT_License
|
||||
*/
|
||||
|
||||
(function( $, undef )
|
||||
{
|
||||
if ( $.fn.dotdotdot )
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
$.fn.dotdotdot = function( o )
|
||||
{
|
||||
if ( this.length == 0 )
|
||||
{
|
||||
$.fn.dotdotdot.debug( 'No element found for "' + this.selector + '".' );
|
||||
return this;
|
||||
}
|
||||
if ( this.length > 1 )
|
||||
{
|
||||
return this.each(
|
||||
function()
|
||||
{
|
||||
$(this).dotdotdot( o );
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
var $dot = this;
|
||||
var orgContent = $dot.contents();
|
||||
|
||||
if ( $dot.data( 'dotdotdot' ) )
|
||||
{
|
||||
$dot.trigger( 'destroy.dot' );
|
||||
}
|
||||
|
||||
$dot.data( 'dotdotdot-style', $dot.attr( 'style' ) || '' );
|
||||
$dot.css( 'word-wrap', 'break-word' );
|
||||
if ($dot.css( 'white-space' ) === 'nowrap')
|
||||
{
|
||||
$dot.css( 'white-space', 'normal' );
|
||||
}
|
||||
|
||||
$dot.bind_events = function()
|
||||
{
|
||||
$dot.bind(
|
||||
'update.dot',
|
||||
function( e, c )
|
||||
{
|
||||
$dot.removeClass("is-truncated");
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
switch( typeof opts.height )
|
||||
{
|
||||
case 'number':
|
||||
opts.maxHeight = opts.height;
|
||||
break;
|
||||
|
||||
case 'function':
|
||||
opts.maxHeight = opts.height.call( $dot[ 0 ] );
|
||||
break;
|
||||
|
||||
default:
|
||||
opts.maxHeight = getTrueInnerHeight( $dot );
|
||||
break;
|
||||
}
|
||||
|
||||
opts.maxHeight += opts.tolerance;
|
||||
|
||||
if ( typeof c != 'undefined' )
|
||||
{
|
||||
if ( typeof c == 'string' || ('nodeType' in c && c.nodeType === 1) )
|
||||
{
|
||||
c = $('<div />').append( c ).contents();
|
||||
}
|
||||
if ( c instanceof $ )
|
||||
{
|
||||
orgContent = c;
|
||||
}
|
||||
}
|
||||
|
||||
$inr = $dot.wrapInner( '<div class="dotdotdot" />' ).children();
|
||||
$inr.contents()
|
||||
.detach()
|
||||
.end()
|
||||
.append( orgContent.clone( true ) )
|
||||
.find( 'br' )
|
||||
.replaceWith( ' <br /> ' )
|
||||
.end()
|
||||
.css({
|
||||
'height' : 'auto',
|
||||
'width' : 'auto',
|
||||
'border' : 'none',
|
||||
'padding' : 0,
|
||||
'margin' : 0
|
||||
});
|
||||
|
||||
var after = false,
|
||||
trunc = false;
|
||||
|
||||
if ( conf.afterElement )
|
||||
{
|
||||
after = conf.afterElement.clone( true );
|
||||
after.show();
|
||||
conf.afterElement.detach();
|
||||
}
|
||||
|
||||
if ( test( $inr, opts ) )
|
||||
{
|
||||
if ( opts.wrap == 'children' )
|
||||
{
|
||||
trunc = children( $inr, opts, after );
|
||||
}
|
||||
else
|
||||
{
|
||||
trunc = ellipsis( $inr, $dot, $inr, opts, after );
|
||||
}
|
||||
}
|
||||
$inr.replaceWith( $inr.contents() );
|
||||
$inr = null;
|
||||
|
||||
if ( $.isFunction( opts.callback ) )
|
||||
{
|
||||
opts.callback.call( $dot[ 0 ], trunc, orgContent );
|
||||
}
|
||||
|
||||
conf.isTruncated = trunc;
|
||||
return trunc;
|
||||
}
|
||||
|
||||
).bind(
|
||||
'isTruncated.dot',
|
||||
function( e, fn )
|
||||
{
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if ( typeof fn == 'function' )
|
||||
{
|
||||
fn.call( $dot[ 0 ], conf.isTruncated );
|
||||
}
|
||||
return conf.isTruncated;
|
||||
}
|
||||
|
||||
).bind(
|
||||
'originalContent.dot',
|
||||
function( e, fn )
|
||||
{
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
if ( typeof fn == 'function' )
|
||||
{
|
||||
fn.call( $dot[ 0 ], orgContent );
|
||||
}
|
||||
return orgContent;
|
||||
}
|
||||
|
||||
).bind(
|
||||
'destroy.dot',
|
||||
function( e )
|
||||
{
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
$dot.unwatch()
|
||||
.unbind_events()
|
||||
.contents()
|
||||
.detach()
|
||||
.end()
|
||||
.append( orgContent )
|
||||
.attr( 'style', $dot.data( 'dotdotdot-style' ) || '' )
|
||||
.removeClass( 'is-truncated' )
|
||||
.data( 'dotdotdot', false );
|
||||
}
|
||||
);
|
||||
return $dot;
|
||||
}; // /bind_events
|
||||
|
||||
$dot.unbind_events = function()
|
||||
{
|
||||
$dot.unbind('.dot');
|
||||
return $dot;
|
||||
}; // /unbind_events
|
||||
|
||||
$dot.watch = function()
|
||||
{
|
||||
$dot.unwatch();
|
||||
if ( opts.watch == 'window' )
|
||||
{
|
||||
var $window = $(window),
|
||||
_wWidth = $window.width(),
|
||||
_wHeight = $window.height();
|
||||
|
||||
$window.bind(
|
||||
'resize.dot' + conf.dotId,
|
||||
function()
|
||||
{
|
||||
if ( _wWidth != $window.width() || _wHeight != $window.height() || !opts.windowResizeFix )
|
||||
{
|
||||
_wWidth = $window.width();
|
||||
_wHeight = $window.height();
|
||||
|
||||
if ( watchInt )
|
||||
{
|
||||
clearInterval( watchInt );
|
||||
}
|
||||
watchInt = setTimeout(
|
||||
function()
|
||||
{
|
||||
$dot.trigger( 'update.dot' );
|
||||
}, 100
|
||||
);
|
||||
}
|
||||
}
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
watchOrg = getSizes( $dot );
|
||||
watchInt = setInterval(
|
||||
function()
|
||||
{
|
||||
if ( $dot.is( ':visible' ) )
|
||||
{
|
||||
var watchNew = getSizes( $dot );
|
||||
if ( watchOrg.width != watchNew.width ||
|
||||
watchOrg.height != watchNew.height )
|
||||
{
|
||||
$dot.trigger( 'update.dot' );
|
||||
watchOrg = watchNew;
|
||||
}
|
||||
}
|
||||
}, 500
|
||||
);
|
||||
}
|
||||
return $dot;
|
||||
};
|
||||
$dot.unwatch = function()
|
||||
{
|
||||
$(window).unbind( 'resize.dot' + conf.dotId );
|
||||
if ( watchInt )
|
||||
{
|
||||
clearInterval( watchInt );
|
||||
}
|
||||
return $dot;
|
||||
};
|
||||
|
||||
var opts = $.extend( true, {}, $.fn.dotdotdot.defaults, o ),
|
||||
conf = {},
|
||||
watchOrg = {},
|
||||
watchInt = null,
|
||||
$inr = null;
|
||||
|
||||
|
||||
if ( !( opts.lastCharacter.remove instanceof Array ) )
|
||||
{
|
||||
opts.lastCharacter.remove = $.fn.dotdotdot.defaultArrays.lastCharacter.remove;
|
||||
}
|
||||
if ( !( opts.lastCharacter.noEllipsis instanceof Array ) )
|
||||
{
|
||||
opts.lastCharacter.noEllipsis = $.fn.dotdotdot.defaultArrays.lastCharacter.noEllipsis;
|
||||
}
|
||||
|
||||
|
||||
conf.afterElement = getElement( opts.after, $dot );
|
||||
conf.isTruncated = false;
|
||||
conf.dotId = dotId++;
|
||||
|
||||
|
||||
$dot.data( 'dotdotdot', true )
|
||||
.bind_events()
|
||||
.trigger( 'update.dot' );
|
||||
|
||||
if ( opts.watch )
|
||||
{
|
||||
$dot.watch();
|
||||
}
|
||||
|
||||
return $dot;
|
||||
};
|
||||
|
||||
|
||||
// public
|
||||
$.fn.dotdotdot.defaults = {
|
||||
'ellipsis' : '... ',
|
||||
'wrap' : 'word',
|
||||
'fallbackToLetter' : true,
|
||||
'lastCharacter' : {},
|
||||
'tolerance' : 0,
|
||||
'callback' : null,
|
||||
'after' : null,
|
||||
'height' : null,
|
||||
'watch' : false,
|
||||
'windowResizeFix' : true
|
||||
};
|
||||
$.fn.dotdotdot.defaultArrays = {
|
||||
'lastCharacter' : {
|
||||
'remove' : [ ' ', '\u3000', ',', ';', '.', '!', '?' ],
|
||||
'noEllipsis' : []
|
||||
}
|
||||
};
|
||||
$.fn.dotdotdot.debug = function( msg ) {};
|
||||
|
||||
|
||||
// private
|
||||
var dotId = 1;
|
||||
|
||||
function children( $elem, o, after )
|
||||
{
|
||||
var $elements = $elem.children(),
|
||||
isTruncated = false;
|
||||
|
||||
$elem.empty();
|
||||
|
||||
for ( var a = 0, l = $elements.length; a < l; a++ )
|
||||
{
|
||||
var $e = $elements.eq( a );
|
||||
$elem.append( $e );
|
||||
if ( after )
|
||||
{
|
||||
$elem.append( after );
|
||||
}
|
||||
if ( test( $elem, o ) )
|
||||
{
|
||||
$e.remove();
|
||||
isTruncated = true;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
if ( after )
|
||||
{
|
||||
after.detach();
|
||||
}
|
||||
}
|
||||
}
|
||||
return isTruncated;
|
||||
}
|
||||
function ellipsis( $elem, $d, $i, o, after )
|
||||
{
|
||||
var isTruncated = false;
|
||||
|
||||
// Don't put the ellipsis directly inside these elements
|
||||
var notx = 'a, table, thead, tbody, tfoot, tr, col, colgroup, object, embed, param, ol, ul, dl, blockquote, select, optgroup, option, textarea, script, style';
|
||||
|
||||
// Don't remove these elements even if they are after the ellipsis
|
||||
var noty = 'script, .dotdotdot-keep';
|
||||
|
||||
$elem
|
||||
.contents()
|
||||
.detach()
|
||||
.each(
|
||||
function()
|
||||
{
|
||||
|
||||
var e = this,
|
||||
$e = $(e);
|
||||
|
||||
if ( typeof e == 'undefined' )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if ( $e.is( noty ) )
|
||||
{
|
||||
$elem.append( $e );
|
||||
}
|
||||
else if ( isTruncated )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$elem.append( $e );
|
||||
if ( after && !$e.is( o.after ) && !$e.find( o.after ).length )
|
||||
{
|
||||
$elem[ $elem.is( notx ) ? 'after' : 'append' ]( after );
|
||||
}
|
||||
if ( test( $i, o ) )
|
||||
{
|
||||
if ( e.nodeType == 3 ) // node is TEXT
|
||||
{
|
||||
isTruncated = ellipsisElement( $e, $d, $i, o, after );
|
||||
}
|
||||
else
|
||||
{
|
||||
isTruncated = ellipsis( $e, $d, $i, o, after );
|
||||
}
|
||||
}
|
||||
|
||||
if ( !isTruncated )
|
||||
{
|
||||
if ( after )
|
||||
{
|
||||
after.detach();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
);
|
||||
$d.addClass("is-truncated");
|
||||
return isTruncated;
|
||||
}
|
||||
function ellipsisElement( $e, $d, $i, o, after )
|
||||
{
|
||||
var e = $e[ 0 ];
|
||||
|
||||
if ( !e )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
var txt = getTextContent( e ),
|
||||
space = ( txt.indexOf(' ') !== -1 ) ? ' ' : '\u3000',
|
||||
separator = ( o.wrap == 'letter' ) ? '' : space,
|
||||
textArr = txt.split( separator ),
|
||||
position = -1,
|
||||
midPos = -1,
|
||||
startPos = 0,
|
||||
endPos = textArr.length - 1;
|
||||
|
||||
|
||||
// Only one word
|
||||
if ( o.fallbackToLetter && startPos == 0 && endPos == 0 )
|
||||
{
|
||||
separator = '';
|
||||
textArr = txt.split( separator );
|
||||
endPos = textArr.length - 1;
|
||||
}
|
||||
|
||||
while ( startPos <= endPos && !( startPos == 0 && endPos == 0 ) )
|
||||
{
|
||||
var m = Math.floor( ( startPos + endPos ) / 2 );
|
||||
if ( m == midPos )
|
||||
{
|
||||
break;
|
||||
}
|
||||
midPos = m;
|
||||
|
||||
setTextContent( e, textArr.slice( 0, midPos + 1 ).join( separator ) + o.ellipsis );
|
||||
$i.children()
|
||||
.each(
|
||||
function()
|
||||
{
|
||||
$(this).toggle().toggle();
|
||||
}
|
||||
);
|
||||
|
||||
if ( !test( $i, o ) )
|
||||
{
|
||||
position = midPos;
|
||||
startPos = midPos;
|
||||
}
|
||||
else
|
||||
{
|
||||
endPos = midPos;
|
||||
|
||||
// Fallback to letter
|
||||
if (o.fallbackToLetter && startPos == 0 && endPos == 0 )
|
||||
{
|
||||
separator = '';
|
||||
textArr = textArr[ 0 ].split( separator );
|
||||
position = -1;
|
||||
midPos = -1;
|
||||
startPos = 0;
|
||||
endPos = textArr.length - 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ( position != -1 && !( textArr.length == 1 && textArr[ 0 ].length == 0 ) )
|
||||
{
|
||||
txt = addEllipsis( textArr.slice( 0, position + 1 ).join( separator ), o );
|
||||
setTextContent( e, txt );
|
||||
}
|
||||
else
|
||||
{
|
||||
var $w = $e.parent();
|
||||
$e.detach();
|
||||
|
||||
var afterLength = ( after && after.closest($w).length ) ? after.length : 0;
|
||||
|
||||
if ( $w.contents().length > afterLength )
|
||||
{
|
||||
e = findLastTextNode( $w.contents().eq( -1 - afterLength ), $d );
|
||||
}
|
||||
else
|
||||
{
|
||||
e = findLastTextNode( $w, $d, true );
|
||||
if ( !afterLength )
|
||||
{
|
||||
$w.detach();
|
||||
}
|
||||
}
|
||||
if ( e )
|
||||
{
|
||||
txt = addEllipsis( getTextContent( e ), o );
|
||||
setTextContent( e, txt );
|
||||
if ( afterLength && after )
|
||||
{
|
||||
var $parent = after.parent();
|
||||
|
||||
$(e).parent().append( after );
|
||||
|
||||
if ( !$.trim( $parent.html() ) )
|
||||
{
|
||||
$parent.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
function test( $i, o )
|
||||
{
|
||||
return $i.innerHeight() > o.maxHeight;
|
||||
}
|
||||
function addEllipsis( txt, o )
|
||||
{
|
||||
while( $.inArray( txt.slice( -1 ), o.lastCharacter.remove ) > -1 )
|
||||
{
|
||||
txt = txt.slice( 0, -1 );
|
||||
}
|
||||
if ( $.inArray( txt.slice( -1 ), o.lastCharacter.noEllipsis ) < 0 )
|
||||
{
|
||||
txt += o.ellipsis;
|
||||
}
|
||||
return txt;
|
||||
}
|
||||
function getSizes( $d )
|
||||
{
|
||||
return {
|
||||
'width' : $d.innerWidth(),
|
||||
'height': $d.innerHeight()
|
||||
};
|
||||
}
|
||||
function setTextContent( e, content )
|
||||
{
|
||||
if ( e.innerText )
|
||||
{
|
||||
e.innerText = content;
|
||||
}
|
||||
else if ( e.nodeValue )
|
||||
{
|
||||
e.nodeValue = content;
|
||||
}
|
||||
else if (e.textContent)
|
||||
{
|
||||
e.textContent = content;
|
||||
}
|
||||
|
||||
}
|
||||
function getTextContent( e )
|
||||
{
|
||||
if ( e.innerText )
|
||||
{
|
||||
return e.innerText;
|
||||
}
|
||||
else if ( e.nodeValue )
|
||||
{
|
||||
return e.nodeValue;
|
||||
}
|
||||
else if ( e.textContent )
|
||||
{
|
||||
return e.textContent;
|
||||
}
|
||||
else
|
||||
{
|
||||
return "";
|
||||
}
|
||||
}
|
||||
function getPrevNode( n )
|
||||
{
|
||||
do
|
||||
{
|
||||
n = n.previousSibling;
|
||||
}
|
||||
while ( n && n.nodeType !== 1 && n.nodeType !== 3 );
|
||||
|
||||
return n;
|
||||
}
|
||||
function findLastTextNode( $el, $top, excludeCurrent )
|
||||
{
|
||||
var e = $el && $el[ 0 ], p;
|
||||
if ( e )
|
||||
{
|
||||
if ( !excludeCurrent )
|
||||
{
|
||||
if ( e.nodeType === 3 )
|
||||
{
|
||||
return e;
|
||||
}
|
||||
if ( $.trim( $el.text() ) )
|
||||
{
|
||||
return findLastTextNode( $el.contents().last(), $top );
|
||||
}
|
||||
}
|
||||
p = getPrevNode( e );
|
||||
while ( !p )
|
||||
{
|
||||
$el = $el.parent();
|
||||
if ( $el.is( $top ) || !$el.length )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
p = getPrevNode( $el[0] );
|
||||
}
|
||||
if ( p )
|
||||
{
|
||||
return findLastTextNode( $(p), $top );
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function getElement( e, $i )
|
||||
{
|
||||
if ( !e )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if ( typeof e === 'string' )
|
||||
{
|
||||
e = $(e, $i);
|
||||
return ( e.length )
|
||||
? e
|
||||
: false;
|
||||
}
|
||||
return !e.jquery
|
||||
? false
|
||||
: e;
|
||||
}
|
||||
function getTrueInnerHeight( $el )
|
||||
{
|
||||
var h = $el.innerHeight(),
|
||||
a = [ 'paddingTop', 'paddingBottom' ];
|
||||
|
||||
for ( var z = 0, l = a.length; z < l; z++ )
|
||||
{
|
||||
var m = parseInt( $el.css( a[ z ] ), 10 );
|
||||
if ( isNaN( m ) )
|
||||
{
|
||||
m = 0;
|
||||
}
|
||||
h -= m;
|
||||
}
|
||||
return h;
|
||||
}
|
||||
|
||||
|
||||
// override jQuery.html
|
||||
var _orgHtml = $.fn.html;
|
||||
$.fn.html = function( str )
|
||||
{
|
||||
if ( str != undef && !$.isFunction( str ) && this.data( 'dotdotdot' ) )
|
||||
{
|
||||
return this.trigger( 'update', [ str ] );
|
||||
}
|
||||
return _orgHtml.apply( this, arguments );
|
||||
};
|
||||
|
||||
|
||||
// override jQuery.text
|
||||
var _orgText = $.fn.text;
|
||||
$.fn.text = function( str )
|
||||
{
|
||||
if ( str != undef && !$.isFunction( str ) && this.data( 'dotdotdot' ) )
|
||||
{
|
||||
str = $( '<div />' ).text( str ).html();
|
||||
return this.trigger( 'update', [ str ] );
|
||||
}
|
||||
return _orgText.apply( this, arguments );
|
||||
};
|
||||
|
||||
|
||||
})( jQuery );
|
||||
|
||||
/*
|
||||
|
||||
## Automatic parsing for CSS classes
|
||||
Contributed by [Ramil Valitov](https://github.com/rvalitov)
|
||||
|
||||
### The idea
|
||||
You can add one or several CSS classes to HTML elements to automatically invoke "jQuery.dotdotdot functionality" and some extra features. It allows to use jQuery.dotdotdot only by adding appropriate CSS classes without JS programming.
|
||||
|
||||
### Available classes and their description
|
||||
* dot-ellipsis - automatically invoke jQuery.dotdotdot to this element. This class must be included if you plan to use other classes below.
|
||||
* dot-resize-update - automatically update if window resize event occurs. It's equivalent to option `watch:'window'`.
|
||||
* dot-timer-update - automatically update if window resize event occurs. It's equivalent to option `watch:true`.
|
||||
* dot-load-update - automatically update after the window has beem completely rendered. Can be useful if your content is generated dynamically using using JS and, hence, jQuery.dotdotdot can't correctly detect the height of the element before it's rendered completely.
|
||||
* dot-height-XXX - available height of content area in pixels, where XXX is a number, e.g. can be `dot-height-35` if you want to set maximum height for 35 pixels. It's equivalent to option `height:'XXX'`.
|
||||
|
||||
### Usage examples
|
||||
*Adding jQuery.dotdotdot to element*
|
||||
|
||||
<div class="dot-ellipsis">
|
||||
<p>Lorem Ipsum is simply dummy text.</p>
|
||||
</div>
|
||||
|
||||
*Adding jQuery.dotdotdot to element with update on window resize*
|
||||
|
||||
<div class="dot-ellipsis dot-resize-update">
|
||||
<p>Lorem Ipsum is simply dummy text.</p>
|
||||
</div>
|
||||
|
||||
*Adding jQuery.dotdotdot to element with predefined height of 50px*
|
||||
|
||||
<div class="dot-ellipsis dot-height-50">
|
||||
<p>Lorem Ipsum is simply dummy text.</p>
|
||||
</div>
|
||||
|
||||
*/
|
||||
|
||||
jQuery(document).ready(function($) {
|
||||
//We only invoke jQuery.dotdotdot on elements that have dot-ellipsis class
|
||||
$(".dot-ellipsis").each(function(){
|
||||
//Checking if update on window resize required
|
||||
var watch_window=$(this).hasClass("dot-resize-update");
|
||||
|
||||
//Checking if update on timer required
|
||||
var watch_timer=$(this).hasClass("dot-timer-update");
|
||||
|
||||
//Checking if height set
|
||||
var height=0;
|
||||
var classList = $(this).attr('class').split(/\s+/);
|
||||
$.each(classList, function(index, item) {
|
||||
var matchResult = item.match(/^dot-height-(\d+)$/);
|
||||
if(matchResult !== null)
|
||||
height = Number(matchResult[1]);
|
||||
});
|
||||
|
||||
//Invoking jQuery.dotdotdot
|
||||
var x = new Object();
|
||||
if (watch_timer)
|
||||
x.watch=true;
|
||||
if (watch_window)
|
||||
x.watch='window';
|
||||
if (height>0)
|
||||
x.height=height;
|
||||
$(this).dotdotdot(x);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
//Updating elements (if any) on window.load event
|
||||
jQuery(window).on('load', function(){
|
||||
jQuery(".dot-ellipsis.dot-load-update").trigger("update.dot");
|
||||
});
|
||||
13
ИЭТР-тест/Develop/app/bower_components/jQuery.dotdotdot/src/jquery.dotdotdot.min.js
vendored
Normal file
24
ИЭТР-тест/Develop/app/bower_components/jQuery.dotdotdot/src/jquery.dotdotdot.min.umd.js
vendored
Normal file
2109
ИЭТР-тест/Develop/app/bower_components/jquery-touchswipe/jquery.touchSwipe.js
vendored
Normal file
14
ИЭТР-тест/Develop/app/bower_components/jquery-touchswipe/jquery.touchSwipe.min.js
vendored
Normal file
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/ajax-loader.gif
vendored
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/action-black.png
vendored
Normal file
|
After Width: | Height: | Size: 219 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/action-white.png
vendored
Normal file
|
After Width: | Height: | Size: 227 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/alert-black.png
vendored
Normal file
|
After Width: | Height: | Size: 244 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/alert-white.png
vendored
Normal file
|
After Width: | Height: | Size: 243 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-black.png
vendored
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-black.png
vendored
Normal file
|
After Width: | Height: | Size: 167 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-white.png
vendored
Normal file
|
After Width: | Height: | Size: 173 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-black.png
vendored
Normal file
|
After Width: | Height: | Size: 159 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-white.png
vendored
Normal file
|
After Width: | Height: | Size: 171 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-d-white.png
vendored
Normal file
|
After Width: | Height: | Size: 149 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-l-black.png
vendored
Normal file
|
After Width: | Height: | Size: 149 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-l-white.png
vendored
Normal file
|
After Width: | Height: | Size: 156 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-r-black.png
vendored
Normal file
|
After Width: | Height: | Size: 147 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-r-white.png
vendored
Normal file
|
After Width: | Height: | Size: 152 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-black.png
vendored
Normal file
|
After Width: | Height: | Size: 147 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-black.png
vendored
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-white.png
vendored
Normal file
|
After Width: | Height: | Size: 169 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-black.png
vendored
Normal file
|
After Width: | Height: | Size: 163 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-white.png
vendored
Normal file
|
After Width: | Height: | Size: 165 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/arrow-u-white.png
vendored
Normal file
|
After Width: | Height: | Size: 151 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/audio-black.png
vendored
Normal file
|
After Width: | Height: | Size: 307 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/audio-white.png
vendored
Normal file
|
After Width: | Height: | Size: 314 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/back-black.png
vendored
Normal file
|
After Width: | Height: | Size: 233 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/back-white.png
vendored
Normal file
|
After Width: | Height: | Size: 240 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/bars-black.png
vendored
Normal file
|
After Width: | Height: | Size: 132 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/bars-white.png
vendored
Normal file
|
After Width: | Height: | Size: 135 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/bullets-black.png
vendored
Normal file
|
After Width: | Height: | Size: 147 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/bullets-white.png
vendored
Normal file
|
After Width: | Height: | Size: 152 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/calendar-black.png
vendored
Normal file
|
After Width: | Height: | Size: 146 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/calendar-white.png
vendored
Normal file
|
After Width: | Height: | Size: 143 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/camera-black.png
vendored
Normal file
|
After Width: | Height: | Size: 250 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/camera-white.png
vendored
Normal file
|
After Width: | Height: | Size: 251 B |
BIN
ИЭТР-тест/Develop/app/bower_components/jquery.mobile-1.4.5/images/icons-png/carat-d-black.png
vendored
Normal file
|
After Width: | Height: | Size: 207 B |