diff -rc mandigo-1.36/404.php mandigo-1.35/404.php *** mandigo-1.36/404.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/404.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 4,10 **** get_header(); ?> ! rowspan="2">
404
--- 4,10 ---- get_header(); ?> !
404
*************** *** 16,24 **** tag) - + added an option to create drop caps - * silenced a few annoying php warnings - * fixed image/object resizing again - * fixed the upgrade system not retroactively applying updates - 1.35 + added options to set the sidebars width + added an option to hide datestamps --- 333,338 ---- diff -rc mandigo-1.36/archive.php mandigo-1.35/archive.php *** mandigo-1.36/archive.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/archive.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 7,13 **** $tag_post_title_multi = $mandigo_options['heading_level_post_title_multi']; $tag_page_title = $mandigo_options['heading_level_page_title' ]; ?> ! rowspan="2"> ! ! rowspan="2">
!
! rowspan="2"> !

Options updated.

'; } echo '
!

Mandigo Options

HTML Inserts --- 19,40 ---- // the HTML inserts page function mandigo_inserts_page() { if (isset($_POST['updated'])) { ! mandigo_set_insert('header',$_POST['header']); ! mandigo_set_insert('body' ,$_POST['body'] ); ! mandigo_set_insert('top' ,$_POST['top'] ); ! mandigo_set_insert('footer',$_POST['footer']); echo '

Options updated.

'; } echo '
!

Mandigo Options

+

+
HTML Inserts *************** *** 55,65 ****
before the "Powered by WordPress" credits, still inside the #main div. This differs from the bottom widget container in that it displays on all pages, and it spans the whole layout width.
!

! ! outside the main frame, right before the closing </body> tag. This is the best place for your Google analytics code and other final sippets.
!

!

--- 56,62 ----
before the "Powered by WordPress" credits, still inside the #main div. This differs from the bottom widget container in that it displays on all pages, and it spans the whole layout width.
!

diff -rc mandigo-1.36/backend/theme_options.php mandigo-1.35/backend/theme_options.php *** mandigo-1.36/backend/theme_options.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/backend/theme_options.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 146,152 **** 'footer_statistics', 'full_search_results', 'no_datestamps', - 'drop_caps', ) as $field ) { --- 146,151 ---- *************** *** 210,216 **** ' %s
', $page->ID, ( ! @in_array($page->ID, $mandigo_options['header_navigation_exclude_pages']) ? ' checked' : '' ), --- 209,215 ---- ' %s
', $page->ID, ( ! in_array($page->ID, $mandigo_options['header_navigation_exclude_pages']) ? ' checked' : '' ), *************** *** 242,248 ****
!

Mandigo Options

Color Scheme | Layout | --- 241,247 ----
!

Mandigo Options

Color Scheme | Layout | *************** *** 259,269 ****
Color Scheme '. $list_of_schemes .' !
! I like them all, change schemes randomly!
!
- --- 304,316 ---- // alternate coloring of comments ?> jQuery('.commentlist li:even').addClass('alt'); }); + // ]]> --> diff -rc mandigo-1.36/functions.php mandigo-1.35/functions.php *** mandigo-1.36/functions.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/functions.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 186,224 **** - // this one tells if the sidebox may be displayed - function mandigo_sidebox_conditions($single = false) { - global $mandigo_options; - return ( - $mandigo_options['sidebar_count'] - && $mandigo_options['layout_width'] == 1024 - && $mandigo_options['sidebar_count'] == 2 - && $mandigo_options['sidebar_1_position'] == 'right' - && $mandigo_options['sidebar_1_position'] == $mandigo_options['sidebar_2_position'] - && ($single ? $mandigo_options['sidebar_always_show'] : true) - ? true - : false - ); - } - - - - // this one adds drop caps the the_content - function mandigo_drop_caps($data) { - if (preg_match ('/^\s*]+>[\s\r\n]*)*([a-z])/i', '$1$2', $data); - } - return preg_replace('/^\s*([a-z])/i', '$1', $data); - } - if ($mandigo_options['drop_caps']) { - add_filter('the_content', 'mandigo_drop_caps'); - } - - - include('backend/widgets.php'); include('backend/theme_options.php'); include('backend/html_inserts.php'); include('backend/readme.php'); ! ?> --- 186,194 ---- include('backend/widgets.php'); include('backend/theme_options.php'); include('backend/html_inserts.php'); include('backend/readme.php'); ! ?> diff -rc mandigo-1.36/header.php mandigo-1.35/header.php *** mandigo-1.36/header.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/header.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 164,191 **** - // image & object max-width rules - $maxwidth = $mandigo_options['layout_width'] - - 144 - - ( - $mandigo_options['sidebar_count'] > 0 && ($mandigo_options['sidebar_always_show'] || (!is_single() && !is_page())) - ? ( - $mandigo_options['sidebar_1_width']+12 - + - ( - $mandigo_options['layout_width'] == 1024 && $mandigo_options['sidebar_count'] == 2 - ? $mandigo_options['sidebar_2_width']+12 - : 0 - ) - ) - : 0 - ) - ; - $lastminutecss[] = sprintf( - '.entry img, .entry object { max-width: %spx; width: expression(this.clientWidth > %s ? "%spx": "auto"); }', - $maxwidth, $maxwidth, $maxwidth - ); - ?> --- 164,169 ---- *************** *** 265,271 **** ?>
    !
    • !
    • 'menu_order', 'depth' => ($mandigo_options['header_navigation_no_submenus'] ? 1 : 2), 'title_li' => '', ! 'exclude' => @implode(',', $mandigo_options['header_navigation_exclude_pages']), ) ); // if you want to add custom static links at the end, use something similar to the following --- 251,257 ---- 'sort_column' => 'menu_order', 'depth' => ($mandigo_options['header_navigation_no_submenus'] ? 1 : 2), 'title_li' => '', ! 'exclude' => implode(',', $mandigo_options['header_navigation_exclude_pages']), ) ); // if you want to add custom static links at the end, use something similar to the following diff -rc mandigo-1.36/index.php mandigo-1.35/index.php *** mandigo-1.36/index.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/index.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 24,30 **** $sidebars_widgets = wp_get_sidebars_widgets(); ?> ! rowspan="2"> ! ! rowspan="2">
      !
      ! rowspan="2"> ! ! rowspan="2"> ! ! rowspan="2"> ! px; } - #sidebox { - height: 1%; - padding-bottom: 6px; - } - .pagetitle { text-align: center; } --- 485,490 ---- *************** *** 553,558 **** --- 541,550 ---- /* Begin Images */ + p img { + max-width: 95%; + } + .entry img { float: ; margin: 3px 10px 3px 0; *************** *** 986,999 **** .pages ul li { display: block; - padding: 3px 0; margin: 3px 10px; ! border-top: 1px solid #333; ! font-size: 85%; ! } ! ! .pages ul li a { ! color: #CCC; } .postinfo { --- 978,985 ---- .pages ul li { display: block; margin: 3px 10px; ! font-size: 90%; } .postinfo { diff -rc mandigo-1.36/tagcloud.php mandigo-1.35/tagcloud.php *** mandigo-1.36/tagcloud.php 2008-07-20 16:44:36.000000000 -0400 --- mandigo-1.35/tagcloud.php 2008-06-15 12:42:28.000000000 -0400 *************** *** 11,17 **** $tag_page_title = $mandigo_options['heading_level_page_title']; ?> ! rowspan="2"> !