Local Media Browser 0.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Local Media Browser 0.2 (Default branch)
# 1  
Old 01-25-2008
Local Media Browser 0.2 (Default branch)

Local Media Browser lets you access your collection of digital media files from a Web browser. It is designed for (but not limited to) low-powered clients (like the Nintendo Wii) on low-resolution displays (like TVs). It uses its own specialized Web server. It is fully customizable through easy HTML-templates, CSS, and ini-files. It currently supports picture and music files. It supports indexing and caching of information (such as thumbnails and ID3 tags) for fast browsing as well as on-the-fly gathering. License: GNU General Public License v3 Changes:
The music module is now running well. Local Media Browser now runs its own multi-threaded Web server on a custom port, so there is no need for a big Web server like Apache anymore. The templates were improved and look much nicer now. They are also easier to improve, as a simple template language is used.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
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)