diff -rc mandigo-1.32/README.txt mandigo-1.31/README.txt
*** mandigo-1.32/README.txt 2008-03-09 14:47:33.000000000 -0400
--- mandigo-1.31/README.txt 2008-01-14 15:07:56.000000000 -0500
***************
*** 254,260 ****
** Translation Credits
Arabic: Maxer
Bahasa Indonesia: Benny Wu
- Basque: Lurdes Imaz
Bulgarian: Canko Balkanski
Catalan: Sergi Barroso
Chinese (Simplified): Hua Zhou
--- 254,259 ----
***************
*** 263,269 ****
Czech: Milan Tucek
Danish: Daniel Noesgaard Rasmussen
Dutch: Ramsy de Vos
- Finish: Mika Majakorpi
French: Michel Bibal, David Sahli
German: Michael Nickel, Ted Box
Greek: Andrew Kontokanis
--- 262,267 ----
***************
*** 275,282 ****
Lithuanian: Simonas Kiela
Malay: Intan Keristina
Maltese: James Cauchi
! Norwegian (Bokmal): Torbjorn Blystad
! Norwegian (Nynorsk): Eivind Odegard
Polish: Mateusz Baran
Portuguese (PT): Rodrigo Neves
Portuguese (BR): Oscar Nogueira Neto
--- 273,279 ----
Lithuanian: Simonas Kiela
Malay: Intan Keristina
Maltese: James Cauchi
! Norwegian: Torbjorn Blystad
Polish: Mateusz Baran
Portuguese (PT): Rodrigo Neves
Portuguese (BR): Oscar Nogueira Neto
***************
*** 306,322 ****
=== CHANGELOG ==========================================================================
- 1.32
- + language: Basque (eu)
- + language: Finish (fi_FI)
- + language: Norwegian Nynorsk (nn_NO)
- + added sub-page navigation to header links
- + added comments on pages
- + added animation buttons to comments
- * updated jQuery to 1.2.3 (addresses sidebar bugs in IE)
- * fixed transparency of PNG background patterns in IE6
- * fixed animation buttons in IE
-
1.31
+ added an option to automatically collapse posts when viewing archives & categories
+ added the Tag Cloud page template
--- 303,308 ----
diff -rc mandigo-1.32/comments.php mandigo-1.31/comments.php
*** mandigo-1.32/comments.php 2008-03-09 14:47:33.000000000 -0400
--- mandigo-1.31/comments.php 2008-01-12 08:15:54.000000000 -0500
***************
*** 28,55 ****
-
-
-
%s
!
! %s
!
! %s
!
',
!
! $oddcomment, ($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''), $id,
! $id, $id,
sprintf(__('%s says:','mandigo'),get_comment_author_link()),
($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''),
! $id, sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()), function_exists('get_edit_comment_link') && current_user_can( 'edit_post', $post->ID ) ? ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID) : '',
apply_filters('comment_text', get_comment_text())
);
if ($comment->comment_type == 'trackback'):
if (get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below'):
$trackback_list .= $comment_list_item;
--- 28,58 ----
%s
! %s
!
! %s
',
! $oddcomment,
! ($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''),
! $id,
sprintf(__('%s says:','mandigo'),get_comment_author_link()),
($comment->comment_approved == '0' ? ''. __('Your comment is awaiting moderation.','mandigo') .'' : ''),
! $id,
! sprintf(__('%s at %s','mandigo'),get_comment_date(__('F jS, Y','mandigo')),get_comment_time()),
! function_exists('get_edit_comment_link') && current_user_can( 'edit_post', $post->ID ) ? ' - '. apply_filters('edit_comment_link', ''. __('Edit','mandigo') .'', $comment->comment_ID) : '',
apply_filters('comment_text', get_comment_text())
);
+ /*
+ if ((get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below') && $comment->comment_type == 'trackback'):
+ $trackback_list .= $comment_list_item;
+ elseif (get_option('mandigo_trackbacks') == 'along' && $comment->comment_type == 'trackback'):
+ $comment_list .= $comment_list_item;
+ endif;
+ */
if ($comment->comment_type == 'trackback'):
if (get_option('mandigo_trackbacks') == 'above' || get_option('mandigo_trackbacks') == 'below'):
$trackback_list .= $comment_list_item;
Only in mandigo-1.32: eu.mo
Only in mandigo-1.32: fi_FI.mo
diff -rc mandigo-1.32/footer.php mandigo-1.31/footer.php
*** mandigo-1.32/footer.php 2008-03-09 14:47:33.000000000 -0400
--- mandigo-1.31/footer.php 2008-01-14 15:01:03.000000000 -0500
***************
*** 65,71 ****
if (jQuery.browser.msie) {
if (/^[56]/.test(jQuery.browser.version)) {
jQuery.ifixpng('1x1.gif');
! jQuery('body, .png').ifixpng();
}
jQuery('.entry object, .entry img').load(function() {
o = jQuery(this);
--- 65,71 ----
if (jQuery.browser.msie) {
if (/^[56]/.test(jQuery.browser.version)) {
jQuery.ifixpng('1x1.gif');
! jQuery('.png').ifixpng();
}
jQuery('.entry object, .entry img').load(function() {
o = jQuery(this);
***************
*** 97,124 ****
togglePost = function(id) {
if (!id) return;
! icon = jQuery('#switch-post-'+ id +' img');
! icon.attr('src', /minus/.test(icon.attr('src')) ? icon.attr('src').replace('minus', 'plus') : icon.attr('src').replace('plus', 'minus'));
! jQuery('#post-'+ id +' .entry').animate({ height: 'toggle', opacity: 'toggle' }, 1000);
! }
!
! toggleComment = function(id) {
! if (!id) return;
! icon = jQuery('#switch-comment-'+ id +' img');
! icon.attr('src', /minus/.test(icon.attr('src')) ? icon.attr('src').replace('minus', 'plus') : icon.attr('src').replace('plus', 'minus'));
! jQuery('#comment-'+ id +' div').animate({ height: 'toggle', opacity: 'toggle' }, 1000);
}
toggleSidebars = function() {
icon = jQuery('.switch-sidebars img');
! icon.attr('src', /hide/.test(icon.attr('src')) ? icon.attr('src').replace('hide', 'show') : icon.attr('src').replace('show', 'hide'));
jQuery('.sidebars').animate({ width: 'toggle', height: 'toggle', padding: 'toggle', border: 'toggle' }, 1000);
}
! jQuery('.widgettitle, .linkcat *:first, .wpg2blockwidget h3').click(function() {
jQuery(this).siblings().animate({ height: 'toggle', opacity: 'toggle' }, 1000);
! }).css({cursor: 'n-resize'});
--- 97,117 ----
togglePost = function(id) {
if (!id) return;
! icon = jQuery('#switch-post-'+id+' img');
! icon.attr('src',/minus/.test(icon.attr('src')) ? icon.attr('src').replace('minus','plus') : icon.attr('src').replace('plus','minus'));
! jQuery('#post-'+id+' .entry').animate({ height: 'toggle', opacity: 'toggle' }, 1000);
}
toggleSidebars = function() {
icon = jQuery('.switch-sidebars img');
! icon.attr('src',/hide/.test(icon.attr('src')) ? icon.attr('src').replace('hide','show') : icon.attr('src').replace('show','hide'));
jQuery('.sidebars').animate({ width: 'toggle', height: 'toggle', padding: 'toggle', border: 'toggle' }, 1000);
}
! jQuery('.widgettitle, .linkcat *:first, .commentlist li cite, .wpg2blockwidget h3').click(function() {
jQuery(this).siblings().animate({ height: 'toggle', opacity: 'toggle' }, 1000);
! });
***************
*** 150,174 ****
window.onLoad = function() { jQuery('#content').css({verticalAlign:'top'}); }
- jQuery('#header .page_item').hover(
- function() {
- a = jQuery(this).find('a' );
- ul = jQuery(this).find('ul');
- y = a.position().top + a.height();
-
- x = a.position().left;
-
- x = a.position().left + a.width() - ul.width();
-
- x = a.position().left + a.width() / 2 - ul.width() / 2;
-
- ul.css({left:x, top:y}).slideDown();
- },
- function() {
- jQuery(this).find('ul').hide();
- }
- );
-
// ]]> -->