diff -c mandigo-1.27.1/README.txt mandigo-1.28/README.txt *** mandigo-1.27.1/README.txt 2007-09-29 19:13:46.000000000 -0400 --- mandigo-1.28/README.txt 2007-10-13 11:42:24.000000000 -0400 *************** *** 255,267 **** ** Translation Credits Arabic: Maxer Bahasa Indonesia: Benny Wu Catalan: Sergi Barroso Chinese (Simplified): Hua Zhou Chinese (Traditional): Charles Low Czech: Milan Tucek Danish: Daniel Noesgaard Rasmussen Dutch: Ramsy de Vos ! French: Michel Bibal German: Michael Nickel, Ted Box Greek: Andrew Kontokanis Hebrew: Omry Yadan --- 255,268 ---- ** Translation Credits Arabic: Maxer Bahasa Indonesia: Benny Wu + Bulgarian: Canko Balkanski Catalan: Sergi Barroso Chinese (Simplified): Hua Zhou Chinese (Traditional): Charles Low Czech: Milan Tucek Danish: Daniel Noesgaard Rasmussen Dutch: Ramsy de Vos ! French: Michel Bibal, David Sahli German: Michael Nickel, Ted Box Greek: Andrew Kontokanis Hebrew: Omry Yadan *************** *** 295,305 **** ** Other Credits "Silk" Iconset by Mark James: http//www.famfamfam.com/lab/icons/silk/ ! "IE5.5+ PNG Alpha Fix" by Angus Turnbull http://www.twinhelix.com === CHANGELOG ========================================================================== 1.27.1 * fixed incompatibilities with the prototype library --- 296,319 ---- ** Other Credits "Silk" Iconset by Mark James: http//www.famfamfam.com/lab/icons/silk/ ! "IE5.5+ PNG Alpha Fix" by Angus Turnbull: http://www.twinhelix.com ! "jQuery" by John Resig: http://www.jquery.com === CHANGELOG ========================================================================== + 1.28 + + language: Bulgarian (bg_BG) + * grammar fixes: French (fr_FR) + * localized dates in comments + * fixed empty uls validation errors on the front page (WP2.2+) + * fixed duplicate ids validation errors in archives and search results + * fixed archive pages for WP<2.3 and WPMU (check if is_tag() exists before calling it) + * fixed images sometimes going out of post boundaries + * fixed the Theme Editor which was still not working + * removed the list bullet from the Tag Cloud + * lots of minor changes and bugfixes (hi ArnWald) + 1.27.1 * fixed incompatibilities with the prototype library diff -c mandigo-1.27.1/archive.php mandigo-1.28/archive.php *** mandigo-1.27.1/archive.php 2007-09-29 15:37:16.000000000 -0400 --- mandigo-1.28/archive.php 2007-10-13 09:49:02.000000000 -0400 *************** *** 15,24 **** ! < class="pagetitle">> ! ! < class="pagetitle">> < class="pagetitle">> --- 15,24 ---- ! < class="pagetitle">> ! ! < class="pagetitle">> < class="pagetitle">> *************** *** 61,67 **** ! < id="post-" class="posttitle posttitle-archive">> '. __('Edit','mandigo'), ' - ', ''); ?> --- 61,67 ---- ! < class="posttitle posttitle-archive">> '. __('Edit','mandigo'), ' - ', ''); ?> *************** *** 72,78 **** !

Comments

--- 72,78 ---- !

Comments

diff -c mandigo-1.27.1/attachment.php mandigo-1.28/attachment.php *** mandigo-1.27.1/attachment.php 2007-08-12 09:23:02.000000000 -0400 --- mandigo-1.28/attachment.php 2007-10-01 07:50:14.000000000 -0400 *************** *** 16,22 **** ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?>
! < class="pagetitle">post_parent); ?> » >


guid); ?>

--- 16,22 ---- ID, true, array(450, 800)); // This also populates the iconsize for the next line ?> ID); $classname = ($_post->iconsize[0] <= 128 ? 'small' : '') . 'attachment'; // This lets us style narrow icons specially ?>
! < class="pagetitle">post_parent); ?> » >


guid); ?>

