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
    
  
  
    
  | checking whether make supports nested variables... yes | |
| Building libtorrent-rasterbar 1.1.12 | |
| Checking for a C/C++ compiler to use: | |
| checking for gcc... gcc | |
| checking whether the C compiler works... yes | |
| checking for C compiler default output file name... a.out | |
| checking for suffix of executables... | |
| checking whether we are cross compiling... no | 
  
    
      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
    
  
  
    
  | { | |
| "private": true, | |
| "devDependencies": { | |
| "babel-cli": "~6.24.1", | |
| "babel-loader": "~7.0.0", | |
| "babel-preset-es2015": "~6.24.1", | |
| "babel-preset-react": "~6.24.1", | |
| "babel-preset-stage-2": "~6.24.1", | |
| "babel-runtime": "~6.23.0", | |
| "bower": "~1.8.0", | 
      This file has been truncated, but you can view the full file.
    
    
  
    
      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
    
  
  
    
  | 0 info it worked if it ends with ok | |
| 1 verbose cli [ '/Users/ivailo/.nvm/versions/node/v7.10.0/bin/node', | |
| 1 verbose cli '/Users/ivailo/.nvm/versions/node/v7.10.0/bin/npm', | |
| 1 verbose cli 'install' ] | |
| 2 info using npm@4.6.1 | |
| 3 info using node@v7.10.0 | |
| 4 silly install loadCurrentTree | |
| 5 silly install readLocalPackageData | |
| 6 silly install normalizeTree | |
| 7 silly install loadIdealTree | 
  
    
      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
    
  
  
    
  | def encrypted_id_view(model_class, parameter_name): | |
| """Wraps a view, decoding a kwargs with parameter_name using the model_class id encryption.""" | |
| def wrapped_decorator(f): | |
| @wraps(f) | |
| def wrapped_f(*args, **kwargs): | |
| # Normally the regex in the url returns a string, but decode will give us an int | |
| kwargs[parameter_name] = str( | |
| model_class._get_id_cipher().decrypt(kwargs[parameter_name])) | |
| return f(*args, **kwargs) | 
  
    
      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
    
  
  
    
  | public class Main { | |
| public static void main(String[] args) throws Exception { | |
| PDDocument doc = PDDocument.loadNonSeq(new File("test.pdf"), null); | |
| doc.setAllSecurityToBeRemoved(true); | |
| PDDocumentCatalog cat = doc.getDocumentCatalog(); | |
| PDAcroForm form = cat.getAcroForm(); | |
| for (Object _field : form.getFields()) { | |
| PDField field = (PDField) _field; | |
| System.out.println(field.getFullyQualifiedName()); | |
| field.setValue(field.getFullyQualifiedName()); |