Subversion Repositories Applications.papyrus

Compare Revisions

Regard whitespace Rev 1703 → Rev 1704

/trunk/client/integrateur_wikini/bibliotheque/hashcash/secret/wp-hashcash.lib
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/trunk/client/integrateur_wikini/bibliotheque/hashcash/wp-hashcash-js.php
15,12 → 15,12
inp.setAttribute('name', 'hashcash_value');
inp.setAttribute('value', '-1');
var e = document.getElementsByName('<?php echo HASHCASH_FORM_NAME; ?>');
e[0].appendChild(inp);
var e = document.getElementById('<?php echo HASHCASH_FORM_ID; ?>');
e.appendChild(inp);
}
 
function addVerbage(){
var e = document.getElementById('<?php echo HASHCASH_FORM_ID; ?>');
var e = document.getElementById('<?php echo HASHCASH_FORM_CLASS; ?>');
var p = document.createElement('p');
p.innerHTML = '<?php echo str_replace("'", "\'", hashcash_verbage()); ?>';
e.appendChild(p);
31,6 → 31,7
addVerbage();
loadHashCashKey('<?php
echo $_GET['siteurl']; ?>/client/integrateur_wikini/bibliotheque/hashcash/wp-hashcash-getkey.php', '<?php echo $field_id; ?>');
 
}
 
function loadHashCashKey(fragment_url, e_id) {