Only in mandigo-1.28: bg_BG.mo diff -c mandigo-1.27.1/comments.php mandigo-1.28/comments.php *** mandigo-1.27.1/comments.php 2007-08-12 09:14:16.000000000 -0400 --- mandigo-1.28/comments.php 2007-10-13 10:12:12.000000000 -0400 *************** *** 35,41 ****
! --- 35,41 ----
! *************** *** 91,97 **** !

XHTML: You can use these tags:

--- 91,97 ---- !

XHTML:

diff -c mandigo-1.27.1/footer.php mandigo-1.28/footer.php *** mandigo-1.27.1/footer.php 2007-09-29 19:07:44.000000000 -0400 --- mandigo-1.28/footer.php 2007-10-13 10:19:24.000000000 -0400 *************** *** 65,71 **** } ! jQuery('.widgettitle, .linkcat *:first').click(function() { jQuery(this).siblings().animate({ height: 'toggle', opacity: 'toggle' }, 1000); }); --- 65,71 ---- } ! jQuery('.widgettitle, .linkcat *:first, .commentlist li cite, .wpg2blockwidget h3').click(function() { jQuery(this).siblings().animate({ height: 'toggle', opacity: 'toggle' }, 1000); }); Binary files mandigo-1.27.1/fr_FR.mo and mandigo-1.28/fr_FR.mo differ diff -c mandigo-1.27.1/functions.php mandigo-1.28/functions.php *** mandigo-1.27.1/functions.php 2007-09-29 15:37:06.000000000 -0400 --- mandigo-1.28/functions.php 2007-10-13 10:30:36.000000000 -0400 *************** *** 14,21 **** // schemes $schemes = array(); ! foreach (glob($dirs['loc']['schemes'].'*/scheme.css') as $file) { ! if (preg_match('/\/schemes\/([^\/]+)\/scheme.css/',$file,$match)) { $schemes[] = $match[1]; } } --- 14,21 ---- // schemes $schemes = array(); ! foreach (glob($dirs['loc']['schemes'].'*/scheme.css') as $scheme) { ! if (preg_match('/\/schemes\/([^\/]+)\/scheme.css/',$scheme,$match)) { $schemes[] = $match[1]; } } *************** *** 277,286 **** } $patternsdir = opendir($dirs['loc']['patterns']); ! $select_patterns = ''; while (false !== ($i = readdir($patternsdir))) { if (preg_match("/\.(?:jpe?g|png|gif|bmp)$/i",$i)) { ! $select_patterns .= ''; } } --- 277,286 ---- } $patternsdir = opendir($dirs['loc']['patterns']); ! $select_patterns = ''; while (false !== ($i = readdir($patternsdir))) { if (preg_match("/\.(?:jpe?g|png|gif|bmp)$/i",$i)) { ! $select_patterns .= ''; } } *************** *** 292,298 **** } echo ' !

Are you using the latest version? - If you enjoy Mandigo, please consider '. (rand(1,3) == 3 ? 'making a donation' : 'making a donation') .'.

Mandigo Options

--- 292,298 ---- } echo ' !

Are you using the latest version? - If you enjoy Mandigo, please consider '. (rand(0,1) ? 'making a donation' : 'making a donation') .'.

Mandigo Options

*************** *** 308,314 **** I like them all, change schemes randomly!


!
Background color: --- 308,314 ---- I like them all, change schemes randomly!


! --- 334,343 ---- *************** *** 378,390 **** Show sidebars even in single post view
Columns:


!
Background color: *************** *** 334,343 **** Repeat :
Repeat :
First sidebar : --- 378,390 ---- Show sidebars even in single post view
Columns:


! --- 472,484 ---- *************** *** 486,498 **** --- 486,498 ---- *************** *** 500,512 **** --- 500,512 ---- *************** *** 514,526 **** --- 514,526 ---- *************** *** 528,540 **** --- 528,540 ---- *************** *** 542,554 **** --- 542,554 ---- *************** *** 593,601 ****

!

Version Checker

!
--- 593,603 ----

!
+
+

Version Checker

+
*************** *** 623,628 **** --- 625,632 ----
+

