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
mkdir -p dist | |
Building zpipe.min.js | |
cat src/header.js src/zpipe.js src/footer.js | java -jar ~/closure-compiler/compiler.jar > dist/zpipe.min.js | |
stdin:1: WARNING - Suspicious code. The result of the 'not' operator is not being used. | |
!function (name, context, definition) { | |
^ | |
stdin:661: WARNING - unreachable code | |
return HEAP.slice(ptr, ptr + num); | |
^ |
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
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion | |
*.iml | |
## Directory-based project format: | |
.idea/ | |
# if you remove the above rule, at least ignore the following: | |
# User-specific stuff: | |
# .idea/workspace.xml |
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
pound: | |
pkg.installed: | |
- name: pound | |
file.managed: | |
- name: /etc/pound/pound.cfg | |
- source: salt://pound/files/default.conf | |
- template: jinja | |
- makedirs: True | |
cmd.run: | |
- name: pound -f /etc/pound/pound.cfg |
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
;----------------------------------------------------------------------------------------- | |
; worker method to set the time and date fields from the passed in json data model | |
;----------------------------------------------------------------------------------------- | |
private method SetTimeFields, void | |
req in aData, @lib.collections.ObjectList, aDataAccessRequest.mData | |
req out aFitter, d4 | |
req out aStartDate, d8 | |
req out aStartTime, d4 | |
req out aEndDate, d8 | |
req out aEndTime, d4 |
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"?> | |
<con:soapui-project id="3426fff0-735a-4636-9d4f-dd406173af8a" activeEnvironment="Default" name="Ibcos API Server" soapui-version="5.2.0" abortOnError="false" runType="SEQUENTIAL" resourceRoot="" xmlns:con="http://eviware.com/soapui/config"><con:settings/><con:interface xsi:type="con:RestService" id="4630b172-c7fc-4c0e-94a8-26de29bd3731" wadlVersion="http://wadl.dev.java.net/2009/02" name="http://localhost:3000" type="rest" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><con:settings/><con:definitionCache type="TEXT" rootPart=""/><con:endpoints><con:endpoint>http://localhost:3000</con:endpoint><con:endpoint>https://demo.api.ibcos.net</con:endpoint></con:endpoints><con:resource name="engineer" path="/v1/engineer" id="9ee458c0-76a5-4dd5-8fdc-a0256bd30d76"><con:settings/><con:parameters><con:parameter><con:name>customer</con:name><con:value>19999</con:value><con:style>QUERY</con:style><con:default>19999</con:default><con:description xsi:nil="true"/></con:parameter></c |
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
{ | |
"name": "ibcos-api-server", | |
"version": "1.0.0", | |
"main": "server/server.js", | |
"bin": { | |
"ibcos-api-server": "server.js" | |
}, | |
"scripts": { | |
"start": "slc run .", | |
"test": "mocha ./swagger/tests/users-test.js" |
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
/** | |
* @class AnalysisCode | |
* @type Model | |
* @description List of Marketing Analysis Codes Associated with Customer | |
* @created 13/02/2015 | |
* @author Paul Geare | |
* @copyright 2014 Constellation Software Inc. All rights reserved. | |
*/ | |
Ext.define('CRM.model.AnalysisCode', { |
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
## CustMarketingAnalysis | |
NOTE: Should these not be in Marketing Analysis Codes? | |
Applied | |
GET http://localhost:3000/v1/mafrec/unapplied?customer=19999&company=1 | |
Unapplied | |
GET http://localhost:3000/v1/mafrec/applied?customer=19999&company=1 |
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
method process | |
proc | |
begin | |
data lAction, string, Parameter('action') | |
data lAllowed, boolean, false | |
if (lAction == 'GET') | |
begin | |
; Boss |
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
SHELL=/bin/bash | |
SOURCE_DIR=/home/gdev/repos/gold/source/ibclib/classes/lib-crypto/crypto-algorithms | |
TEST_BIN_DIR=$(SOURCE_DIR)/bin | |
COMPILE_FLAGS=-Wall | |
pre_build_test: | |
mkdir -p |
OlderNewer