customizeGroups.xts 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: qs
  5. (C) Copyright IBM Corp. 2001, 2017
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <xts:morphlet resolverBase="prompting" version="1.0" xmlns:xts="http://developer.cognos.com/schemas/xts/" messageBase="messages/QSRVUITextPL.xml,messages/portal.xml,messages/portalRL.xml" requiredCapability="canUseQueryStudio">
  13. <xts:block id="format" type="exec" mode="output" processor="XSLT" mimeType="text/html" dependency="getAdvancedServerSettings">
  14. <!-- get the debug logic sheet -->
  15. <xts:logicsheet path="logicsheets/debuglogic.xslt"/>
  16. <!-- get the new theme stuff -->
  17. <xts:logicsheet path="logicsheets/portal.xsl"/>
  18. <xts:logicsheet path="qs/logicsheets/dialogs.xsl"/>
  19. <xts:logicsheet path="logicsheets/presentation/dialog/framework.xsl"/>
  20. <xts:logicsheet path="logicsheets/presentation/layout.xsl"/>
  21. <xts:logicsheet path="logicsheets/presentation/dialog/presentation.xsl"/>
  22. <xts:logicsheet path="logicsheets/presentation/controls/framework.xsl"/>
  23. <xts:logicsheet path="logicsheets/presentation/controls/presentation.xsl"/>
  24. <xts:logicsheet path="logicsheets/cm-logic.xsl"/>
  25. <!-- apply the form logic -->
  26. <xts:logicsheet path="logicsheets/formlogic.xslt"/>
  27. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xts="http://developer.cognos.com/schemas/xts/" xmlns:lyt="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/layout/" xmlns:pf="http://developer.cognos.com/schemas/xts/pf" xmlns:dp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/dialog/presentation/" xmlns:df="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/dialog/framework/" xmlns:cp="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/presentation/" xmlns:cf="http://developer.cognos.com/schemas/xts/logicsheets/xslt/presentation/controls/framework/" xmlns:dbg="http://developer.cognos.com/schemas/xts/logicsheets/xslt/debug/" xmlns:qsdlg="http://developer.cognos.com/schemas/xts/logicsheets/xslt/qs/dialog/" xmlns:xtsext="xalan://com.cognos.xts.ext.XTSExt" exclude-result-prefixes="xsl xts lyt pf dp df cp cf dbg qsdlg xtsext">
  28. <xsl:output method="html" version="1.0" encoding="UTF-8" indent="no"/>
  29. <!-- Default variables (like skin) and prompt variables -->
  30. <qsdlg:variables/>
  31. <qsdlg:promptVariables/>
  32. <!-- Prompt Control XSL include -->
  33. <xsl:include href="p_include.xsl"/>
  34. <!-- add any theme variables -->
  35. <df:variables/>
  36. <pf:variables/>
  37. <!-- start the output -->
  38. <xsl:template match="/root">
  39. <dp:page>
  40. <dp:script>
  41. <xsl:call-template name="getPromptCommonIncludes"/>
  42. <xsl:call-template name="gettextBoxIncludes">
  43. <xsl:with-param name="promptLocale" select="$promptLocale"/>
  44. <xsl:with-param name="promptContentLocale" select="$contentLocale"/>
  45. </xsl:call-template>
  46. <link href="{$qsdlgskin}/qs/QSRVDialog.css" type="text/css" rel="stylesheet"/>
  47. <script type="text/javascript">
  48. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/layout.js</xsl:attribute>
  49. <xsl:text/>//<xsl:text/>
  50. </script>
  51. <script type="text/javascript">
  52. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/classes/CDialogManager.js</xsl:attribute>
  53. <xsl:text/>//<xsl:text/>
  54. </script>
  55. <script type="text/javascript">
  56. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/classes/CWindowManager.js</xsl:attribute>
  57. <xsl:text/>//<xsl:text/>
  58. </script>
  59. <script type="text/javascript">
  60. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/dialogs/customizeGroupsDialog.js</xsl:attribute>
  61. <xsl:text/>//<xsl:text/>
  62. </script>
  63. <script type="text/javascript">&lt;!--
  64. var gsCustomGroups = "<xsl:value-of select="xtsext:javascriptencode(string(/root/configurationVars/configuration/property[@name='RSVP.QS.FORCE.CUSTOM.GROUPS.VARCHAR']))"/>";
  65. var sDialogSkinPath = "<xsl:value-of select="xtsext:javascriptencode(string($qsdlgskin))"/>";
  66. var sCalcName = "<xts:string id="CUSTOMIZE_VALUES_NEW_COLUMN_LABEL" encode="javascript"/>";
  67. var sValuesRangeName = "<xts:string id="CUSTOMIZE_VALUES_RANGE_NAME" encode="javascript"/>";
  68. var goDialogManager = new CDialogManager();
  69. var WO1076_flag = true;
  70. var customGroupValues = new Array();
  71. var customGroupSelectedIndex = -1;
  72. var customGroupNames = new Array();
  73. var allAvailableValues = new Array();
  74. var cf = getConfigFrame();
  75. var MQge = null;
  76. var advClosedSize = 470;
  77. var advOpenSize = 526;
  78. var dataType = 62;
  79. var loadingTimer = 0;
  80. //--&gt;</script>
  81. <script type="text/javascript">
  82. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/dialogs/executeButton.js</xsl:attribute>
  83. <xsl:text/>//<xsl:text/>
  84. </script>
  85. </dp:script>
  86. <form style="margin:0px" name="f" method="POST" onsubmit="return false;">
  87. <table border="0" cellspacing="0" cellpadding="0" height="100%" width="100%">
  88. <tr>
  89. <td width="100%" height="0%">
  90. <!-- dialog header -->
  91. <dp:header help="false">
  92. <!-- header titles -->
  93. <dp:title>
  94. <xts:string id="CUSTOMIZE_VALUES_TITLE"/>
  95. </dp:title>
  96. <!-- close link for the header -->
  97. <dp:close>
  98. <a href="javascript:getConfigFrame().hideDialogFrame()">
  99. <dp:closeMarker/>
  100. </a>
  101. </dp:close>
  102. <!-- description (hint text) -->
  103. <dp:description>
  104. <xts:string id="CUSTOMIZE_VALUES_DESCRIPTION"/>
  105. </dp:description>
  106. </dp:header>
  107. </td>
  108. </tr>
  109. <tr>
  110. <td width="100%" height="100%" valign="top">
  111. <!-- layout -->
  112. <lyt:layout style="1" border="no">
  113. <lyt:section>
  114. <table>
  115. <tr>
  116. <td>
  117. <img src="{$qsdlgskin}/prompting/images/icon_required.gif" border="0" height="10" width="10"/>
  118. </td>
  119. <td class="dialogHintText">
  120. <xts:string id="CUSTOMIZE_VALUES_REQUIRED_FIELD"/>
  121. </td>
  122. </tr>
  123. <tr>
  124. <td>
  125. <img src="{$qsdlgskin}/prompting/images/error_timed_on.gif" border="0" height="10" width="10"/>
  126. </td>
  127. <td class="dialogHintText">
  128. <xts:string id="CUSTOMIZE_VALUES_NOTHING_SELECTED"/>
  129. </td>
  130. </tr>
  131. </table>
  132. <dp:input>
  133. <dp:section1>
  134. <xts:string id="CUSTOMIZE_VALUES_TYPE"/>
  135. </dp:section1>
  136. <dp:section2>
  137. <select name="customizationType" onChange="javascript:setTimeout(customTypeChange, 10);" style="width:260px;">
  138. <option value="0" selected="true">
  139. <xts:string id="CUSTOMIZE_VALUES_OPTION_INDIVIDUAL_GROUPS"/>
  140. </option>
  141. <option value="1">
  142. <xts:string id="CUSTOMIZE_VALUES_OPTION_RANGES"/>
  143. </option>
  144. </select>
  145. </dp:section2>
  146. </dp:input>
  147. </lyt:section>
  148. <lyt:section>
  149. <TABLE cellpadding="0" cellspacing="0" border="0" width="100%">
  150. <TR>
  151. <td width="31%">
  152. <table width="100%">
  153. <tr>
  154. <TD width="90%">
  155. <table border="0" cellpadding="0" cellspacing="0">
  156. <tr>
  157. <td class="formLabel">
  158. <xts:string id="CUSTOMIZE_GROUP_NAME_OF_GROUP"/>
  159. </td>
  160. </tr>
  161. <tr>
  162. <td>
  163. <xsl:call-template name="getTextBox">
  164. <xsl:with-param name="promptLocale" select="$promptLocale"/>
  165. <xsl:with-param name="promptFormName" select="$promptFormName"/>
  166. <xsl:with-param name="promptRequired" select="'true'"/>
  167. <xsl:with-param name="promptId" select="'group_name'"/>
  168. <xsl:with-param name="promptHideText" select="'false'"/>
  169. <xsl:with-param name="promptMultiLine" select="'false'"/>
  170. <xsl:with-param name="promptParameter" select="'parameterValue'"/>
  171. <xsl:with-param name="promptSubmitType" select="'NO_SUBMIT'"/>
  172. </xsl:call-template>
  173. </td>
  174. </tr>
  175. </table>
  176. </TD>
  177. <TD align="center" width="10%">
  178. <TABLE border="0" cellpadding="2" cellspacing="0">
  179. <tr>
  180. <td>
  181. <IMG src="{$qsdlgskin}/prompting/images/spacer.gif" height="7" width="5"/>
  182. </td>
  183. </tr>
  184. <tr>
  185. <td align="center" valign="middle">
  186. <table cellpadding="0" cellspacing="0" border="0" onClick="addGroup()">
  187. <tr>
  188. <td id="addSelectedButton" align="center" valign="top" class="clsDialogButton" onmouseover="document.getElementById('addSelectedButton').className='clsDialogButtonOver';window.status='';return true;" onmouseout="document.getElementById('addSelectedButton').className='clsDialogButton';window.status='';return true;">
  189. <IMG border="0" height="16" width="16" align="top">
  190. <xsl:attribute name="src"><xsl:value-of select="$webRoot"/>/qs/images/arrow_down.gif</xsl:attribute>
  191. <xsl:attribute name="title"><xts:string id="CUSTOMIZE_GROUP_ADD_GROUP_TIP"/></xsl:attribute>
  192. </IMG>
  193. </td>
  194. </tr>
  195. </table>
  196. </td>
  197. </tr>
  198. </TABLE>
  199. </TD>
  200. </tr>
  201. </table>
  202. </td>
  203. <td colspan="3"/>
  204. </TR>
  205. <TR>
  206. <TD valign="top" width="31%">
  207. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  208. <tr>
  209. <td class="formLabel">
  210. <xts:string id="CUSTOMIZE_GROUP_CUSTOM_GROUPS"/>
  211. </td>
  212. </tr>
  213. <tr>
  214. <td width="100%">
  215. <select id="group_names" name="group_names" size="8" style="width:100%" onChange="javascript:customGroupItemSelected();"/>
  216. </td>
  217. </tr>
  218. <TR>
  219. <TD align="right" nowrap="nowrap">
  220. <A href="javascript:deleteCustomGroup()" class="clsLink"><xts:string id="CUSTOMIZE_VALUES_DELETE"/></A>
  221. <xsl:text> </xsl:text>
  222. </TD>
  223. </TR>
  224. </table>
  225. </TD>
  226. <TD valign="top" width="31%">
  227. <TABLE border="0" cellspacing="0" cellpadding="0" width="100%" style="padding-left:5px">
  228. <tr>
  229. <TD class="formLabel">
  230. <xts:string id="CUSTOMIZE_GROUP_CUSTOM_GROUP_VALUES"/>
  231. </TD>
  232. </tr>
  233. <TR>
  234. <TD width="100%">
  235. <select id="group_values" name="group_values" multiple="true" size="8" style="width:100%" onDblClick="removeValue()"/>
  236. </TD>
  237. </TR>
  238. <TR>
  239. <TD align="right" nowrap="nowrap">
  240. <A href="javascript:selectAll('group_values')" class="clsLink"><xts:string id="DIALOG_SELECT_ALL"/></A>
  241. <xsl:text>&#160;</xsl:text>
  242. <A href="javascript:deselectAll('group_values')" class="clsLink"><xts:string id="DIALOG_DESELECT_ALL"/></A>
  243. </TD>
  244. </TR>
  245. </TABLE>
  246. </TD>
  247. <TD align="center" valign="top" width="7%" height="100%">
  248. <TABLE border="0" cellpadding="0" cellspacing="0" height="50%">
  249. <tr>
  250. <td align="center" valign="bottom" height="100%">
  251. <table cellpadding="0" cellspacing="0" border="0" onClick="addValue()">
  252. <tr>
  253. <td id="addValueButton" align="center" valign="top" class="clsDialogButton" onmouseover="document.getElementById('addValueButton').className='clsDialogButtonOver';window.status='';return true;" onmouseout="document.getElementById('addValueButton').className='clsDialogButton';window.status='';return true;">
  254. <IMG src="{$qsdlgskin}/prompting/images/remove.gif" border="0" height="16" width="16" align="top">
  255. <xsl:attribute name="title"><xts:string id="CUSTOMIZE_GROUP_ADD_VALUES_TIP"/></xsl:attribute>
  256. </IMG>
  257. </td>
  258. </tr>
  259. </table>
  260. </td>
  261. </tr>
  262. </TABLE>
  263. <TABLE border="0" cellpadding="2" cellspacing="0" height="50%">
  264. <tr>
  265. <td align="center" valign="top" height="100%">
  266. <table cellpadding="0" cellspacing="0" border="0" onClick="removeValue()">
  267. <tr>
  268. <td id="removeValueButton" align="center" valign="top" class="clsDialogButton" onmouseover="document.getElementById('removeValueButton').className='clsDialogButtonOver';window.status='';return true;" onmouseout="document.getElementById('removeValueButton').className='clsDialogButton';window.status='';return true;">
  269. <IMG src="{$qsdlgskin}/prompting/images/insert.gif" border="0" height="16" width="16" align="top">
  270. <xsl:attribute name="title"><xts:string id="CUSTOMIZE_GROUP_REMOVE_VALUES_TIP"/></xsl:attribute>
  271. </IMG>
  272. </td>
  273. </tr>
  274. </table>
  275. </td>
  276. </tr>
  277. </TABLE>
  278. </TD>
  279. <TD valign="top" width="31%" height="100%">
  280. <TABLE border="0" cellspacing="0" cellpadding="0" width="100%" height="100%">
  281. <xsl:choose>
  282. <xsl:when test="/root/env/param[@name='xxAdvanced'] = '0'">
  283. <tr>
  284. <TD class="formLabel">
  285. <xts:string id="CUSTOMIZE_GROUP_AVAILABLE_VALUES"/>
  286. </TD>
  287. </tr>
  288. <TR>
  289. <TD width="100%">
  290. <div id="loadingDiv" class="clsCheckBoxList" style="height:108px;width:100%;padding:2px;"/>
  291. <select id="available_values" name="available_values" multiple="true" size="8" style="width:100%; display: none;" onDblClick="addValue()"/>
  292. </TD>
  293. </TR>
  294. <TR>
  295. <TD align="right" nowrap="nowrap">
  296. <A href="javascript:selectAll('available_values')" class="clsLink"><xts:string id="DIALOG_SELECT_ALL"/></A>
  297. <xsl:text>&#160;</xsl:text>
  298. <A href="javascript:deselectAll('available_values')" class="clsLink"><xts:string id="DIALOG_DESELECT_ALL"/></A>
  299. </TD>
  300. </TR>
  301. </xsl:when>
  302. <xsl:otherwise>
  303. <tr>
  304. <td style="height:100%; padding: 15px 0px 20px;">
  305. <table style="height:100%; border:1px solid #cccccc;">
  306. <tr>
  307. <TD class="formLabel">
  308. <xts:string id="CUSTOMIZE_GROUP_VALUE"/>
  309. </TD>
  310. </tr>
  311. <TR>
  312. <td style="width:100%;">
  313. <xsl:choose>
  314. <xsl:when test="/root/env/param[@name='xxCustomType'] = '0'">
  315. <xsl:call-template name="getTextBox">
  316. <xsl:with-param name="promptLocale" select="$promptLocale"/>
  317. <xsl:with-param name="promptFormName" select="$promptFormName"/>
  318. <xsl:with-param name="promptRequired" select="'false'"/>
  319. <xsl:with-param name="promptId" select="'custom_value'"/>
  320. <xsl:with-param name="promptHideText" select="'false'"/>
  321. <xsl:with-param name="promptMultiLine" select="'false'"/>
  322. <xsl:with-param name="promptParameter" select="'parameterValue'"/>
  323. </xsl:call-template>
  324. </xsl:when>
  325. <xsl:when test="/root/env/param[@name='xxCustomType'] = '1'">
  326. <xsl:call-template name="getTextBox">
  327. <xsl:with-param name="promptLocale" select="$promptLocale"/>
  328. <xsl:with-param name="promptFormName" select="$promptFormName"/>
  329. <xsl:with-param name="promptRequired" select="'false'"/>
  330. <xsl:with-param name="promptId" select="'custom_value'"/>
  331. <xsl:with-param name="promptHideText" select="'false'"/>
  332. <xsl:with-param name="promptMultiLine" select="'false'"/>
  333. <xsl:with-param name="promptParameter" select="'parameterValue'"/>
  334. <xsl:with-param name="promptDataType" select="'number'"/>
  335. <xsl:with-param name="promptMaxLength" select="'15'"/>
  336. </xsl:call-template>
  337. </xsl:when>
  338. </xsl:choose>
  339. </td>
  340. </TR>
  341. </table>
  342. </td>
  343. </tr>
  344. </xsl:otherwise>
  345. </xsl:choose>
  346. </TABLE>
  347. </TD>
  348. </TR>
  349. <tr>
  350. <td colspan="4">
  351. <IMG src="{$qsdlgskin}/prompting/images/spacer.gif" height="7" width="1"/>
  352. </td>
  353. </tr>
  354. <TR>
  355. <TD valign="top" colspan="3">
  356. <table border="0" cellspacing="0" cellpadding="0" width="100%">
  357. <tr>
  358. <td class="formText" colspan="2">
  359. <a style="padding-right:5px;" href="javascript:void(0);" onmousedown="showHideApplyRemaining()" onmouseover="window.status='';return true;" onmouseout="window.status='';return true;"><xts:string id="CUSTOMIZE_VALUES_ALL_REMAINING_VALUES"/></a>
  360. <a href="javascript:void(0);" onmousedown="showHideApplyRemaining()" onmouseover="window.status='';return true;" onmouseout="window.status='';return true;">
  361. <img id="applyRemainingImg" border="0">
  362. <xsl:attribute name="src"><xsl:value-of select="$qsdlgskin"/>/prompting/images/prompt_option_expand.gif</xsl:attribute>
  363. </img>
  364. </a>
  365. </td>
  366. </tr>
  367. <tr id="individualValuesText" style="display:none">
  368. <td class="formText" colspan="2">
  369. <xts:string id="CUSTOMIZE_VALUES_USE_INDIVIDUAL_VALUES"/>
  370. </td>
  371. </tr>
  372. <tr id="noRangeNameText" style="display:none">
  373. <td class="formText" colspan="2">
  374. <xts:string id="CUSTOMIZE_VALUES_DO_NOT_SHOW_RANGE_NAME"/>
  375. </td>
  376. </tr>
  377. <tr id="rangeNameText" style="display:none">
  378. <td id="rangeNameValue" class="formText" colspan="2">
  379. <xts:string id="CUSTOMIZE_VALUES_RANGE_NAME"/>
  380. </td>
  381. </tr>
  382. <tr id="remainingValuesRow">
  383. <td>
  384. <dp:choice>
  385. <dp:section1>
  386. <input type="radio" name="remaining_values_options" value="individual_values" checked="true"/>
  387. </dp:section1>
  388. <dp:section2>
  389. <xts:string id="CUSTOMIZE_VALUES_USE_INDIVIDUAL_VALUES"/>
  390. </dp:section2>
  391. <dp:section1>
  392. <input type="radio" name="remaining_values_options" value="do_not_show"/>
  393. </dp:section1>
  394. <dp:section2>
  395. <xts:string id="CUSTOMIZE_VALUES_DO_NOT_SHOW_RANGE_NAME"/>
  396. </dp:section2>
  397. <dp:section1>
  398. <input type="radio" name="remaining_values_options" value="range_name"/>
  399. </dp:section1>
  400. <dp:section2>
  401. <xts:string id="CUSTOMIZE_VALUES_NEW_RANGE_NAME"/>
  402. </dp:section2>
  403. <dp:section3>
  404. <input style="width:200px;" type="text" name="range_name_text" onClick="javascript:document.f.remaining_values_options[2].checked = true;" onKeyPress="javascript:document.f.remaining_values_options[2].checked = true;"/>
  405. </dp:section3>
  406. </dp:choice>
  407. </td>
  408. </tr>
  409. </table>
  410. </TD>
  411. <TD valign="top">
  412. <table border="0" cellpadding="0" cellspacing="0">
  413. <tr>
  414. <td class="formLabel">
  415. <xts:string id="CUSTOMIZE_VALUES_LABEL_NAME"/>
  416. </td>
  417. </tr>
  418. <tr>
  419. <td>
  420. <input style="width:260px;" type="text" name="calc_label_text">
  421. <xsl:if test="/root/system/param[@name='disableEnterKeyAutoSubmit'] != 'true'">
  422. <xsl:attribute name="onKeyUp">javascript:if (event.keyCode == 13) execute();</xsl:attribute>
  423. </xsl:if>
  424. </input>
  425. </td>
  426. </tr>
  427. </table>
  428. </TD>
  429. </TR>
  430. </TABLE>
  431. </lyt:section>
  432. </lyt:layout>
  433. </td>
  434. </tr>
  435. <tr>
  436. <td width="100%" height="0%">
  437. <qsdlg:defaultButtons/>
  438. </td>
  439. </tr>
  440. <!-- <dbg:dumpxml select="/"/> -->
  441. </table>
  442. </form>
  443. </dp:page>
  444. </xsl:template>
  445. </xsl:stylesheet>
  446. </xts:block>
  447. <xts:block id="getAdvancedServerSettings" mode="interpret" processor="XML" type="exec" mandatory="false">
  448. <xts:sequence>
  449. <xts:append>
  450. <configurationVars>
  451. <xts:function name="getConfiguration">
  452. <xts:param name="RSVP.QS.FORCE.CUSTOM.GROUPS.VARCHAR"/>
  453. </xts:function>
  454. </configurationVars>
  455. </xts:append>
  456. </xts:sequence>
  457. </xts:block>
  458. </xts:morphlet>