diff -c mandigo-1.22/README.txt mandigo-1.23/README.txt *** mandigo-1.22/README.txt 2007-06-06 16:53:20.000000000 -0400 --- mandigo-1.23/README.txt 2007-06-18 11:41:34.000000000 -0400 *************** *** 108,113 **** --- 108,133 ---- images/headers/ folder. Valid file types are JPG, GIF, PNG and BMP. + === SEO OPTIONS ======================================================================== + + ** Custom schemes: + The keywords in <title> tags being the most important factor in search engine ranking, + it is important that to make these tags as relevant as possible. Mandigo has a feature + that lets you customize <title> tags on a per-pagetype basis, which means you can use + different naming patterns on the index, posts, pages, archives and search results. + + The following variables are available: + %blogname% = the blog title + %tagline% = the blog description + %post% = the title of the current post or page + %category% = the category for the current archive, or the list of categories for a post + %date% = the date for the current archive + %search% = the search terms + + Patterns can be a combination of arbitrary text and these variables, i.e. you could + use "Welcome to %blogname%" for the index or "Archives for %category%" for archives. + + === LOCALIZATION ======================================================================= For instructions on how to use WordPress in your language, please read the following: *************** *** 140,168 **** === TRANSLATION CREDITS ================================================================ ! Bahasa Indonesia: Benny Wu ! Chinese: Charles Low ! Czech: Milan Tucek ! Danish: Daniel Noesgaard Rasmussen ! Dutch: Ramsy de Vos ! French: Michel Bibal ! German: Michael Nickel ! Greek: Andrew Kontokanis ! Hungarian: Horvath Zoltan ! Icelandic: Karl Kristjansson ! Italian: Sebastiano Cannata ! Japanese: Mitsuhiro Kanda ! Malay: Intan Keristina ! Maltese: James Cauchi ! Norwegian: Torbjorn Blystad ! Polish: Mateusz Baran ! Portuguese: Oscar Nogueira Neto ! Russian: Michael Dolgov ! Serbian: Aleksandar Duric ! Slovak: Marek, Marian Trnka ! Spanish: Juan Luis Perez Perez ! Swedish: Ulf Wrede, Johan ! Turkish: Mert Yabul .po files are available at http://www.onehertz.com/portfolio/wordpress/mandigo/l10n/ --- 160,193 ---- === 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 ! Greek: Andrew Kontokanis ! Hebrew: Omry Yadan ! Hungarian: Horvath Zoltan ! Icelandic: Karl Kristjansson ! Italian: Sebastiano Cannata ! Japanese: Mitsuhiro Kanda ! Lithuanian: Simonas Kiela ! Malay: Intan Keristina ! Maltese: James Cauchi ! Norwegian: Torbjorn Blystad ! Polish: Mateusz Baran ! Portuguese: Oscar Nogueira Neto ! Russian: Michael Dolgov ! Serbian: Aleksandar Duric ! Slovak: Marek, Marian Trnka ! Spanish: Juan Luis Perez Perez ! Swedish: Ulf Wrede, Johan ! Turkish: Mert Yabul .po files are available at http://www.onehertz.com/portfolio/wordpress/mandigo/l10n/ *************** *** 183,188 **** --- 208,226 ---- === CHANGELOG ========================================================================== + 1.23 + + language: Arabic (ar) + + language: Catalan (ca_ES) + + language: Chinese Simplified (zh_CN) + + language: Hebrew (he_IL) + + language: Lithuanian (lt_LT) + + added support for right-to-left scripts (Hebrew & Arabic) + + added options to customize the <title> tag on a per-pagetype basis + + added an option to (slightly) highlight comments made by the author of a post + * language: renamed zh_CN to zh_TW + * alignment fixes for the sidebars and previous/next post navigation links + * restored page templates functionnality + 1.22 + language: Bahasa Indonesia (id_ID) + added an option to add a drop shadow to the blog name and tagline Only in mandigo-1.23: ar.mo diff -c mandigo-1.22/archives.php mandigo-1.23/archives.php *** mandigo-1.22/archives.php 2007-06-06 11:28:50.000000000 -0400 --- mandigo-1.23/archives.php 2007-06-12 10:45:02.000000000 -0400 *************** *** 1,3 **** --- 1,8 ---- + <?php + /* + Template Name: Archives Template + */ + ?> <?php get_header(); if (get_option('mandigo_sidebar1_left')) include (TEMPLATEPATH . '/sidebar.php'); *************** *** 6,11 **** --- 11,17 ---- } ?> <td id="content" class="narrowcolumn"> + <div class="post"> <h2><?php _e('Search','mandigo'); ?>:</h2> <?php include (TEMPLATEPATH . '/searchform.php'); ?> *************** *** 20,25 **** --- 26,32 ---- <?php wp_list_cats(); ?> </ul> + </div> </td> <?php Only in mandigo-1.23: ca_ES.mo diff -c mandigo-1.22/comments.php mandigo-1.23/comments.php *** mandigo-1.22/comments.php 2007-06-06 11:33:22.000000000 -0400 --- mandigo-1.23/comments.php 2007-06-18 10:55:48.000000000 -0400 *************** *** 15,20 **** --- 15,22 ---- /* This variable is for alternating comment background */ $oddcomment = 'alt'; + $authorcomments = get_option('mandigo_author_comments'); + $the_author = get_the_author(); ?> <!-- You can start editing here. --> *************** *** 26,32 **** <?php foreach ($comments as $comment) : ?> ! <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>"> <cite><?php printf(__('%s says:','mandigo'),comment_author_link()); ?></cite> <?php if ($comment->comment_approved == '0') : ?> <em><?php _e('Your comment is awaiting moderation.','mandigo'); ?></em> --- 28,34 ---- <?php foreach ($comments as $comment) : ?> ! <li class="<?php echo $oddcomment; ?><?php echo ($authorcomments && get_comment_author() == $the_author ? ' authorcomment' : ''); ?>" id="comment-<?php comment_ID() ?>"> <cite><?php printf(__('%s says:','mandigo'),comment_author_link()); ?></cite> <?php if ($comment->comment_approved == '0') : ?> <em><?php _e('Your comment is awaiting moderation.','mandigo'); ?></em> diff -c mandigo-1.22/functions.php mandigo-1.23/functions.php *** mandigo-1.22/functions.php 2007-06-06 14:15:02.000000000 -0400 --- mandigo-1.23/functions.php 2007-06-18 11:31:22.000000000 -0400 *************** *** 10,17 **** // Set default values if (!get_option('mandigo_scheme' )) update_option('mandigo_scheme' ,'blue' ); if (!get_option('mandigo_bgcolor' )) update_option('mandigo_bgcolor' ,'#44484F'); ! if (!get_option('mandigo_wp_repeat' )) update_option('mandigo_wp_repeat' ,'repeat'); // some global vars $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); --- 10,23 ---- // Set default values if (!get_option('mandigo_scheme' )) update_option('mandigo_scheme' ,'blue' ); if (!get_option('mandigo_bgcolor' )) update_option('mandigo_bgcolor' ,'#44484F'); ! if (!get_option('mandigo_wp_repeat' )) update_option('mandigo_wp_repeat' ,'repeat' ); + if (!get_option('mandigo_title_scheme_index' )) update_option('mandigo_title_scheme_index' ,'%blogname% - %tagline%'); + if (!get_option('mandigo_title_scheme_single' )) update_option('mandigo_title_scheme_single' ,'%blogname% » %post%'); + if (!get_option('mandigo_title_scheme_page' )) update_option('mandigo_title_scheme_page' ,'%blogname% » %post%'); + if (!get_option('mandigo_title_scheme_category')) update_option('mandigo_title_scheme_category','%blogname% » Archive for %category%'); + if (!get_option('mandigo_title_scheme_date' )) update_option('mandigo_title_scheme_date' ,'%blogname% » Archive for %date%'); + if (!get_option('mandigo_title_scheme_search' )) update_option('mandigo_title_scheme_search' ,'%blogname% » Search Results for "%search%"'); // some global vars $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); *************** *** 80,91 **** function add_mandigo_inserts_page() { add_theme_page('HTML Inserts', '<img src="'. get_bloginfo('template_directory') .'/images/attention_catcher.png" /> 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_var($var,$value) { update_option('mandigo_'. $var, $value); } ! function mandigo_set_bgcolor($value) { if (!preg_match("/^#/",$value)) $value = '#'. $value; if (!preg_match("/^#[0-9A-F]{6}$/i",$value)) $value = '#44484F'; update_option('mandigo_bgcolor',$value); } function mandigo_options_page() { if ( $_GET['page'] == basename(__FILE__) ) { --- 86,102 ---- function add_mandigo_inserts_page() { add_theme_page('HTML Inserts', '<img src="'. get_bloginfo('template_directory') .'/images/attention_catcher.png" /> 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_var($var,$value) { update_option('mandigo_'. $var, $value); } ! function mandigo_set_bgcolor($value) { if (!preg_match("/^#/",$value)) $value = '#'. $value; if (!preg_match("/^#[0-9A-F]{6}$/i",$value)) $value = '#44484F'; update_option('mandigo_bgcolor',$value); } + function mandigo_escape($string) { + $string = str_replace('\\"','"',$string); + $string = str_replace("\\'",''',$string); + return $string; + } function mandigo_options_page() { if ( $_GET['page'] == basename(__FILE__) ) { *************** *** 99,133 **** mandigo_set_var('exclude_pages' ,implode(",",$exclude) ); mandigo_set_bgcolor($_POST['bgcolor']); ! mandigo_set_var('dates' ,$_POST['dates'] ); ! mandigo_set_var('scheme' ,$_POST['scheme'] ); ! mandigo_set_var('wp' ,$_POST['wp'] ); ! mandigo_set_var('scheme_random' ,$_POST['random'] ); ! mandigo_set_var('headoverlay' ,$_POST['headoverlay'] ); ! mandigo_set_var('bold_links' ,$_POST['boldlinks'] ); ! mandigo_set_var('1024' ,$_POST['wide'] ); ! mandigo_set_var('nofloat' ,$_POST['nofloat'] ); ! mandigo_set_var('footer_stats' ,$_POST['footstats'] ); ! mandigo_set_var('3columns' ,$_POST['col3'] ); ! mandigo_set_var('sidebar1_left' ,$_POST['sidebar1'] ); ! mandigo_set_var('sidebar2_left' ,$_POST['sidebar2'] ); ! mandigo_set_var('headnav_left' ,$_POST['headnavleft'] ); ! mandigo_set_var('wptog' ,$_POST['wptog'] ); ! mandigo_set_var('always_show_sidebars',$_POST['alwayssidebars']); ! mandigo_set_var('em_italics' ,$_POST['em'] ); ! mandigo_set_var('stroke' ,$_POST['stroke'] ); ! mandigo_set_var('headers_random' ,$_POST['randomheaders'] ); ! mandigo_set_var('slim_header' ,$_POST['slimheader'] ); ! mandigo_set_var('hide_blogname' ,$_POST['hideblogname'] ); ! mandigo_set_var('hide_blogdesc' ,$_POST['hideblogdesc'] ); ! mandigo_set_var('noborder' ,$_POST['noborder'] ); ! mandigo_set_var('small_title' ,$_POST['smalltitle'] ); ! mandigo_set_var('wp_fixed' ,$_POST['wpfixed'] ); ! mandigo_set_var('wp_repeat' ,$_POST['wprepeat'] ); ! mandigo_set_var('wp_position' ,$_POST['wpposition'] ); ! mandigo_set_var('number_comments' ,$_POST['numbercomments']); ! mandigo_set_var('full_search_results' ,$_POST['fullsearchresults']); ! mandigo_set_var('drop_shadow' ,$_POST['dropshadow'] ); } $exclude = split(",",get_option('mandigo_exclude_pages')); $scheme = get_option('mandigo_scheme' ); --- 110,151 ---- mandigo_set_var('exclude_pages' ,implode(",",$exclude) ); mandigo_set_bgcolor($_POST['bgcolor']); ! mandigo_set_var('dates' ,$_POST['dates'] ); ! mandigo_set_var('scheme' ,$_POST['scheme'] ); ! mandigo_set_var('wp' ,$_POST['wp'] ); ! mandigo_set_var('scheme_random' ,$_POST['random'] ); ! mandigo_set_var('headoverlay' ,$_POST['headoverlay'] ); ! mandigo_set_var('bold_links' ,$_POST['boldlinks'] ); ! mandigo_set_var('1024' ,$_POST['wide'] ); ! mandigo_set_var('nofloat' ,$_POST['nofloat'] ); ! mandigo_set_var('footer_stats' ,$_POST['footstats'] ); ! mandigo_set_var('3columns' ,$_POST['col3'] ); ! mandigo_set_var('sidebar1_left' ,$_POST['sidebar1'] ); ! mandigo_set_var('sidebar2_left' ,$_POST['sidebar2'] ); ! mandigo_set_var('headnav_left' ,$_POST['headnavleft'] ); ! mandigo_set_var('wptog' ,$_POST['wptog'] ); ! mandigo_set_var('always_show_sidebars' ,$_POST['alwayssidebars'] ); ! mandigo_set_var('em_italics' ,$_POST['em'] ); ! mandigo_set_var('stroke' ,$_POST['stroke'] ); ! mandigo_set_var('headers_random' ,$_POST['randomheaders'] ); ! mandigo_set_var('slim_header' ,$_POST['slimheader'] ); ! mandigo_set_var('hide_blogname' ,$_POST['hideblogname'] ); ! mandigo_set_var('hide_blogdesc' ,$_POST['hideblogdesc'] ); ! mandigo_set_var('noborder' ,$_POST['noborder'] ); ! mandigo_set_var('small_title' ,$_POST['smalltitle'] ); ! mandigo_set_var('wp_fixed' ,$_POST['wpfixed'] ); ! mandigo_set_var('wp_repeat' ,$_POST['wprepeat'] ); ! mandigo_set_var('wp_position' ,$_POST['wpposition'] ); ! mandigo_set_var('number_comments' ,$_POST['numbercomments'] ); ! mandigo_set_var('full_search_results' ,$_POST['fullsearchresults'] ); ! mandigo_set_var('drop_shadow' ,$_POST['dropshadow'] ); ! mandigo_set_var('author_comments' ,$_POST['authorcomments'] ); ! mandigo_set_var('title_scheme_index' ,mandigo_escape($_POST['title_scheme_index'] )); ! mandigo_set_var('title_scheme_single' ,mandigo_escape($_POST['title_scheme_single'] )); ! mandigo_set_var('title_scheme_page' ,mandigo_escape($_POST['title_scheme_page'] )); ! mandigo_set_var('title_scheme_category',mandigo_escape($_POST['title_scheme_category'])); ! mandigo_set_var('title_scheme_date' ,mandigo_escape($_POST['title_scheme_date'] )); ! mandigo_set_var('title_scheme_search' ,mandigo_escape($_POST['title_scheme_search'] )); } $exclude = split(",",get_option('mandigo_exclude_pages')); $scheme = get_option('mandigo_scheme' ); *************** *** 260,265 **** --- 278,317 ---- <fieldset class="options"> + <legend>SEO Options</legend> + + <label><b>Custom <title> tags</b></label><br/> + Customize your title tag. Consult the <a href="themes.php?page=README">README page</a> for a list of available variables. + <table> + <tr> + <td style="text-align: right;">Default (index.php):</td> + <td><input type="text" name="title_scheme_index" size="60" value="'. get_option('mandigo_title_scheme_index') .'" /></td> + </tr> + <tr> + <td style="text-align: right;">Single posts (single.php):</td> + <td><input type="text" name="title_scheme_single" size="60" value="'. get_option('mandigo_title_scheme_single') .'" /></td> + </tr> + <tr> + <td style="text-align: right;">Pages (page.php):</td> + <td><input type="text" name="title_scheme_page" size="60" value="'. get_option('mandigo_title_scheme_page') .'" /></td> + </tr> + <tr> + <td style="text-align: right;">Category Archive (archive.php):</td> + <td><input type="text" name="title_scheme_category" size="60" value="'. get_option('mandigo_title_scheme_category') .'" /></td> + </tr> + <tr> + <td style="text-align: right;">Date Archive (archive.php):</td> + <td><input type="text" name="title_scheme_date" size="60" value="'. get_option('mandigo_title_scheme_date') .'" /></td> + </tr> + <tr> + <td style="text-align: right;">Search Results (search.php):</td> + <td><input type="text" name="title_scheme_search" size="60" value="'. get_option('mandigo_title_scheme_search') .'" /></td> + </tr> + </table> + </fieldset> + + + <fieldset class="options"> <legend>Miscellaneous Options</legend> <label><b>Images</b></label><br/> *************** *** 275,280 **** --- 327,333 ---- <label><b>Really miscellaneous options</b></label><br/> <input type="checkbox" name="fullsearchresults" '. (get_option('mandigo_full_search_results') ? 'checked="checked"' : '') .' /> Display full search results, not just titles and metadata<br /> + <input type="checkbox" name="authorcomments" '. (get_option('mandigo_author_comments') ? 'checked="checked"' : '') .' /> Highlight comments made by the author of the current post<br /> <input type="checkbox" name="numbercomments" '. (get_option('mandigo_number_comments') ? 'checked="checked"' : '') .' /> Number comments<br /> <input type="checkbox" name="footstats" '. (get_option('mandigo_footer_stats') ? 'checked="checked"' : '') .' /> Display rendering time and SQL statistics in the footer<br /> <input type="checkbox" name="em" '. (get_option('mandigo_em_italics') ? 'checked="checked"' : '') .' /> Display <em> tags as italics Only in mandigo-1.23: he_IL.mo diff -c mandigo-1.22/header.php mandigo-1.23/header.php *** mandigo-1.22/header.php 2007-06-06 15:01:16.000000000 -0400 --- mandigo-1.23/header.php 2007-06-18 11:40:08.000000000 -0400 *************** *** 4,10 **** <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> ! <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?> --- 4,35 ---- ! <?php ! $title = ''; ! ! if (is_single() ) $title = get_option('mandigo_title_scheme_single'); ! elseif (is_page() ) $title = get_option('mandigo_title_scheme_page'); ! elseif (is_archive()) { ! if (is_day() || is_month() || is_year()) $title = get_option('mandigo_title_scheme_date'); ! else $title = get_option('mandigo_title_scheme_category'); ! } ! elseif (is_search() ) $title = get_option('mandigo_title_scheme_search'); ! else $title = get_option('mandigo_title_scheme_index'); ! ! $title = str_replace('%blogname%',get_bloginfo('name') ,$title); ! $title = str_replace('%tagline%' ,get_bloginfo('description'),$title); ! $title = str_replace('%post%' ,get_the_title() ,$title); ! $title = str_replace('%search%' ,$s ,$title); ! ! if (single_cat_title('',false)) $title = str_replace('%category%',single_cat_title('',false) ,$title); ! else $title = preg_replace("/<[^>]+>/","",str_replace('%category%',get_the_category_list(', '),$title)); ! ! if (is_day() ) $title = str_replace('%date%',get_the_time(__('l, F jS, Y','mandigo')),$title); ! elseif (is_month()) $title = str_replace('%date%',get_the_time(__('F, Y','mandigo')) ,$title); ! elseif (is_year() ) $title = str_replace('%date%',get_the_time('Y') ,$title); ! ! echo $title; ! ?> *************** *** 49,55 ****
-
! --- 111,116 ----
!
Common subdirectories: mandigo-1.22/images and mandigo-1.23/images diff -c mandigo-1.22/links.php mandigo-1.23/links.php *** mandigo-1.22/links.php 2007-04-07 11:58:30.000000000 -0400 --- mandigo-1.23/links.php 2007-06-12 10:45:32.000000000 -0400 *************** *** 1,18 **** ! ! !
!

