Page 1 of 1

0.3.4 "t;" history glitch

Posted: March 27th, 2008, 10:42 am
by trax
Because of the history text having t; before each line, themes are not showing icons only anymore.
This was not a problem in 0.3.3.

This annoyance is showing up in plush, and nova themes.

What file can I modify to fix this myself?
I am running python, not the w32 exe.

Re: 0.3.4 "t;" history glitch

Posted: March 27th, 2008, 11:09 am
by DeXeS
Im having the same t in the history and could not find where it is located... it's not in the template..

Re: 0.3.4 "t;" history glitch

Posted: March 27th, 2008, 2:09 pm
by shypike
Release 0.3.4 converts the characters '' and '&' in history status strings to proper HTML codes: > < and &.
This prevents other problems.
However it looks like the SMPL and Plush designers took a shortcut in scanning strings to do clever things with it.

Since I'm not very familiar with these templates, I suggest you change back the Python code.
In release 0.3.4, it's in the file interface.py. Line 661 now reads:

        actionLine = {'name':escape(action), 'value':escape(unpackstrht[stage][action])}

change it to:

        actionLine = {'name':escape(action), 'value':unpackstrht[stage][action]}

I'll notify the template designers.

Re: 0.3.4 "t;" history glitch

Posted: March 27th, 2008, 4:04 pm
by trax
I don't know what other problems this can cause, but it should be fine for now.

Thanks for the quick code-fix solution, shypike.