I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-02-03 13:08:17-08 by barbie
Tag case
what is the difference between <p> and <P> ?

Except that the latter fails with text format is incorrect.
Direct Responses: 25 | Write a response
Posted on 2005-02-03 16:09:13-08 by bricas in response to 24
Re: Tag case

The later fails to validate against the XHTML doctype.

See this w3c document for more info: http://www.w3.org/TR/xhtml1/#h-4.2

Direct Responses: 28 | Write a response
Posted on 2005-02-03 21:50:40-08 by barbie in response to 25
Re: Tag case
That is regarding the presentation of XHTML as the rendered page, not what a user will type into a text field. They are two different things. Strict typing for user input is just bad UI. Below the text input box, it states that the only accepted HTML (that's HTML *NOT* XHTML) are bold, italic, paragraph and break, thus the uppercase versions should also be valid. As it happens the lowercase versions are broken as well at the moment as I can't even enter those tags without a text format error!
Direct Responses: 32 | Write a response
Posted on 2005-02-04 22:53:23-08 by szabgab in response to 28
Re: Tag case
I think I changed this now.

You can now use either lower case or upper case letters in the markup, the site will recognize both but will display them lower case

barbie, please send me an example of what can't you enter? Unless you are also talking about <p> without a closing tag which is currently rejected on purpose. I am still thinking about a way to accept them and turn them to real XHTML style paragraph endings.

Direct Responses: 36 | Write a response
Posted on 2005-02-05 08:39:49-08 by barbie in response to 32
Re: Tag case

Reading your other post I think the problem was having bold tags inside a paragraph tag. I had included all the closing tags and all were lower case, so it should have worked. But if you've already spotted the problem that's fine.

Direct Responses: Write a response