Hi!
I'm just wondering if new phpBB 2.2 will be XHTML 1.0/1.1 compliant? I know there has been a feature request regarding XHTML compliance but I don't know if this is already present in current CVS releases or whether it is going to be implemented? Can anybody gimme an hint?
XHTML compliant?
Forum rules
Discuss features as they are added to the new version. Give us your feedback. Don't post bug reports, feature requests, support questions or suggestions here. Feature requests are closed.
Discuss features as they are added to the new version. Give us your feedback. Don't post bug reports, feature requests, support questions or suggestions here. Feature requests are closed.
Re: XHTML compliant?
Probably 
This is pretty much a template specific issue rather than a coding one, and templates are much lower priority in development terms than the code.
However, if you try validating it, you'll find that it is pretty much there already, bar a couple of minor issues.

This is pretty much a template specific issue rather than a coding one, and templates are much lower priority in development terms than the code.
However, if you try validating it, you'll find that it is pretty much there already, bar a couple of minor issues.
Re: XHTML compliant?
Oh, that would be kewl!Graham wrote:Probably
This is pretty much a template specific issue rather than a coding one, and templates are much lower priority in development terms than the code.
However, if you try validating it, you'll find that it is pretty much there already, bar a couple of minor issues.

Re: XHTML compliant?
A pleasing thought. Although that means I have to make sure I keep it that way when modding! I've mostly kludged my mods together, so havenn't paid attention to niceties such as standards compliance.my2001 wrote:Oh, that would be kewl!Graham wrote:Probably
This is pretty much a template specific issue rather than a coding one, and templates are much lower priority in development terms than the code.
However, if you try validating it, you'll find that it is pretty much there already, bar a couple of minor issues.And thanks for your answers.

Re: XHTML compliant?
Something I've been wondering - how does phpBB handle overlapping tags? When someone enters something like:
it would most likely be output as something like:
Which is invalid XHTML...
Code: Select all
[b]blah[i]blah[/b]blah[/i]
Code: Select all
<strong>blah<em>blah</strong>blah</em>
-
- Registered User
- Posts: 1546
- Joined: Wed Apr 09, 2003 8:44 pm
- Location: London, United Kingdom
Re: XHTML compliant?
Toe wrote:Something I've been wondering - how does phpBB handle overlapping tags? When someone enters something like:it would most likely be output as something like:Code: Select all
[b]blah[i]blah[/b]blah[/i]
Which is invalid XHTML...Code: Select all
<strong>blah<em>blah</strong>blah</em>
Why not find out?
blahblahblah
Code: Select all
<span style="font-weight: bold">blah<span style="font-style: italic">blah</span>blah</span>

Rob
Re: XHTML compliant?
Comiliant XHTML, but not what the user was intending...
8O

- dhn
- Registered User
- Posts: 1518
- Joined: Wed Jul 04, 2001 8:10 am
- Location: Around the corner
- Contact:
Re: XHTML compliant?
XHTML compliance is easy, now semantical correctness, that is the interesting part.