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 | |
/** | |
* Google Contacts Syncer | |
* by Alex Mills (http://www.viper007bond.com/) | |
* | |
* This script copies all contacts from Google account A to | |
* Google account B, wiping out all existing contacts in | |
* account B's account in the process. | |
* |
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
/* | |
* I only wanted to apply this change to the Contacts modules so I put this file in: | |
* custom/modules/Contacts/clients/base/fields/fullname/ | |
*/ | |
({ | |
extendsFrom: 'FullnameField', | |
formatMap: { | |
'f': 'first_name', | |
'l': 'last_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
ddescribe("Dashlet dashlet", function () { | |
var viewName = 'dashlet', | |
view, | |
layout, | |
context, | |
layoutName = 'record', | |
moduleName = 'Opportunities', | |
model; | |
beforeEach(function () { |