HTML5 will incorporate high definition extensions


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News HTML5 will incorporate high definition extensions
# 1  
Old 04-01-2008
HTML5 will incorporate high definition extensions

Tue, 01 Apr 2008 10:30:00 GMT
PILTDOWN, UK - High definition HTML is coming to a site near you -- whether you will see it is another matter. An addition to the HTML5 working draft specification was approved by the World Wide Web Consortium (W3C) working group over the weekend, including several new HTML elements and attributes designed to support output on high definition displays. But due to patent protection, open source Web browsers may not be allowed to implement a significant portion of the standard.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

HTML5 Elements for UNIX.COM

You may notice some new headers and section labels on existing pages and sections. I have been updating the site to be fully HTML5 compliant and have started to wrap various HTML templates for the site with HTML 5 elements like the ones below: <article> Defines an article in a document... (7 Replies)
Discussion started by: Neo
7 Replies

2. What is on Your Mind?

Definition of Bytes

A byte is the smallest unit of storage which can be accessed in a computer's memory- either in RAM or ROM.It also holds exactly 8 bits.But its old view one byte was sufficient to hold one 8 bit character.Modern days especially on .NET or international versions of Win 32, 16 bits is needed. ... (2 Replies)
Discussion started by: stoudtLion
2 Replies

3. Shell Programming and Scripting

what would a script include to find CPU's %system time high and user time high?

Hi , I am trying to :wall: my head while scripting ..I am really new to this stuff , never did it before :( . how to find cpu's system high time and user time high in a script?? thanks , help would be appreciated ! :) (9 Replies)
Discussion started by: sushwey
9 Replies

4. Red Hat

apache high cpu load on high traffic

i have a Intel Quad Core Xeon X3440 (4 x 2.53GHz, 8MB Cache, Hyper Threaded) with 16gig and 1tb harddrive with a 1gb port and my apache is causing my cpu to go up to 100% on all four cores heres my http.config <IfModule prefork.c> StartServers 10 MinSpareServers 10 MaxSpareServers 15... (4 Replies)
Discussion started by: awww
4 Replies

5. Shell Programming and Scripting

How to incorporate mutiple commands in Autosys commandline on UNIX

Hi, I am having a problem running multiple commands in a autosys command line. For example I would like to run a perl script first and then add sleep command after that in the same autosys job like below insert_job: xxxxxxxxx command: `perlscript.pl ; sleep 180` Perlscript.pl... (0 Replies)
Discussion started by: waavman
0 Replies

6. UNIX for Dummies Questions & Answers

Definition of $-

Could someone please direct me to a link that gives the definitions for each of the letters from the results of the $- environment variable? It would be nice to know what shell options each of the letters represents, but I am specifically looking for the shell option for 'c' (lowercase c). Thank... (12 Replies)
Discussion started by: sszd
12 Replies

7. OS X (Apple)

SigmaTel High Definition Audio 9200

Would anyone here know how modify the appleHDA.kext for use with a Sigmatel HD Audio STAC9200? Help would be much appreciated. Thank you (0 Replies)
Discussion started by: Heather
0 Replies

8. UNIX for Advanced & Expert Users

Sun: High kernel usage & very high load averages

Hi, I am seeing very high kernel usage and very high load averages on my system (Although we are not loading much data to our database). Here is the output of top...does anyone know what i should be looking at? Thanks, Lorraine last pid: 13144; load averages: 22.32, 19.81, 16.78 ... (4 Replies)
Discussion started by: lorrainenineill
4 Replies
Login or Register to Ask a Question
HTML::HTML5::Entities(3pm)				User Contributed Perl Documentation				HTML::HTML5::Entities(3pm)

NAME
HTML::HTML5::Entities - drop-in replacement for HTML::Entities SYNOPSIS
use HTML::Entities; my $enc = encode_entities('fish & chips'); print "$enc "; # fish &amp; chips my $dec = decode_entities($enc); print "$dec "; # fish & chips DESCRIPTION
This is a drop-in replacement for HTML::Entities, providing the character entities defined in HTML5. Some caveats: o The implementation is pure perl, hence in some cases slower, especially decoding. o It will not work in Perl < 5.8.1. Functions "decode_entities($string, ...)" This routine replaces HTML entities found in the $string with the corresponding Unicode character. If multiple strings are provided as arguments they are each decoded separately and the same number of strings are returned. If called in void context the arguments are decoded in-place. This routine is exported by default. "_decode_entities($string, \%entity2char)" "_decode_entities($string, \%entity2char, $expand_prefix)" This will in-place replace HTML entities in $string. The %entity2char hash must be provided. Named entities not found in the %entity2char hash are left alone. Numeric entities are always expanded. If $expand_prefix is TRUE then entities without trailing ";" in %entity2char will even be expanded as a prefix of a longer unrecognized name. $string = "foo&nbspbar"; _decode_entities($string, { nb => "@", nbsp => "xA0" }, 1); print $string; # will print "foo bar" This routine is exported by default. "encode_entities($string)" "encode_entities($string, $unsafe_chars)" This routine replaces unsafe characters in $string with their entity representation. A second argument can be given to specify which characters to consider unsafe (i.e., which to escape). This may be a regular expression. If called in void context the string is encoded in-place. This routine is exported by default. "encode_entities_numeric($string)" This routine works just like encode_entities, except that the replacement entities are always numeric. This routine is not exported by default. "num_entity($string)" Given a single character string, encodes it as a numeric entity. This routine is not exported by default. The following functions cannot be exported. They behave the same as the exportable functions. "HTML::Entities::decode($string, ...)" "HTML::Entities::encode($string)" "HTML::Entities::encode($string, $unsafe_characters)" "HTML::Entities::encode_numeric($string)" "HTML::Entities::encode_numeric($string, $unsafe_characters)" "HTML::Entities::encode_numerically($string)" "HTML::Entities::encode_numerically($string, $unsafe_characters)" Variables $HTML::HTML5::Entities::hex This variable controls whether numeric entities will use hexadecimal or decimal notation. It is TRUE (hexadecimal) by default, but can be set to FALSE. It only affects the encoding functions. Decoding always understands both notations. %HTML::HTML5::Entities::char2entity %HTML::HTML5::Entities::entity2char There contain the mapping from all characters to the corresponding entities (and vice versa, respectively). These variables may be exported. Note that %char2entity is a more conservative set of mappings, intended to be safe for serialising strings to HTML4, HTML5 and XHTML 1.x. And for hysterical raisins, %entity2char does not include the leading ampersands, while %char2entity does. BUGS
Please report any bugs to http://rt.cpan.org/Dist/Display.html?Queue=HTML-HTML5-Entities <http://rt.cpan.org/Dist/Display.html?Queue=HTML- HTML5-Entities>. SEE ALSO
HTML::Entities, HTML::HTML5::Parser, HTML::HTML5::Writer. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT AND LICENCE
Encoding and Decoding Functions Copyright (c) 1995-2006 by Gisle Aas. Copyright (c) 2012 by Toby Inkster. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Entity Tables Copyright (c) 2004-2007 by Apple Computer Inc, Mozilla Foundation, and Opera Software ASA. Copyright (c) 2007-2011 by Wakaba <w@suika.fam.cx>. Copyright (c) 2009-2012 by Toby Inkster <tobyink@cpan.org>. DISCLAIMER OF WARRANTIES
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. perl v5.14.2 2012-06-26 HTML::HTML5::Entities(3pm)