:

!
    ! !
!
! --- 1,36 ---- + + ! Only in mandigo-1.23: lt_LT.mo diff -c mandigo-1.22/style.css mandigo-1.23/style.css *** mandigo-1.22/style.css 2007-06-06 11:53:00.000000000 -0400 --- mandigo-1.23/style.css 2007-06-15 15:14:58.000000000 -0400 *************** *** 1,8 **** /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 23 languages! ! Version: 1.22 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/wordpress/ */ --- 1,8 ---- /* Theme Name: Mandigo Theme URI: http://www.onehertz.com/portfolio/wordpress/ ! Description: Mandigo is an elegant widget-ready two/three-column Wordpress theme, available in two widths, SEVEN color schemes and 28 languages! ! Version: 1.23 Author: t0mmmmmmm Author URI: http://www.onehertz.com/portfolio/wordpress/ */ diff -c mandigo-1.22/style.css.php mandigo-1.23/style.css.php *** mandigo-1.22/style.css.php 2007-06-06 15:16:26.000000000 -0400 --- mandigo-1.23/style.css.php 2007-06-18 10:48:14.000000000 -0400 *************** *** 57,65 **** } header('Content-type: text/css'); ! $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); ! $ie7 = preg_match("/MSIE 7/", $_SERVER['HTTP_USER_AGENT']); ! $safari = preg_match("/Safari/", $_SERVER['HTTP_USER_AGENT']); ?> /* Begin Typography & Colors */ --- 57,66 ---- } header('Content-type: text/css'); ! $ie = preg_match("/MSIE [4-6]/",$_SERVER['HTTP_USER_AGENT']); ! $ie7 = preg_match("/MSIE 7/", $_SERVER['HTTP_USER_AGENT']); ! $safari = preg_match("/Safari/", $_SERVER['HTTP_USER_AGENT']); ! $firefox = preg_match("/Firefox/", $_SERVER['HTTP_USER_AGENT']); ?> /* Begin Typography & Colors */ *************** *** 238,250 **** filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/bg.png', sizingMethod='scale'); ! width: px; ! padding: 9px 17px; } ! #main table, .narrowcolumn { width: 100%; } ! #main td { vertical-align: top; padding: 0 3px; } --- 239,251 ---- filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/bg.png', sizingMethod='scale'); ! width: px; ! padding: 9px 15px; } ! #main>table, .narrowcolumn { width: 100%; } ! .narrowcolumn, .widecolumn, #sidebar1, #sidebar2 { vertical-align: top; padding: 0 3px; } *************** *** 253,259 **** .alt { background-color: #fafafa; ! border-top: 1px solid #eee; border-bottom: 1px solid #eee; } --- 254,260 ---- .alt { background-color: #fafafa; ! border-top: 1px solid #eee; border-bottom: 1px solid #eee; } *************** *** 266,277 **** } .post { text-align: justify; padding: 5px 15px; ! margin: 0 auto 10px auto; background: #fafafa; border: 1px solid #eee; ! height: 1%; /* peekaboo */ } .narrowcolumn .postdata { padding-top: 5px; } --- 267,279 ---- } .post { + clear: both; text-align: justify; padding: 5px 15px; ! margin: 0 auto 9px auto; background: #fafafa; border: 1px solid #eee; ! height: 1%; /* peekaboo */ } .narrowcolumn .postdata { padding-top: 5px; } *************** *** 289,295 **** margin: 5px 0px; } ! .postmetadata, .entry { clear: both; } #footer { margin: 0 auto; --- 291,297 ---- margin: 5px 0px; } ! .postmetadata, .entry, .inline-widgets { clear: both; } #footer { margin: 0 auto; *************** *** 308,317 **** .sidebars { ! width: 200px; ! } ! ! .sidebars { background: #eee; border: 1px solid #ddd; padding: 5px; --- 310,316 ---- .sidebars { ! width: 210px; background: #eee; border: 1px solid #ddd; padding: 5px; *************** *** 358,364 **** .entry img { float: ; ! margin: 3px 10px; background: #fff; border: 1px solid #333; --- 357,363 ---- .entry img { float: ; ! margin: 3px 10px 3px 0; background: #fff; border: 1px solid #333; *************** *** 366,372 **** } ! img.nofloat, .smallattachment img, .attachment img, entry img.wp-smiley { float: none; } .entry img.wp-smiley { border: 0; --- 365,371 ---- } ! img.nofloat, .smallattachment img, .attachment img, .entry img.wp-smiley { float: none; } .entry img.wp-smiley { border: 0; *************** *** 419,426 **** .sidebars li { list-style-image: url(images//star.gif); ! margin-left: 21px; ! margin-bottom: 15px; } .sidebars ul, .sidebars ol { padding: 0; } --- 418,427 ---- .sidebars li { list-style-image: url(images//star.gif); ! margin: 0 0 15px 25px; ! ! margin: 10px 0 15px 20px; ! } .sidebars ul, .sidebars ol { padding: 0; } *************** *** 530,535 **** --- 531,547 ---- .nocomments { text-align: center; } .commentmetadata { display: block; } + + .authorcomment { + background: #EEE; + color: #000; + border-top: 1px solid #CCC; + border-bottom: 1px solid #CCC; + + background: #666; + color: #FFF; + + } /* End Comments */ *************** *** 602,611 **** a img { border: none; } ! .navigation { ! display: block; ! text-align: center; padding: 20px 0; } .cal { --- 614,629 ---- a img { border: none; } ! .navigation .alignleft { padding: 20px 0; + width: 50%; + text-align: left; + } + + .navigation .alignright { + padding: 20px 0; + width: 50%; + text-align: right; } .cal { *************** *** 699,701 **** --- 717,795 ---- .googlemap img { background: inherit; } /* End Various Tags & Classes*/ + + + + /* RTL scripts support */ + .pages, #content, .sidebars, #footer { direction: rtl; } + + #headerimg h1, #headerimg .h1, #headerimg h6, #headerimg .h6, #headerimg .description { + width: px; + text-align: right; + padding-left: 0; + } + h6 { position: relative; } + + .calborder { + float: right; + margin-right: 0; + margin-left: 1em; + } + + .narrowcolumn .postmetadata, #content #searchform, #respond, #commentform p, .sidebars, #wp-calendar caption { text-align: right; } + + .entry img { + float: ; + margin: 3px 0 3px 10px; + } + + #commentform input { margin: 5px 0 1px 5px; } + + #commentform #submit { margin: 0 0 0 1em; } + + #commentform #submit, #rss { float: left; } + + ol, ul { padding: 0 20px 0; } + + ol ol, ol ul, ul ul, ul ol { padding: 0 10px 0 0; } + + ul { margin-right: 0; } + + li { margin: 3px 5px 4px 0; } + + .sidebars li { + margin: 0 25px 15px 0; + + margin: 10px 20px 15px 0; + + } + + + .pages li { + display: table-cell; + padding: 0 1em; + } + + .sidebars>li { + list-style-image: none; + list-style-type: none; + } + + .sidebars>li h2 { + background-image: url(images//star.gif); + background-repeat: no-repeat; + background-position: top right; + margin-right: -20px; + padding-right: 20px; + } + + + .sidebars p, .sidebars select { margin: 5px 0 8px 0; } + + .sidebars ul, .sidebars ol { margin: 5px 5px 0 0; } + + .sidebars ul ul, .sidebars ol { margin: 0 10px 0 0; } + Binary files mandigo-1.22/tr_TR.mo and mandigo-1.23/tr_TR.mo differ Binary files mandigo-1.22/zh_CN.mo and mandigo-1.23/zh_CN.mo differ Only in mandigo-1.23: zh_TW.mo
+
!

:

!
    ! !
!
!