! WordPress','mandigo'); ?>, Mandigo theme by tom.
.
--- 11,31 ----
tom
! */
!
! global $wpmu;
! echo get_option('mandigo_inserts_footer');
! ?>
!
! WordPress MU','mandigo'); ?> & hosted by site_name ?>, Mandigo theme by tom.
!
!
! WordPress','mandigo'); ?>, Mandigo theme by tom.
!
!
.
***************
*** 36,45 ****
sb1 = document.getElementById("sidebar1");
sb2 = document.getElementById("sidebar2");
! heightfix = function() { cen.style.height = Math.max(sb1.clientHeight,cnt.clientHeight,(sb2?sb2.clientHeight:0)) +'px'; }
heightfix();
! var i, img, imgs, maxw;
maxw = Math.round(.96*);
imgloadevent = function(e) { imgloaded(e ? e.currentTarget : window.event.srcElement); }
--- 43,52 ----
sb1 = document.getElementById("sidebar1");
sb2 = document.getElementById("sidebar2");
! heightfix = function() { if (sb1) cen.style.height = Math.max(sb1.clientHeight,cnt.clientHeight,(sb2?sb2.clientHeight:0))+9 +'px'; }
heightfix();
! var maxw;
maxw = Math.round(.96*);
imgloadevent = function(e) { imgloaded(e ? e.currentTarget : window.event.srcElement); }
diff -c mandigo-1.19/functions.php mandigo-1.20/functions.php
*** mandigo-1.19/functions.php 2007-05-08 18:10:50.000000000 -0400
--- mandigo-1.20/functions.php 2007-05-18 10:29:00.000000000 -0400
***************
*** 1,235 ****
'Mandigo Top'));
! register_sidebar(array('name'=>'Mandigo Bottom'));
! }
! load_theme_textdomain('mandigo');
- // Set default values
- if (get_option('mandigo_scheme')) { $current = get_option('mandigo_scheme'); }
- else { $current = 'blue'; update_option('mandigo_scheme', $current); }
! if (get_option('mandigo_headoverlay')) { $headoverlay = get_option('mandigo_headoverlay'); }
! else { $headoverlay = 0; update_option('mandigo_headoverlay', $headoverlay); }
!
! if (get_option('mandigo_dates')) { $dates = get_option('mandigo_dates'); }
! else { $dates = 0; update_option('mandigo_dates', $dates); }
!
! if (get_option('mandigo_bgcolor')) { $bgcolor = get_option('mandigo_bgcolor'); }
! else { $bgcolor = '#44484F'; update_option('mandigo_bgcolor', $bgcolor); }
!
!
!
! // some global vars
! $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']);
! $ie7 = preg_match("/MSIE 7/", $_SERVER['HTTP_USER_AGENT']);
!
!
!
! // SEARCH WIDGET
! function widget_mandigo_search() {
?>
HTML Inserts', 'edit_themes', 'Inserts', 'mandigo_inserts_page'); }
! function add_mandigo_readme_page() { add_theme_page('README', 'README', 'switch_themes', 'README', 'mandigo_readme_page'); }
!
! function mandigo_set_scheme($value) { update_option('mandigo_scheme', $value); }
! function mandigo_set_bool($var,$value) { update_option($var, $value); }
! function mandigo_set_dates($value) { update_option('mandigo_dates', $value); }
! function mandigo_set_exclude_pages($value) { update_option('mandigo_exclude_pages', $value); }
! function mandigo_set_wp($value) { update_option('mandigo_wp', $value); }
! function mandigo_set_bgcolor($value) {
! if (!preg_match("/^#?[0-9A-F]{6}$/i",$value)) { $value = '#44484F'; }
! if (!preg_match("/^#/",$value)) { $value = '#'. $value; }
! update_option('mandigo_bgcolor',$value);
! }
!
! function mandigo_options_page() {
! if ( $_GET['page'] == basename(__FILE__) ) {
! $ct = current_theme_info();
!
! if (isset($_POST['changedscheme'])) {
! mandigo_set_scheme($_POST['scheme']);
! mandigo_set_dates($_POST['dates']);
! $exclude[] = '';
! foreach ( $_POST as $field => $value ) {
! if ( preg_match("/exclude_(\d+)/",$field,$id) ) { $exclude[] = $id[1]; }
! }
! mandigo_set_exclude_pages(implode(",",$exclude));
! mandigo_set_bgcolor($_POST['bgcolor']);
! mandigo_set_wp($_POST['wp']);
! mandigo_set_bool('mandigo_scheme_random' ,$_POST['random'] );
! mandigo_set_bool('mandigo_headoverlay' ,$_POST['headoverlay'] );
! mandigo_set_bool('mandigo_bold_links' ,$_POST['boldlinks'] );
! mandigo_set_bool('mandigo_1024' ,$_POST['wide'] );
! mandigo_set_bool('mandigo_nofloat' ,$_POST['nofloat'] );
! mandigo_set_bool('mandigo_footer_stats' ,$_POST['footstats'] );
! mandigo_set_bool('mandigo_3columns' ,$_POST['col3'] );
! mandigo_set_bool('mandigo_sidebar1_left' ,$_POST['sidebar1'] );
! mandigo_set_bool('mandigo_sidebar2_left' ,$_POST['sidebar2'] );
! mandigo_set_bool('mandigo_headnav_left' ,$_POST['headnavleft'] );
! mandigo_set_bool('mandigo_wptog' ,$_POST['wptog'] );
! mandigo_set_bool('mandigo_always_show_sidebars',$_POST['alwayssidebars']);
! mandigo_set_bool('mandigo_em_italics' ,$_POST['em'] );
! mandigo_set_bool('mandigo_stroke' ,$_POST['stroke'] );
! mandigo_set_bool('mandigo_headers_random' ,$_POST['randomheaders'] );
! }
! $current = get_option('mandigo_scheme' );
! $headoverlay = get_option('mandigo_headoverlay' );
! $dates = get_option('mandigo_dates' );
! $exclude = split(",",get_option('mandigo_exclude_pages'));
! $boldlinks = get_option('mandigo_bold_links' );
! $bgcolor = get_option('mandigo_bgcolor' );
! $wide = get_option('mandigo_1024' );
! $nofloat = get_option('mandigo_nofloat' );
! $footstats = get_option('mandigo_footer_stats' );
! $col3 = get_option('mandigo_3columns' );
! $sidebar1 = get_option('mandigo_sidebar1_left' );
! $sidebar2 = get_option('mandigo_sidebar2_left' );
! $headnavleft = get_option('mandigo_headnav_left' );
! $wptog = get_option('mandigo_wptog' );
! $wp = get_option('mandigo_wp' );
! $alwayssidebars = get_option('mandigo_always_show_sidebars' );
! $em = get_option('mandigo_em_italics' );
! $stroke = get_option('mandigo_stroke' );
! $randomheaders = get_option('mandigo_headers_random' );
!
! $pages = & get_pages('sort_column=menu_order');
! foreach ( $pages as $page ) {
! if (!$page->post_parent) { $pages_select .= 'ID, $exclude) ? ' checked' : '') .' /> '. $page->post_title . ''; } ! } ! ! echo ' ! !
Mandigo Options
!';
! include("README.txt");
! echo '';
! echo 'Common subdirectories: mandigo-1.19/images and mandigo-1.20/images diff -c mandigo-1.19/mandigo.pot mandigo-1.20/mandigo.pot *** mandigo-1.19/mandigo.pot 2007-02-20 16:19:56.000000000 -0500 --- mandigo-1.20/mandigo.pot 2007-05-18 11:02:48.000000000 -0400 *************** *** 1,17 **** ! # SOME DESCRIPTIVE TITLE. ! # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER ! # This file is distributed under the same license as the PACKAGE package. ! # FIRST AUTHOR
'. get_bloginfo('name') .'',get_the_time(__('l, F jS, Y','mandigo')));?>
'. get_bloginfo('name') .'',get_the_time(__('F, Y','mandigo')));?>
'. get_bloginfo('name') .'',get_the_time('Y'));?>
'. get_bloginfo('name') .'','\''. wp_specialchars($s) .'\'');?>
'. get_bloginfo('name') .'');?>
-
--- 4,30 ----
!
- !
'. get_bloginfo('name') .'',get_the_time(__('l, F jS, Y','mandigo')));?>
!
'. get_bloginfo('name') .'',get_the_time(__('F, Y','mandigo')));?>
!
'. get_bloginfo('name') .'',get_the_time('Y'));?>
!
'. get_bloginfo('name') .'','\''. wp_specialchars($s) .'\'');?>
!
'. get_bloginfo('name') .'');?>
! '. str_replace('&','%26',__('Pages','mandigo')) .'&sort_column=menu_order'); ?>
-
-
diff -c mandigo-1.19/sidebar2.php mandigo-1.20/sidebar2.php
*** mandigo-1.19/sidebar2.php 2007-03-13 21:40:34.000000000 -0400
--- mandigo-1.20/sidebar2.php 2007-05-16 10:37:14.000000000 -0400
***************
*** 1,6 ****
-
-