386 lines
15 KiB
PHP
386 lines
15 KiB
PHP
<?php
|
|
|
|
// Exit if accessed directly
|
|
if ( !defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
function openmamba_breadcrumbs() {
|
|
$text['category'] = '';
|
|
}
|
|
|
|
// custom fonts
|
|
function add_custom_font() {
|
|
$url = get_stylesheet_directory_uri() . '/fonts/comfortaa-regular/stylesheet.css';
|
|
wp_register_style('comfortaaregular', $url);
|
|
wp_enqueue_style('comfortaaregular');
|
|
wp_register_style('comfortaalight', $url);
|
|
wp_enqueue_style('comfortaalight');
|
|
wp_register_style('comfortaabold', $url);
|
|
wp_enqueue_style('comfortaabold');
|
|
}
|
|
add_action('wp_print_styles', 'add_custom_font');
|
|
|
|
// add styles and scripts
|
|
function add_custom_scripts() {
|
|
wp_deregister_script('jquery');
|
|
$protocol = 'http:';
|
|
if($_SERVER['HTTPS']=='on') {
|
|
$protocol='https:';
|
|
}
|
|
$output .= "<script type=\"text/javascript\" src=\"" . get_stylesheet_directory_uri() . "/scripts/jquery.cookiebar.js\"></script>\n";
|
|
wp_register_script('jquery', get_stylesheet_directory_uri() . "/scripts/jquery.min.js", false, '1.11.3');
|
|
wp_enqueue_script('jquery');
|
|
$JQUERY_LOADED = true;
|
|
wp_register_script('jquerymigrate', get_stylesheet_directory_uri() . "/scripts/jquery-migrate-1.2.1.min.js", false, '1.2.1');
|
|
wp_enqueue_script('jquerymigrate');
|
|
}
|
|
add_action('template_redirect', 'add_custom_scripts');
|
|
|
|
function add_mime_types($mime_types) {
|
|
$mime_types['txt'] = 'text/plain';
|
|
return $mime_types;
|
|
}
|
|
add_filter('upload_mimes', 'add_mime_types', 1, 1);
|
|
|
|
function add_search_box($items, $args) {
|
|
if($args->theme_location == 'header-menu') {
|
|
ob_start();
|
|
get_search_form();
|
|
$searchform = ob_get_contents();
|
|
ob_end_clean();
|
|
|
|
return $items .= '<li id="searchform-item">' . $searchform . '</li>';
|
|
}
|
|
return $items;
|
|
}
|
|
add_filter('wp_nav_menu_items','add_search_box', 10, 2);
|
|
|
|
function set_title($title) {
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos + 1);
|
|
parse_str($urlargs, $args);
|
|
$newtitle = $title;
|
|
if ($args['arch']) {
|
|
$newtitle = $args['arch'] . " - " . $newtitle;
|
|
}
|
|
if ($args['tag']) {
|
|
$newtitle = $args['tag'] . " - " . $newtitle;
|
|
}
|
|
if ($args['pkg']) {
|
|
if ($args['pkg'] == '_index')
|
|
$newtitle = 'Index - ' . $newtitle;
|
|
else {
|
|
$e = explode('.', $args['pkg']);
|
|
$newtitle = $e[0] . " - " . $e[1] . " - " . $newtitle;
|
|
}
|
|
}
|
|
return $newtitle;
|
|
}
|
|
return $title;
|
|
}
|
|
add_filter('wp_title','set_title');
|
|
|
|
// openmamba downloads pages
|
|
function openmamba_download_link($milestone, $medium, $currarch, $ext, $mlword, $lang) {
|
|
$latest_file = "/var/ftp/pub/openmamba/media/".$milestone."/".$medium."/".$lang."/latest.inc.php";
|
|
if (!file_exists($latest_file)) return "";
|
|
eval(file_get_contents("/var/ftp/pub/openmamba/media/".$milestone."/".$medium."/".$lang."/latest.inc.php"));
|
|
if ("$milestone" == "devel") {
|
|
$displaymilestone = "rolling";
|
|
} else {
|
|
$displaymilestone = "$milestone";
|
|
}
|
|
$currreleasetag=$releaseTag[$medium.'-'.$milestone.'-'.$lang.'-'.$currarch];
|
|
$ret = '';
|
|
# if ($lang != "it") {
|
|
$downloadmirror = 'http://cdn.openmamba.org/pub/openmamba/media';
|
|
# } else {
|
|
# $downloadmirror = '/media';
|
|
# }
|
|
if ("$currreleasetag" != "") {
|
|
$ret .= "<table style='border:0;margin:0;margin-bottom:5px;'><tr><td style='vertical-align:middle;padding:4px;border:0;margin:0;width:20px;align:center;'><img src=/wp-content/themes/openmamba/download.png /></td>";
|
|
$ret .= "<td style='border:0;margin:0;padding:4px;'><h5 style='margin:1px;'><a href=\"" . $downloadmirror. "/$milestone/$medium/$lang/".
|
|
$nameMedium[$medium.'-'.$currreleasetag.'-'.$lang.'-'.$currarch]."\">";
|
|
$ret .= "openmamba $displaymilestone $medium ";
|
|
$ret .= __('for','responsive')." $currarch ($mlword)</a> </h5>";
|
|
$ret .= "<i>";
|
|
$ret .= __('File size:','responsive').' '.$sizeMedium[$medium.'-'.$currreleasetag.'-'.$lang.'-'.$currarch].'B; ';
|
|
$ret .= __('Date','responsive').': '.substr($builddateMedium[$medium.'-'.$currreleasetag.'-'.$lang.'-'.$currarch],
|
|
0, strpos($builddateMedium[$medium.'-'.$currreleasetag.'-'.$lang.'-'.$currarch], ' '));
|
|
$ret .= "; Md5: " . $md5Medium[$medium.'-'.$currreleasetag.'-'.$lang.'-'.$currarch];
|
|
$ret .= "</i></td></tr></table>";
|
|
} else {
|
|
$ret .= "<table style='border:0;margin:0;margin-bottom:5px;'><tr><td style='vertical-align:middle;padding:4px;border:0;margin:0;width:20px;align:center;'><img src=/wp-content/themes/openmamba/download.png /></td>";
|
|
$ret .= "<td style='border:0;margin:0;padding:4px;'><h5 style='margin:1px;'>";
|
|
$ret .= "openmamba $displaymilestone $medium ";
|
|
$ret .= __('for','responsive')." $currarch ($mlword) </h5>";
|
|
$ret .= "<i><font color=red>";
|
|
$ret .= __('Sorry, download is temporary unavailable. If the problem persists please report the problem.','responsive');
|
|
$ret .= "</font></i></td></tr></table>";
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
function openmamba_infofile($mediaprefix, $milestone, $fallbackmilestone, $medium, $outputlang, $filename) {
|
|
if (file_exists("$mediaprefix/$milestone/$medium/info/$filename.$outputlang.html.inc")) {
|
|
$script_file = "$mediaprefix/$milestone/$medium/info/$filename.$outputlang.html.inc";
|
|
} else if (file_exists("$mediaprefix/$fallbackmilestone/$medium/info/$filename.$outputlang.html.inc")) {
|
|
$script_file = "$mediaprefix/$fallbackmilestone/$medium/info/$filename.$outputlang.html.inc";
|
|
}
|
|
$ret = '';
|
|
if ($script_file) {
|
|
$file = fopen($script_file, "r");
|
|
while (!feof($file)) {
|
|
$b=fread($file,1024);
|
|
$ret .= $b;
|
|
}
|
|
fclose($file);
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
function openmamba_download_func( $atts ) {
|
|
$a = shortcode_atts( array(
|
|
'milestone' => 'devel',
|
|
'medium' => 'livedvd',
|
|
'multilang' => '0',
|
|
'archs' => 'x86_64;i586;arm', // bitmask: 1=x86_64 2=i586 3=arm
|
|
'ext' => '.iso'
|
|
), $atts );
|
|
$milestone = $a['milestone'];
|
|
$medium = $a['medium'];
|
|
$ext = $a['ext'];
|
|
$fallbackmilestone = 'milestone2';
|
|
if ("$milestone" == "devel") {
|
|
$displaymilestone = "rolling";
|
|
$suffixmilestone = "snapshot";
|
|
} else {
|
|
$displaymilestone = "$milestone";
|
|
$suffixmilestone = "$milestone";
|
|
}
|
|
$archname = array("x86_64", "i586", "arm");
|
|
$mediaprefix = '/var/ftp/pub/openmamba/media';
|
|
$mediafallbackprefix = '/var/ftp/pub/openmamba/media/milestone2';
|
|
$outputlang = get_bloginfo("language");
|
|
$outputlang = substr($outputlang,0,2);
|
|
if ("$outputlang" != "it") {
|
|
$outputlang = "en";
|
|
$mlword = "multilanguage";
|
|
} else {
|
|
$mlword = "multilingue";
|
|
}
|
|
$ret = "<h3>openmamba $medium $displaymilestone</h3>";
|
|
|
|
$ret .= do_shortcode(
|
|
openmamba_infofile($mediaprefix,$milestone,$fallbackmilestone,$medium,$outputlang,"description"));
|
|
|
|
$ret .= "<br><br>";
|
|
if ($a['multilang']) {
|
|
reset($archname);
|
|
while (list(, $currarch) = each($archname)) {
|
|
if (strpos(";".$a['archs'].";",$currarch) == false) continue;
|
|
$ret .= openmamba_download_link($milestone,$medium,$currarch,$ext,$mlword,"en");
|
|
}
|
|
} else {
|
|
reset($archname);
|
|
$langs = array('it' => 'italiano','en' => 'english','es' => 'español');
|
|
while (list(, $currarch) = each($archname)) {
|
|
if (strpos(";".$a['archs'].";",$currarch) == false) continue;
|
|
$ret .= openmamba_download_link($milestone,$medium,$currarch,$ext,$langs[$outputlang],$outputlang);
|
|
}
|
|
foreach ($langs as $l => $lang) {
|
|
if ($l == $outputlang) continue;
|
|
reset($archname);
|
|
while (list(, $currarch) = each($archname)) {
|
|
if (strpos(";".$a['archs'].";",$currarch) == false) continue;
|
|
$out .= openmamba_download_link($milestone,$medium,$currarch,$ext,$lang,$l);
|
|
}
|
|
}
|
|
$ret .= do_shortcode("[expand title=\"". __("More languages...","responsive") . "\"]". $out ."[/expand]");
|
|
}
|
|
|
|
$ret .= do_shortcode(" [expand title=\"".__("Features","responsive")."\"]".
|
|
openmamba_infofile($mediaprefix,$milestone,$fallbackmilestone,$medium,$outputlang,"features").
|
|
"[/expand]");
|
|
|
|
$ret .= do_shortcode(" [expand title=\"".__("Requirements","responsive")."\"]".
|
|
openmamba_infofile($mediaprefix,$milestone,$fallbackmilestone,$medium,$outputlang,"requirements").
|
|
"[/expand]");
|
|
|
|
$ret .= do_shortcode(" [expand title=\"".__("Preparation","responsive")."\"]".
|
|
openmamba_infofile($mediaprefix,$milestone,$fallbackmilestone,$medium,$outputlang,"howto").
|
|
"[/expand]");
|
|
|
|
$ret .= "<hr>";
|
|
return $ret;
|
|
}
|
|
add_shortcode('openmamba_download', 'openmamba_download_func');
|
|
|
|
function openmamba_webbuild_func( $atts ) {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos);
|
|
}
|
|
|
|
$a = shortcode_atts( array(
|
|
'host' => 'buildvm01.openmamba.org'
|
|
), $atts );
|
|
print '<script>host="' . $a['host'] . '"</script>';
|
|
|
|
$file = fopen(get_stylesheet_directory() . '/webbuild.html.inc', "r");
|
|
print fread($file, 20000);
|
|
flush();
|
|
fclose($file);
|
|
|
|
print "<script>$(document).ready(function(){ ajax_getvalues(\"" . $urlargs . "\",\"\");";
|
|
print "ajax_getvalues_refresh(\"\",user,user_email,encodeURIComponent(secret)); })</script>";
|
|
}
|
|
add_shortcode('openmamba_webbuild', 'openmamba_webbuild_func');
|
|
|
|
function openmamba_webbuild_status_func() {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos);
|
|
}
|
|
// print "<table width=\"100%\" style=\"border:0;\"><tr><td>";
|
|
print "<div id=\"noajax_msg\"><p>AJAX support is not enabled in your browser. Live page updates will not be available, press Reload to update.</p></div>";
|
|
print "<span class=webbuild id=\"output\">Loading, please wait...</span>";
|
|
print "<script>$(document).ready(function(){ webbuild_status_getvalues(\"" . $urlargs . "\"); })</script>";//</td></tr></table>";
|
|
}
|
|
add_shortcode('openmamba_webbuild_status', 'openmamba_webbuild_status_func');
|
|
|
|
function openmamba_distroquery_func() {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos + 1);
|
|
}
|
|
|
|
$outputlang = get_bloginfo("language");
|
|
if (substr($outputlang, 0, 2) == "it")
|
|
$outputlang = "it_IT.UTF-8";
|
|
else
|
|
$outputlang = "en_US.UTF-8";
|
|
|
|
$ret = "<span id=\"queryform\">Loading, please wait...</span><br>";
|
|
$ret .= "<span id=\"querystatus\"></span><br><span id=\"queryreply\"> </span>";
|
|
$ret .= "<script>$(document).ready(function(){ distroquery_request(\"" . $urlargs . "\"); })</script>";
|
|
|
|
return $ret;
|
|
}
|
|
add_shortcode('openmamba_distroquery', 'openmamba_distroquery_func');
|
|
|
|
function openmamba_distromatic_func() {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos + 1);
|
|
}
|
|
|
|
$outputlang = get_bloginfo("language");
|
|
if (substr($outputlang, 0, 2) == "it")
|
|
$outputlang = "it_IT.UTF-8";
|
|
else
|
|
$outputlang = "en_US.UTF-8";
|
|
|
|
$ret = "<span id=\"distromatic\">" . "Loading, please wait..." . "</span><br>";
|
|
$ret .= "<script>$(document).ready(function(){ $('#distromatic').load('/distribution/distromatic.naked.html?" . $urlargs . "'); })</script>";
|
|
|
|
return $ret;
|
|
}
|
|
add_shortcode('openmamba_distromatic', 'openmamba_distromatic_func');
|
|
|
|
function openmamba_showfile_func() {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos + 1);
|
|
}
|
|
|
|
$ret = "<span id=\"distromatic\">" . "Loading, please wait..." . "</span><br>";
|
|
$ret .= "<script>$(document).ready(function(){ $('#distromatic').load('/distribution/showfile.naked.html?" . $urlargs . "'); })</script>";
|
|
|
|
return $ret;
|
|
}
|
|
add_shortcode('openmamba_showfile', 'openmamba_showfile_func');
|
|
|
|
function openmamba_downloadfile_func() {
|
|
|
|
$urlargspos = strpos($_SERVER[REQUEST_URI], '?');
|
|
if ($urlargspos > 0) {
|
|
$urlargs = substr($_SERVER[REQUEST_URI], $urlargspos + 1);
|
|
parse_str($urlargs, $args);
|
|
if ($args['file']) {
|
|
$ret = "<span id=\"distromatic\">" . "Starting download of <strong>" . basename($args['file']) . "</strong>, please wait..." . "</span><br><br>";
|
|
$ret .= "<script>$(document).ready(function(){ window.location.href='" . $args['file'] . "'; })</script>";
|
|
}
|
|
}
|
|
|
|
return $ret;
|
|
}
|
|
add_shortcode('openmamba_downloadfile', 'openmamba_downloadfile_func');
|
|
|
|
// bbpress tag cloud
|
|
add_filter('widget_tag_cloud_args','set_number_tags');
|
|
function set_number_tags($args) {
|
|
$args = array('number' => 10, 'largest' => 20);
|
|
return $args;
|
|
}
|
|
|
|
// load_plugin_textdomain('user-registration' , get_site_url() . 'wp-content/themes/openmamba/languages/');
|
|
|
|
add_action('wp_head','hook_cookielaw');
|
|
|
|
function hook_cookielaw()
|
|
{
|
|
$outputlang = get_bloginfo("language");
|
|
$outputlang = substr($outputlang,0,2);
|
|
$message = __("This website uses cookies to improve user experience.","responsive");
|
|
$accepttext = __("I Understand","responsive");
|
|
$policytext = __("Cookie policy","responsive");
|
|
$policyurl = "/" . $outputlang . "/info/policy/";
|
|
$output = "<link rel=\"stylesheet\" type=\"text/css\" href=\"" . get_stylesheet_directory_uri() . "/styles/jquery.cookiebar.css\" />\n";
|
|
$output .= "<script type=\"text/javascript\" src=\"" . get_stylesheet_directory_uri() . "/scripts/jquery.cookiebar.js\"></script>\n";
|
|
$output .= "<script type=\"text/javascript\">$(document).ready(function(){ $.cookieBar({" .
|
|
"message: \"" . $message . "\",acceptText: '" . $accepttext . "',".
|
|
"policyText: '" . $policytext . "',policyURL: '" . $policyurl . "' }); });</script>\n";
|
|
$output .= "<script type=\"text/javascript\">document.domain='openmamba.org';</script>\n";
|
|
echo $output;
|
|
}
|
|
|
|
/*function responsive_get_social_icons() {
|
|
|
|
$responsive_options = responsive_get_options();
|
|
|
|
$sites = array (
|
|
'foursquare' => __( 'foursquare', 'responsive' ),
|
|
'twitter' => __( 'Twitter', 'responsive' ),
|
|
'facebook' => __( 'Facebook', 'responsive' ),
|
|
'linkedin' => __( 'LinkedIn', 'responsive' ),
|
|
'youtube' => __( 'YouTube', 'responsive' ),
|
|
'stumbleupon' => __( 'StumbleUpon', 'responsive' ),
|
|
'rss' => __( 'RSS Feed', 'responsive' ),
|
|
'googleplus' => __( 'Google+', 'responsive' ),
|
|
'instagram' => __( 'Instagram', 'responsive' ),
|
|
'pinterest' => __( 'Pinterest', 'responsive' ),
|
|
'yelp' => __( 'Yelp!', 'responsive' ),
|
|
'vimeo' => __( 'Vimeo', 'responsive' ),
|
|
);
|
|
|
|
$html = '<ul class="social-icons">';
|
|
foreach( $sites as $key => $value ) {
|
|
if ( !empty( $responsive_options[$key . '_uid'] ) ) {
|
|
$html .= '<li class="' . esc_attr( $key ) . '-icon"><a href="' . $responsive_options[$key . '_uid'] . '">' . '<img src="' . responsive_child_uri( '/core/icons/' . esc_attr( $key ) . '-icon.png' ) . '" width="24" height="24" alt="' . esc_html( $value ) . '">' . '</a></li>';
|
|
}
|
|
}
|
|
$html .= '</ul><!-- .social-icons -->';
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
*/ |