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
We have seen cases where an EM repo ends up nesting the entire REDCap web repo inside of it recursively. You often get /webauth/webauth/webuath runaways. | |
determine the hash for the last 'good' commit. | |
git checkout dev | |
git log -5 // determine last good commit | |
git reset --hard HASH | |
git push -f origin dev | |
Then repeat for master and prod if it ended up there... |
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
<?php | |
/* | |
* This script is intended to help you keep your many cloned external modules current... | |
* To run, place this in your redcap root folder and from the command line run | |
* | |
* php update_pull.php | |
* | |
* Note that nothing will be automatically done unless you pass in a true argument as in | |
* |
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
// Create a javascript object to hold all of our config features | |
var SummarizeConfig = { | |
init: function(params) { | |
// Make true | |
this.isDev = true; | |
// We need to delay a little bit for the rest of the config to finish loading | |
setTimeout(function() { | |
SummarizeConfig.configAjax.call(SummarizeConfig,'pages/ConfigAjax') |
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
<?php | |
namespace Stanford\Utility; | |
use \REDCap as REDCap; | |
/** | |
* Class ActionTagHelper | |
* | |
* A class for helping to parse custom action tags | |
*/ | |
class ActionTagHelper |
NewerOlder