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
{ | |
"genesis_file": "genesis.json", | |
"genesis_records_file": null, | |
"validator_key_file": "validator_key.json", | |
"node_key_file": "node_key.json", | |
"rpc": { | |
"addr": "0.0.0.0:3030", | |
"prometheus_addr": null, | |
"cors_allowed_origins": [ | |
"*" |
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
window.addEventListener('message', function(event) { | |
console.log("test"); | |
var links = document.querySelectorAll("a"); | |
for( var i = 0; i < links.length ; i++ ){ | |
links[i].addEventListener("click" , function(e){ | |
if(event.data.iframeDisableLink){ | |
e.preventDefault(); | |
} | |
window.parent.postMessage({ | |
url: this.href |
This file has been truncated, but you can view the full file.
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
// modules are defined as an array | |
// [ module function, map of requires ] | |
// | |
// map of requires is short require name -> numeric require | |
// | |
// anything defined in a previous bundle is accessed via the | |
// orig method which is the require for previous bundles | |
(function (modules, entry, mainEntry, parcelRequireName, globalName) { | |
/* eslint-disable no-undef */ |
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
<div id="theme-1"> | |
<div class="np_avatar"></div> | |
<div class="np_title"></div> | |
<div class="np_description"></div> | |
<div class="np_social_links"></div> | |
<div class="np_social_extra"></div> | |
</div> | |
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
<div id="theme-1"> | |
<div class="np_avatar"></div> | |
<div class="np_title"></div> | |
<div class="np_description"></div> | |
<div class="np_social_links"></div> | |
<div class="np_social_extra"></div> | |
</div> | |
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 | |
// Amazon S3 SDK v3.93.7 | |
// http://aws.amazon.com/de/sdkforphp2/ | |
// https://github.com/aws/aws-sdk-php | |
// http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region | |
use \Inpsyde\BackWPupShared\File\MimeTypeExtractor; | |
/** | |
* Documentation: http://docs.amazonwebservices.com/aws-sdk-php-2/latest/class-Aws.S3.S3Client.html |
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
jQuery(document).ready(function(a){backwpup_htmlspecialchars=function(t){return jQuery("<span>").text(t).html()},a.fn.backwpupDelayKeyup=function(t){var i=0;return a(this).keyup(function(){clearTimeout(i),i=setTimeout(t,200)}),a(this)},backwpup_tb_position=function(){var t=a("#TB_window"),i=a(window).width(),e=a(window).height(),n=720<i?720:i,h=525<e?525:e,o=0;return a("body.admin-bar").length&&(o=28),0<t.length&&(t.width(n-50).height(h-45-o),a("#TB_iframeContent").width(n-50).height(h-75-o),t.css({"margin-left":"-"+parseInt((n-50)/2,10)+"px"}),void 0!==document.body.style.maxWidth&&t.css({top:20+o+"px","margin-top":"0"})),a("a.thickbox").each(function(){var t=a(this).attr("href");t&&(t=(t=t.replace(/&width=[0-9]+/g,"")).replace(/&height=[0-9]+/g,""),a(this).attr("href",t+"&width="+(n-80)+"&height="+(h-85-o)))})},a(window).resize(function(){backwpup_tb_position()}),backwpup_tb_position()}); |
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 | |
/** | |
* BackWPup_Destination_Downloader | |
* | |
* @since 3.6.0 | |
* @package Inpsyde\BackWPup | |
*/ | |
use Inpsyde\Restore\Api\Controller\DecryptController; | |
use Inpsyde\Restore\Api\Module\Decryption\Exception\DecryptException; |
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 | |
/** | |
* | |
*/ | |
class BackWPup_JobType_WPEXP extends BackWPup_JobTypes { | |
/** | |
* | |
*/ | |
public function __construct() { |
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 | |
/** | |
* Class in that the BackWPup job runs | |
*/ | |
final class BackWPup_Job { | |
const ENCRYPTION_SYMMETRIC = 'symmetric'; | |
const ENCRYPTION_ASYMMETRIC = 'asymmetric'; |
NewerOlder