Please note (as demonstrated here as well) that there is a design flaw with the "List" and "List=" phpBB BBCode functions.
In the case of the first function, "list" there is a failure of the function to begin by creating a wrapper and then placing list items within that wrapper. The Compliant method to this function is to first create a "UL" wrapper and then each item would begin and end with "LI".
There are basically two types of lists, organized lists (OL) and unorganized lists (UL)... I won't worry about organized lists (numbered or lettered lists) but rather just concentrate on the problem at with phpBB's UL type lists.
The first issue is that UL type lists are supposed to be "Bulleted" meaning, a bullet would appear before each <li> item in the <ul> list. This simply does not happen in phpBB because <li> functions do not work at all.
The correct formatting and output of the "List" function in phpBB should be output like this:
<ul>
<li>Joe's List Item #1</li>
<li>joe's imporant thing next</li>
<li>joe's next item</li>
</ul>
This is the compliant method of using a "List" function. Any other result is simply non-compliant and without bullets, totally useless.
White the bbcode files have <li> functions in them, they simply do not work. Nothing at all happens with them. If you select items for a list, you simply end up with everything being wrapped in <ul> calls with no <li> calls.
For example, I have put the following 3 items in a list using the "list" button above so the "open" list tag is before the first line and the "closing" /list tag is after the last (third) item.
- Sample List Item 1
Sample List Item 2
Sample List Item 3
If you look at the source that this page generates, you will find that the first line starts with <ul> and after each item there is a <br> and at the end there is a </ul> but no <li> and </li> calls for each item.
This makes the Lists coding non-compliant and again, for all intensive purposes not useable.
Next, the "List=" function does nothing at all. It is completely non-functional as demonstrated here. You can try it any number of ways, but it won't do a thing, therefore again, it might as well not exist on the BBcode menu.
[list=]
List Item 1
List Item 2
List Item 3[/list]
I just thought that these major BBcode issues should be reported as these are really desireable features and to have them not work is very frustrating, especially given that they are identied as "features".
Hopefully someone will come up with a fix, or if not, a way to remove (if nothing else the latter of the two) from phpBB.



