Javascript lib: UX: When whiteOutReportSuccess() is called on a whiteout over a miniPrompt, the miniPrompt and whiteout are now flown out together. Also, a bit of improvement to message box DOM object destruction code; this fixes problems with message boxes appearing below the shade when ajax auth is done 3 or more times in one page load.
<!-- Enano CMS - IIS7 Rewrite support -->
<configuration>
<configSections>
<sectionGroup name="rewriteRules">
<section name="rules" overrideModeDefault="Allow" />
</sectionGroup>
</configSections>
<system.webServer>
<rewrite>
<rules>
<!-- Main rule - short and sweet-->
<rule name="Enano rewritten URLs" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions>
<!-- Don't rewrite if the user requested a real directory or file-->
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php?title={R:1}" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>