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
#!/usr/bin/python | |
import os, sys, re, time | |
if __name__ == '__main__': | |
cvs_log = open(sys.argv[1]) | |
patch_file = None | |
if len(sys.argv) > 2: |
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
package sun.text.resources; | |
import java.io.FileNotFoundException; | |
import java.io.PrintWriter; | |
import java.io.UnsupportedEncodingException; | |
import java.sql.Timestamp; | |
import java.text.DateFormat; | |
import java.text.MessageFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Locale; |
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
<!doctype html> | |
<html> | |
<head> | |
<title>simple-eventchain-demo</title> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<button type="button" data-demo-action="start">Start Demo</button> |
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
$(".SuggestionTextBox").each(function(){ if (isNaN ($(this)[0].value) ) console.log($(this)[0].value); }); |
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
<exec os="Linux" executable="sftp" inputstring='ls -l ${remote.directory}'> | |
<arg line='-o Protocol=2 -o IdentityFile=${KEYFILE} ${USER}@${HOST}' /> | |
</exec> |
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
<sql driver="${DB.DB2.DRIVER}" url="${DB.DB2.JDBC.URL}" userid="${DB.DB2.USER}" password="${DB.DB2.PASSWORD}"> | |
<classpath> | |
<pathelement location="${DB.DB2.CLASSPATH}"/> | |
</classpath><![CDATA[ | |
CALL SYSPROC.ADMIN_CMD(' | |
load from ${remote.directory.put.to}/${LOCAL.FILE.LOGAN.PARSED} of del modified by coldel| method P(..... ) insert into ${DB.DB2.SCHEMA}.${DB.DB2.TABLE} (....) nonrecoverable | |
'); | |
]]></sql> |
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"?> | |
<project name="project" basedir="." default="jar"> | |
<property file="build.properties"/> | |
<target name="clean"> | |
<delete dir="dist" /> | |
<delete dir="build" /> | |
<mkdir dir="dist"/> | |
<mkdir dir="build"/> |