| | 1 | 2007-01-13 Benoit Grégoire <bock@step.polymtl.ca> |
| | 2 | * Content.php: Add setUserUIMainDisplayContent() and setUserUIMainInteractionArea() |
| | 3 | to simplify writing subclasses and port all content subclasses to the new API. |
| | 4 | * Content.php: Add a new callcack method, isTextualContent(), to be used by |
| | 5 | ContentFilters. Indicates that the content is suitable to store plain text. |
| | 6 | * ContentGroup.php: No longer warn about empty ContentGroup in getUserUI(), |
| | 7 | as this may now be perfectly normal if all content has expired. |
| | 8 | * Rework the classes and css for user_ui_main_outer, isSimpleContent has been |
| | 9 | eliminated and hasDisplayableMetadata is now defined is metadata is available. |
| | 10 | This should allow better HTML consistency and simpler CSS, and be closer to what |
| | 11 | people expect by default. Content without metadata will display without |
| | 12 | borders or background, and without margins when inside another content. |
| | 13 | * smarty.resource.string.php: Add a setter function, |
| | 14 | smarty_resource_string_add_string() that must be used before calling the smarty |
| | 15 | function. Using the name as the the template was far to brittle. This makes |
| | 16 | the SmartyTemplate content much more reliable, and quite possibly faster. |
| | 17 | * ShoutBox: A very basic but already extensible implementation of the |
| | 18 | shoutbox use case. Shows the last five shouts. Can connect to another web |
| | 19 | site through a javascript extension. |
| | 20 | * SimpleSmartyTemplate: Add a simple version of the SmartyTemplate content |
| | 21 | type |
| | 22 | |