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 = { | |
up: (queryInterface, Sequelize) => { | |
return queryInterface.addIndex('Parties', { | |
fields: [Sequelize.literal('name gin_trgm_ops')], // <-- name = field name, gin_trgm_ops comes after the field name | |
using: 'gin', | |
indexName: 'party_name_gin_trgm_idx', // specify the index name manually otherwise sequelize will create party_ | |
unique: false, | |
}) |
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
/** | |
* Step 1: Download showdown.js, from here: https://raw.githubusercontent.com/showdownjs/showdown/master/compressed/showdown.js | |
* Step 2: Customize Design --> edit theme --> assets and upload it. | |
* Step 3: Add a script tag to your head using the url from asset page. | |
* Step 4: Add this to article-body section, Javascript (make sure you select JS), add it before | |
* Step 5: Create an article, switch to source view, add <PRE>- to the top of the file, | |
* then put your markdown and end it with a </PRE>. If you don't do this, when you save the wysiwg will screw | |
* your markdown with html markup. The - is just what i chose to put on the top line... it could be any character | |
* or string | |
* |
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
import urllib2 | |
import base64 | |
import json | |
import logging | |
import os | |
import re | |
import unicodedata | |
logger = logging.getLogger(__name__) |
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
/** | |
* Takes in an array of two objects, flattens the currArray, and prints an HTML Table of the values. | |
* The HTML table has a column header which is a superset of all keys in all the objects. | |
* Any values that have changed (ie field value changed or is a new key altogether) should be bolded. | |
* | |
* @param prevArray is an array of objects | |
* @param currArray is an array of objects | |
* @return a string with HTML markup in it, should return null if error occurs. | |
*/ | |
function arrayDiffToHtmlTable( prevArray, currArray) { |
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
[ | |
{ | |
"__v": 0, | |
"_id": "5271fa60dc34c80000000002", | |
"_organization": "526f3ca5174b310000000004", | |
"callerIdCity": "", | |
"callerIdName": "", | |
"createdDate": "2013-10-31T06:36:16.832Z", | |
"deleted": false, | |
"description": "", |
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
[ | |
{ | |
"__v": 0, | |
"_id": "5271fa60dc34c80000000002", | |
"_organization": "526f3ca5174b310000000004", | |
"callerIdCity": "", | |
"callerIdName": "", | |
"createdDate": "2013-10-31T06:36:16.832Z", | |
"deleted": false, | |
"description": "", |
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
<script> | |
jQuery(document).ready( function() { | |
jQuery(".page-tabs a:contains(Solutions)").text("FAQ"); | |
}); | |
</script> |
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 | |
$dependencies['Cases']['panel_visibility'] = array( | |
'hooks' => array("edit"), | |
'trigger' => 'equal($status, "Closed")', //Optional, the trigger for the dependency. Defaults to 'true'. | |
'triggerFields' => array('status'), | |
'onload' => true, | |
//Actions is a list of actions to fire when the trigger is true | |
'actions' => array( | |
array( | |
'name' => 'SetPanelVisibility', |
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
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
using System.Windows.Forms; | |
namespace Liensberger | |
{ | |
/// <summary> | |
/// Author: Christian Liensberger |
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
/** | |
* Returns true if license is valid, false otherwise | |
* @param $response this parameter is passed by reference and will be updated with the actual response from | |
* calling the Sugar Outfitters API. See: https://www.sugaroutfitters.com/docs/sugaroutfitters/selling-license-api | |
* @return true or false | |
*/ | |
function isLicenseValid(&$response) { | |
//global $outfitters_config; | |
global $sugar_config; |
NewerOlder