# HG changeset patch # User Dan # Date 1186938676 14400 # Node ID 570f68c3fe36e452f230d3c8f014d32e15fe98fa # Parent c162ca39db8f8589280a85053be65dd6b2a23a82 Redid stupid fading button code and fixed several RC2 bugs in the upgrade schema; 1.0.1 release candidate diff -r c162ca39db8f -r 570f68c3fe36 includes/clientside/css/enano-shared.css --- a/includes/clientside/css/enano-shared.css Fri Aug 10 15:57:22 2007 -0400 +++ b/includes/clientside/css/enano-shared.css Sun Aug 12 13:11:16 2007 -0400 @@ -10,7 +10,7 @@ div.wait-box { background-image: url(../../../images/wait.png); background-position: 8px 8px; background-repeat: no-repeat; background-color: #FFF4FF; border: 1px dashed #406080; padding: 10px 10px 10px 50px; margin: 1em 0 0 0; min-height: 25px; } /* IE-only stylesheet \*/ -@import url("enano-shared-ie.css"); +@import url("./enano-shared-ie.css"); /* End IE-only stylesheet */ div.error-box-mini { background-image: url(../../../images/mini-error.png); background-position: 5px center; background-repeat: no-repeat; background-color: #FFF4F4; border: 1px solid #406080; padding: 4px 4px 4px 26px; margin: 1em 0; min-height: 17px; } diff -r c162ca39db8f -r 570f68c3fe36 includes/clientside/static/ajax.js --- a/includes/clientside/static/ajax.js Fri Aug 10 15:57:22 2007 -0400 +++ b/includes/clientside/static/ajax.js Sun Aug 12 13:11:16 2007 -0400 @@ -1064,6 +1064,7 @@ var catbox = document.getElementById('mdgCatBox'); if ( !catbox ) return false; + addtag_open = false; var linkbox = catbox.parentNode.firstChild.firstChild.nextSibling; linkbox.firstChild.nodeValue = 'show page tags'; linkbox.onclick = function() { ajaxCatToTag(); return false; }; diff -r c162ca39db8f -r 570f68c3fe36 includes/template.php --- a/includes/template.php Fri Aug 10 15:57:22 2007 -0400 +++ b/includes/template.php Sun Aug 12 13:11:16 2007 -0400 @@ -42,12 +42,9 @@ $this->plugin_blocks = Array(); $this->theme_loaded = false; - $this->fading_button = ' - - - '; + $this->fading_button = '
'; $this->theme_list = Array(); $this->named_theme_list = Array(); diff -r c162ca39db8f -r 570f68c3fe36 plugins/SpecialPageFuncs.php --- a/plugins/SpecialPageFuncs.php Fri Aug 10 15:57:22 2007 -0400 +++ b/plugins/SpecialPageFuncs.php Sun Aug 12 13:11:16 2007 -0400 @@ -324,13 +324,7 @@