Just updated all of my forums to RC7 and its working great.Macrike wrote:Oh god... just when I nearly finished fitting RC5 with the rest of my site (like wmtipton) here comes RC6 and RC7 with a huge bunch of changes...
Geez, I think I'll stick with RC5 for while, enjoy it a bit and maybe next month move to RC7 and apply all the template changes. I guess I've got some more long nights waiting for me...
I did not find these lines in templates of subsilver2 based style (eTech), you made a mistake, or in eTech these parameters were described othergatesRaimon wrote:subsilver2 template changes
open: styles/subsilver2/template/ucp_agreement.html
search:
replace with:Code: Select all
setTimeout("disable(false)", {S_TIME});
open: styles/subsilver2/template/ucp_pm_message_footer.htmlCode: Select all
setInterval("disable(false)", {S_TIME});
search:
replace with:Code: Select all
{S_FORM_TOKEN} </form>
open: styles/subsilver2/template/ucp_register.htmlCode: Select all
</form>
search:
replace with:Code: Select all
setTimeout("disable(false)", {S_TIME});
Code: Select all
setInterval("disable(false)", {S_TIME});
Have you add the javascript code from the changes from RC5 to RC6;STINGER_LP wrote: open: styles/subsilver2/template/ucp_agreement.html
search:
replace with:Code: Select all
setTimeout("disable(false)", {S_TIME});
Code: Select all
setInterval("disable(false)", {S_TIME});
Code: Select all
<script type="text/javascript" defer="defer" >
// <![CDATA[
var old_func = window.onload;
function disable(disabl)
{
document.getElementById("agreed").disabled = disabl;
}
function disable_and_handle()
{
if (old_func)
{
old_func();
}
disable(true);
}
<!-- IF S_TIME -->
window.onload = disable_and_handle;
setTimeout("disable(false)", {S_TIME});
<!-- ENDIF -->
// ]]>
</script>
This is when you have added the previous changes from RC5 to RC6open: styles/subsilver2/template/ucp_pm_message_footer.html
search:
replace with:Code: Select all
{S_FORM_TOKEN} </form>
Code: Select all
</form>
Have you already added the changes form RC5 to RC6?open: styles/subsilver2/template/ucp_register.html
search:
replace with:Code: Select all
setTimeout("disable(false)", {S_TIME});
I did not find these lines in templates of subsilver2 based style (eTech), you made a mistake, or in eTech these parameters were described othergatesCode: Select all
setInterval("disable(false)", {S_TIME});
Code: Select all
var old_func = window.onload;
function disable(disabl)
{
document.getElementById("submit").disabled = disabl;
}
function disable_and_handle()
{
if (old_func)
{
old_func();
}
disable(true);
}
<!-- IF S_TIME -->
window.onload = disable_and_handle;
setTimeout("disable(false)", {S_TIME});
<!-- ENDIF -->
// ]]>
Yeah, I know it doesn't change the look of the board, but I still have to update my theme for it to work with RC7. I just can't stand the default theme. xDstatm wrote:Well, none of the changes done in RC6/7 will change what your board looks like. They are only backend changes. So, I use a program called "WinMerge" and it compares your older version of style to the new one that comes in the RCs and are able to press a button and it adds the change to your style. Makes updating a style very easy.
Code: Select all
</form>
<!-- INCLUDE ucp_footer.html -->
Oeps, that would be the file styles/prosilver/template/posting_editor.htmlchiappa wrote:Is there something wrong with with posting_buttons.html for prosilver RC5 to RC6 or is it just me?
The last four searches cannot be found, not even just these: {U_FIND_USERNAME} or {U_MORE_SMILIES} or {L_PLACE_INLINE}
That would be the one on the bottom.Also ucp_main_drafts.html has <!-- ENDIF --> about 5 times in there. Which one you mean?
thx!
On linux, check out Meld. I only just found it but it's working great so far. Making these changes much easier to make.Macrike wrote:And I believe WinMerge is only for Windows...
I use Mac, but thanks anyway. Updated to RC7, I'm now applying all the template changes.Nais wrote:On linux, check out Meld. I only just found it but it's working great so far. Making these changes much easier to make.Macrike wrote:And I believe WinMerge is only for Windows...