This file contains 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
{ | |
"Microsoft.DataFactory/factories/pipelines": {}, | |
"Microsoft.DataFactory/factories/integrationRuntimes": { | |
"properties": { | |
"typeProperties": { | |
"ssisProperties": { | |
"catalogInfo": { | |
"catalogServerEndpoint": "=", | |
"catalogAdminUserName": "=", | |
"catalogAdminPassword": { |
This file contains 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 statesProvinces: [{ | |
name: 'Alabama', | |
id: 'AL', | |
counties: [ | |
"Autauga County", | |
"Baldwin County", | |
"Barbour County", | |
"Bibb County", | |
"Blount County", | |
"Bullock County", |
This file contains 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
'use strict'; | |
module.exports = { | |
//Winston Logging variables. | |
winston: { | |
//Transport Type (none|mail|sns|mongo|paperTrail) | |
transport: 'none', | |
//Mail Transport via SMTP | |
mail: { | |
to: '[email protected]', |
This file contains 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
'use strict'; | |
/** | |
* Module Dependencies | |
* @type type | |
*/ | |
var winston = require('winston'); | |
var mail = require('winston-mail').Mail; | |
var sns = require('winston-sns').SNS; | |
var mongo = require('winston-mongodb').MongoDB; |
This file contains 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
<?php | |
/** | |
* ISO Countries | |
* Last Updated: September 16, 2014 | |
*/ | |
$locations = array( | |
'AFG' => array( | |
'name' => 'Afghanistan', |
This file contains 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
/* | |
|-------------------------------------------------------------------------- | |
| Detect The Application Environment | |
|-------------------------------------------------------------------------- | |
| | |
| Laravel takes a dead simple approach to your application environments | |
| so you can just specify a machine name for the host that matches a | |
| given environment, then we will automatically detect it for you. | |
| | |
*/ |
This file contains 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
/* | |
* My Module Api JS. | |
*/ | |
(function ($) { | |
//Property Api Behavior | |
Drupal.behaviors.myModuleApi = { | |
attach: function (context, settings) { | |
//Check for Geo Location. | |
context = $('body.page-search-properties'); | |
if (context.length > 0) { |
This file contains 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
** | |
* Implements hook_library | |
*/ | |
function my_module_api_library() { | |
//Google API key. | |
$key = 'mygoogleapikey'; | |
$libraries = array(); | |
$libraries['my-module'] = array( | |
'title' => 'My Module', | |
'website' => 'http://my-site.localhost', |
This file contains 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
/* | |
Cake PHP's Form Helper will not allow use to use the has-error class, and wrap | |
the form elements properly, so we update their CSS to use the .error class. | |
*/ | |
.error .help-block, | |
.error .control-label, | |
.error .radio, | |
.error .checkbox, | |
.error .radio-inline, | |
.error .checkbox-inline { |
This file contains 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
//Create a cursor for suggestions. | |
@Deprecated | |
private void createSuggestions (String characters) { | |
suggestionsCursor = new MatrixCursor(columnNames); | |
int suggestionId = 0; | |
for (Manifests country : countries) { | |
String name = country.getName(); | |
String check = name.toLowerCase(); | |
if (check.startsWith(characters.toLowerCase())) { | |
//Create suggestions. |