+
HTML Inserts *************** *** 655,661 **** function mandigo_readme_page() { echo '
'; echo '
';
!     echo preg_replace(array('//'),array('<','>'),file_get_contents(TEMPLATEPATH.'/README.txt'));
      echo '
'; echo '
'; } --- 659,665 ---- function mandigo_readme_page() { echo '
'; echo '
';
!     echo htmlspecialchars(file_get_contents(TEMPLATEPATH.'/README.txt'));
      echo '
'; echo '
'; } Common subdirectories: mandigo-1.27.1/images and mandigo-1.28/images diff -c mandigo-1.27.1/index.php mandigo-1.28/index.php *** mandigo-1.27.1/index.php 2007-09-29 19:10:46.000000000 -0400 --- mandigo-1.28/index.php 2007-10-01 08:14:44.000000000 -0400 *************** *** 8,16 **** } $tag_posttitle_multi = get_option('mandigo_tag_posttitle_multi'); $tag_pagetitle = get_option('mandigo_tag_pagetitle' ); ?>
First sidebar : *************** *** 472,484 **** Blog name:
Blog name:
Blog description (tagline):
Blog description (tagline):
Post title (when showing multiple posts):
Post title (when showing multiple posts):
Post title (single post view):
Post title (single post view):
Page title (\'Archives\', \'Search Results\'):
Page title (\'Archives\', \'Search Results\'):
Widget title:
Widget title:
!
--- 8,24 ---- } $tag_posttitle_multi = get_option('mandigo_tag_posttitle_multi'); $tag_pagetitle = get_option('mandigo_tag_pagetitle' ); + + global $wp_registered_sidebars; + foreach ($wp_registered_sidebars as $key => $value) { + if ($value['name'] == 'Mandigo Top') { $index_mandigo_top = $key; } + if ($value['name'] == 'Mandigo Bottom') { $index_mandigo_bottom = $key; } + } + if (function_exists(wp_get_sidebars_widgets)) $sidebars_widgets = wp_get_sidebars_widgets(); + ?>
!
*************** *** 46,52 **** !

Comments

--- 54,60 ---- !

Comments

*************** *** 63,69 **** !
--- 71,77 ---- !
Common subdirectories: mandigo-1.27.1/js and mandigo-1.28/js diff -c mandigo-1.27.1/page.php mandigo-1.28/page.php *** mandigo-1.27.1/page.php 2007-09-29 15:38:46.000000000 -0400 --- mandigo-1.28/page.php 2007-09-30 13:48:18.000000000 -0400 *************** *** 23,29 **** '. __('Pages','mandigo') .': ', '

', 'number'); ?> !
'. __('Edit this page','mandigo'), '

', '

'); ?> --- 23,29 ---- '. __('Pages','mandigo') .': ', '

', 'number'); ?> !
'. __('Edit this page','mandigo'), '

', '

'); ?> Common subdirectories: mandigo-1.27.1/schemes and mandigo-1.28/schemes diff -c mandigo-1.27.1/search.php mandigo-1.28/search.php *** mandigo-1.27.1/search.php 2007-09-29 15:40:54.000000000 -0400 --- mandigo-1.28/search.php 2007-10-01 07:44:52.000000000 -0400 *************** *** 27,40 **** ! < id="post-" class="posttitle posttitle-search">>
!
--- 27,40 ---- ! < class="posttitle posttitle-search">>
!
diff -c mandigo-1.27.1/sidebar.php mandigo-1.28/sidebar.php *** mandigo-1.27.1/sidebar.php 2007-09-23 18:41:40.000000000 -0400 --- mandigo-1.28/sidebar.php 2007-10-13 09:52:12.000000000 -0400 *************** *** 11,16 **** --- 11,19 ----
  • + +
  • '. get_bloginfo('name') .'',single_tag_title('',false));?>

  • +
  • '. get_bloginfo('name') .'',get_the_time(__('l, F jS, Y','mandigo')));?>

  • *************** *** 38,48 ****
  • < class="widgettitle">> !
      !
    • ! !
    • !
  • --- 41,47 ----
  • < class="widgettitle">> !
  • diff -c mandigo-1.27.1/single.php mandigo-1.28/single.php *** mandigo-1.27.1/single.php 2007-09-29 15:39:08.000000000 -0400 --- mandigo-1.28/single.php 2007-09-30 13:48:44.000000000 -0400 *************** *** 46,52 **** !