diff -c mandigo-1.20.1/README.txt mandigo-1.21/README.txt *** mandigo-1.20.1/README.txt 2007-05-24 13:12:26.000000000 -0400 --- mandigo-1.21/README.txt 2007-05-28 11:02:34.000000000 -0400 *************** *** 47,56 **** Presentation, Theme Options subpanel in the Administration interface. ** Image Classes: ! - Images in posts are surrounded by a border by default. To override this behaviour, ! simply add the 'noborder' class to your img tags. - Images are also left-floated by default. To override this, add the 'nofloat' class to ! your img tags. ** Widgets Support: Mandigo supports up to four widgets bars: two on the sides, one at the top and one at --- 47,57 ---- Presentation, Theme Options subpanel in the Administration interface. ** Image Classes: ! - Images in posts are surrounded by a border by default. While it is possible to disable ! them throughout the theme using the appropriate option, you can also override this ! behaviour on certain images by adding the 'noborder' class to the img tag. - Images are also left-floated by default. To override this, add the 'nofloat' class to ! your img tags, or use the appropriate option. ** Widgets Support: Mandigo supports up to four widgets bars: two on the sides, one at the top and one at *************** *** 181,189 **** === CHANGELOG ========================================================================== 1.20.1 * fixed the 3-column layout option not being read by the stylesheet's fallback method ! * fixed boolean options for WPMU * fixed the footer gap issue for good 1.20 --- 182,203 ---- === CHANGELOG ========================================================================== + 1.21 + + added an option to number comments + + added options to hide the blog name and description + + added options to set the background pattern attachment/repeat/position + + added an option to reduce the size font for the blog name (useful for looong titles) + + added an option to disable the border around images + * background patterns now have their own subdirectory, if you are using one, you will + have to move it to images/patterns/ + * fixed the issue with overlapping images in page view + * fixed list bullets in posts which were displayed off stage in IE + * fixed the overlapping footer bug in IE7 (hi Randy) + * fixed more footer gap issues + * the footer should also be resize-proof now + 1.20.1 * fixed the 3-column layout option not being read by the stylesheet's fallback method ! * fixed the parsing of boolean options for WPMU * fixed the footer gap issue for good 1.20 diff -c mandigo-1.20.1/footer.php mandigo-1.21/footer.php *** mandigo-1.20.1/footer.php 2007-05-22 09:12:06.000000000 -0400 --- mandigo-1.21/footer.php 2007-05-27 20:00:12.000000000 -0400 *************** *** 45,60 **** sb1 = document.getElementById("sidebar1"); sb2 = document.getElementById("sidebar2"); ! heightfix = function() { if (sb1) cen.style.height = Math.max(sb1.clientHeight+sb1.offsetTop,cnt.clientHeight+cnt.offsetTop,(sb2?sb2.clientHeight+sb2.offsetTop:0))-cen.offsetTop +'px'; } ! heightfix(); window.onload = heightfix; ! var maxw = Math.round(.96*); imgloadevent = function(e) { imgloaded(e ? e.currentTarget : window.event.srcElement); } ! imgloaded = function(t) { ! if (t.clientWidth > maxw) { t.style.width = maxw+'px'; } ! setTimeout("heightfix()",100); ! } imgs = document.getElementsByTagName("img"); for (i=0;i); imgloadevent = function(e) { imgloaded(e ? e.currentTarget : window.event.srcElement); } ! imgloaded = function(t) { if (t.clientWidth > maxw) t.style.width = maxw+'px'; } imgs = document.getElementsByTagName("img"); for (i=0;i
  • *************** *** 53,59 **** --- 55,65 ---- *************** *** 112,117 **** --- 118,131 ---- 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']); } $exclude = split(",",get_option('mandigo_exclude_pages')); $scheme = get_option('mandigo_scheme' ); *************** *** 122,127 **** --- 136,143 ---- $headnavleft = get_option('mandigo_headnav_left' ); $wp = get_option('mandigo_wp' ); $stroke = get_option('mandigo_stroke' ); + $wp_fixed = get_option('mandigo_wp_fixed' ); + $wp_repeat = get_option('mandigo_wp_repeat' ); $pages = & get_pages('sort_column=menu_order'); foreach ($pages as $page) { *************** *** 137,142 **** --- 153,159 ----
    +

    Color Scheme *************** *** 151,158 ****
    Background color: restore default

    ! Use the following file as the background pattern:
    ! '. get_bloginfo('template_directory') .'/images/

    --- 168,206 ----
    Background color: restore default

    ! Use the following image file as the background pattern:
    ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
    images/patterns/ ! !
    Attachment : ! scroll   ! fixed !
    Repeat : ! !
    Position : ! help !
    *************** *** 162,173 **** 3-column layout (previous option must be enabled)
    Show sidebars even in single post view


    ! First sidebar :     ! left   ! right
    ! Second sidebar : ! left   ! right

    --- 210,231 ---- 3-column layout (previous option must be enabled)
    Show sidebars even in single post view


    ! ! ! ! ! ! ! ! ! !
    First sidebar : ! left   ! right !
    Second sidebar : ! left   ! right !
    *************** *** 181,192 **** It is also possible to use a different image on each page (per-page header images). Please consult the README page for more information.


    Apply a black stroke to blog name and blog description for better readability on lighter header images.

    off   on


    ! This options overlays a translucent black stripe on the header for better readability.

    off   on

    --- 239,253 ---- It is also possible to use a different image on each page (per-page header images). Please consult the README page for more information.


    + Reduce the size font for the blog name (useful for looong titles)
    + Do not display the blog name
    + Do not display the tagline (blog description)

    Apply a black stroke to blog name and blog description for better readability on lighter header images.

    off   on


    ! Apply a translucent black stripe to the header for better readability.

    off   on

    *************** *** 198,203 **** --- 259,268 ----
    Miscellaneous Options +
    + Do not float images
    + Display images without a border

    +
    Display all links in bold for better readability

    *************** *** 206,212 **** month/dd/yyyy


    ! Do not float images
    Display rendering time and SQL statistics in the footer
    Display <em> tags as italics
    --- 271,277 ---- month/dd/yyyy


    ! Number comments
    Display rendering time and SQL statistics in the footer
    Display <em> tags as italics diff -c mandigo-1.20.1/header.php mandigo-1.21/header.php *** mandigo-1.20.1/header.php 2007-05-22 09:11:32.000000000 -0400 --- mandigo-1.21/header.php 2007-05-27 14:17:10.000000000 -0400 *************** *** 52,65 ****