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
#!/usr/bin/nodejs | |
var fs = require('fs'); | |
var spawn = require('child_process').spawn; | |
function parseSubmodules(data) { | |
var lines = data.split(/\n+/); | |
var modules = {}; | |
var currentPath; |
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 | |
$translations = require 'install.php'; | |
echo "<meta charset='utf8'>"; | |
echo implode('', array_map(function ($value) { | |
return "<p>$value</p>"; | |
}, $translations['translations'])); |
NewerOlder