Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

html::microformats::format::hnews(3pm) [debian man page]

HTML::Microformats::Format::hNews(3pm)			User Contributed Perl Documentation		    HTML::Microformats::Format::hNews(3pm)

NAME
HTML::Microformats::Format::hNews - the hNews microformat SYNOPSIS
use HTML::Microformats::DocumentContext; use HTML::Microformats::Format::hNews; my $context = HTML::Microformats::DocumentContext->new($dom, $uri); my @objects = HTML::Microformats::Format::hNews->extract_all( $dom->documentElement, $context); foreach my $article (@objects) { printf("%s %s ", $article->get_link, $article->get_dateline); } DESCRIPTION
HTML::Microformats::Format::hNews inherits from HTML::Microformats::Format. See the base class definition for a description of property getter/setter methods, constructors, etc. MICROFORMAT
HTML::Microformats::Format::hNews supports hNews as described at <http://microformats.org/wiki/hNews>. RDF OUTPUT
hNews is an extension of hAtom; data is returned using the same vocabularies as hAtom, with additional news-specific terms from <http://ontologi.es/hnews#>. BUGS
Please report any bugs to <http://rt.cpan.org/>. SEE ALSO
HTML::Microformats::Format, HTML::Microformats, HTML::Microformats::Format::hAtom, HTML::Microformats::Format::hEntry. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT
Copyright 2008-2011 Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 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 2011-12-06 HTML::Microformats::Format::hNews(3pm)

Check Out this Related Man Page

HTML::Microformats::Format::hRecipe(3pm)		User Contributed Perl Documentation		  HTML::Microformats::Format::hRecipe(3pm)

NAME
HTML::Microformats::Format::hRecipe - the hRecipe microformat SYNOPSIS
use Data::Dumper; use HTML::Microformats::DocumentContext; use HTML::Microformats::Format::hRecipe; my $context = HTML::Microformats::DocumentContext->new($dom, $uri); my @recipes = HTML::Microformats::Format::hRecipe->extract_all( $dom->documentElement, $context); foreach my $recipe (@recipes) { print $recipe->get_summary . " "; } DESCRIPTION
HTML::Microformats::Format::hRecipe inherits from HTML::Microformats::Format. See the base class definition for a description of property getter/setter methods, constructors, etc. MICROFORMAT
HTML::Microformats::Format::hRecipe supports hRecipe 0.23 as described at <http://microformats.org/wiki/hrecipe>. RDF OUTPUT
<http://linkedrecipes.org/schema/>, <http://ontologi.es/hrecipe#>. BUGS
Please report any bugs to <http://rt.cpan.org/>. SEE ALSO
HTML::Microformats::Format, HTML::Microformats. AUTHOR
Toby Inkster <tobyink@cpan.org>. COPYRIGHT
Copyright 2008-2011 Toby Inkster This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. 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 2011-12-06 HTML::Microformats::Format::hRecipe(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Format Time with Awked Output

Hi, I would like the 2nd column in this log file to display as %k%S(00:00) in a new file. See my script and desired output below. 05-25-2010 21:45:49 1616 1615 0 0 0 0 0 0 0 05-23-2010 21:55:49 1495 1493 0 0 0 3 0 0 0 05-23-2010 22:05:49 1750 1750 0 0 0 0 0 0 0 05-24-2010 22:15:49... (12 Replies)
Discussion started by: ravzter
12 Replies

2. Shell Programming and Scripting

how to get the Format header in perl in different color

Now here is the problem how to get the Format header in perl in different color. format RPT_TOP= DINISO EXECUTION REPORT @<<<<<<<<<<<<< AGAINST SEOPACTUAL Page : @>>> $TODAY,$%... (3 Replies)
Discussion started by: rrd1986
3 Replies

3. Shell Programming and Scripting

Pivot using awk

Hi, I am writing a code to basically pivot the data. awk -v var1="" -v var2="" -v var3="" -v var4="" -v var5="" -v Disp=0\ 'BEGIN {FS=":"; OFS="|";}\ /^Pattern1/ {var1=$2;Disp=0;} \ /^Pattern2/ {var2=$2;} \ /^Pattern3/ {var3=$2;} \ /^Pattern4/ {var4=$2;} \ /^Pattern5/... (5 Replies)
Discussion started by: tostay2003
5 Replies

4. Shell Programming and Scripting

Disk Space Utilization in HTML format working in one environment and not working on the other

Hi Team, I have written the shell script which returns the result of the disk space filesystems which has crossed the threshold limit in HTML Format. Below mentioned is the script which worked perfectly on QA system. df -h | awk -v host=`hostname` ' BEGIN { print "<table border="4"... (13 Replies)
Discussion started by: Harihsun
13 Replies