TYPOlight webCMS 2.6.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News TYPOlight webCMS 2.6.2 (Default branch)
# 1  
Old 11-03-2008
TYPOlight webCMS 2.6.2 (Default branch)

Image TYPOlight webCMS is a powerful Web content management system that specializes in accessibility and uses XHTML and CSS to generate W3C/WAI compliant pages. Its key features include a live update feature, multi- language support, automatic CSS framework generation, a file manager, a search engine and form generator, versioning and undo, and Web 2.0 support. License: GNU Lesser General Public License (LGPL) Changes:
This release includes two new core extensions, the memberlist module and the extension repository client, and introduces a new article navigation module that allows you to navigate articles as if they were split into multiple pages. A couple of frequently requested features, like moving news between archives or an option to define an individual date format per root page, have also been added. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Web Development

.jpg pictures not displayed in TYPOlight CMS

Dear colleagues, for four days now all .jpg pictures are displayed as black rectangles in a web site built with a pre- 3.2.2 TYPOlight CMS (yes I know, there's more recent versions out there). It doesn't matter if they are accessed via the normal web site or the TYPOlight backend (management)... (0 Replies)
Discussion started by: RudiC
0 Replies
Login or Register to Ask a Question
CSS::DOM::Rule::Media(3pm)				User Contributed Perl Documentation				CSS::DOM::Rule::Media(3pm)

NAME
CSS::DOM::Rule::Media - CSS @media rule class for CSS::DOM VERSION
Version 0.14 SYNOPSIS
use CSS::DOM; my $media_rule = CSS::DOM->parse( '@media print { body { background: none } }' )->cssRules->[0]; # OR: use CSS::DOM::Rule::Media; my $media_rule = new CSS::DOM::Rule::Media $parent; push @{$media_rule->media}, 'print'; $media_rule->insertRule('body { background: none }') DESCRIPTION
This module implements CSS @media rules for CSS::DOM. It inherits from CSS::DOM::Rule and implements the CSSMediaRule DOM interface. METHODS
media Returns the MediaList associated with the @media rule (or a plain list in list context). This defaults to an empty list. You can pass a comma-delimited string to the MediaList's "mediaText" method to set it. cssRules In scalar context, this returns a CSS::DOM::RuleList object (simply a blessed array reference) of CSS::DOM::Rule objects. In list context it returns a list. insertRule ( $css_code, $index ) Parses the rule contained in the $css_code, inserting it the @media rule's list of subrules at the given $index. deleteRule ( $index ) Deletes the rule at the given $index. SEE ALSO
CSS::DOM CSS::DOM::Rule CSS::DOM::MediaList perl v5.10.1 2010-12-10 CSS::DOM::Rule::Media(3pm)