This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <xs:element name="Something"> | |
| <xs:complexType mixed="true"> | |
| <xs:sequence> | |
| <xs:any processContents="lax" maxOccurs="unbounded"/> | |
| </xs:sequence> | |
| <xs:anyAttribute processContents="lax"/> | |
| </xs:complexType> | |
| </xs:element> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:dp="http://www.datapower.com/extensions" xmlns:dpconfig="http://www.datapower.com/param/config" extension-element-prefixes="dp" exclude-result-prefixes="dp dpconfig"> | |
| <!-- | |
| This param can be set via the DataPower GUI in the console, and it will come as input to the transformation | |
| --> | |
| <xsl:param name="dpconfig:paramName"/> | |
| <dp:param name="dpconfig:paramName"> | |
| <display>Param name value</display> | |
| <description>Param Name Description can go here</description> | |
| </dp:param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var printPage = function(id){ | |
| var html="<html><head><title>Print page</title>"; | |
| html+="</head><body>" | |
| html+= document.getElementById(id).innerHTML; | |
| html+="</body></html>"; | |
| var printWin = window.open('','','left=0,top=0,width=1,height=1,toolbar=0,scrollbars=0,status =0'); | |
| printWin.document.write(html); | |
| printWin.document.close(); | |
| printWin.focus(); | |
| printWin.print(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:void function(){ | |
| window.setInterval("window.mainFrame.setActionScreenSubmit('displayLog', 'displayLog')", 300000); | |
| document.bgColor='green';alert('Do NOT use this (GREEN) window, it will autorefresh and you may lose your changes\n\nPressing OK will automatically open a new window, continue working in that :)'); | |
| window.open(window.location) | |
| }() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (!window.console) { | |
| window.console = {}; | |
| window.console.log = function(){}; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| #RUN this script to establish connection SSH Forwarding to HOSTNAME_HERE" | |
| port=`netstat -an | grep 65321 | grep LISTEN | tr -s " " | cut -d" " -f 4 | cut -d"." -f 2` | |
| if [[ $port -ne 65321 ]] | |
| then | |
| echo "Please Enter JUMP_SERVER Password:" | |
| `ssh -gL 65321:HOSTNAME_HERE:22 0` | |
| else | |
| echo "HOSTNAME_HERE Redirect is already running on port 65321" | |
| fi |
NewerOlder