html guides
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2678
OPEN BEXI HTML Builder 1.6
OPEN BEXI HTML Builder is a WYSIWYG HTML editor. more>>
OPEN BEXI HTML Builder is a WYSIWYG HTML editor which allows you to create Web pages and generate HTML code from your browser without any HTML knowledge.
It lets you create, update, and remove HTML components. OPEN BEXI HTML Builder is suitable for beginners and experts.
<<lessIt lets you create, update, and remove HTML components. OPEN BEXI HTML Builder is suitable for beginners and experts.
Download (1.8MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
939 downloads
HTML::TreeBuilder 3.23
HTML::TreeBuilder is a parser that builds a HTML syntax tree. more>>
HTML::TreeBuilder is a parser that builds a HTML syntax tree.
SYNOPSIS
foreach my $file_name (@ARGV) {
my $tree = HTML::TreeBuilder->new; # empty tree
$tree->parse_file($file_name);
print "Hey, heres a dump of the parse tree of $file_name:n";
$tree->dump; # a method we inherit from HTML::Element
print "And here it is, bizarrely rerendered as HTML:n",
$tree->as_HTML, "n";
# Now that were done with it, we must destroy it.
$tree = $tree->delete;
}
(This class is part of the HTML::Tree dist.)
This class is for HTML syntax trees that get built out of HTML source. The way to use it is to:
1. start a new (empty) HTML::TreeBuilder object,
2. then use one of the methods from HTML::Parser (presumably with $tree->parse_file($filename) for files, or with $tree->parse($document_content) and $tree->eof if youve got the content in a string) to parse the HTML document into the tree $tree.
(You can combine steps 1 and 2 with the "new_from_file" or "new_from_content" methods.)
2b. call $root->elementify() if you want.
3. do whatever you need to do with the syntax tree, presumably involving traversing it looking for some bit of information in it,
4. and finally, when youre done with the tree, call $tree->delete() to erase the contents of the tree from memory. This kind of thing usually isnt necessary with most Perl objects, but its necessary for TreeBuilder objects. See HTML::Element for a more verbose explanation of why this is the case.
<<lessSYNOPSIS
foreach my $file_name (@ARGV) {
my $tree = HTML::TreeBuilder->new; # empty tree
$tree->parse_file($file_name);
print "Hey, heres a dump of the parse tree of $file_name:n";
$tree->dump; # a method we inherit from HTML::Element
print "And here it is, bizarrely rerendered as HTML:n",
$tree->as_HTML, "n";
# Now that were done with it, we must destroy it.
$tree = $tree->delete;
}
(This class is part of the HTML::Tree dist.)
This class is for HTML syntax trees that get built out of HTML source. The way to use it is to:
1. start a new (empty) HTML::TreeBuilder object,
2. then use one of the methods from HTML::Parser (presumably with $tree->parse_file($filename) for files, or with $tree->parse($document_content) and $tree->eof if youve got the content in a string) to parse the HTML document into the tree $tree.
(You can combine steps 1 and 2 with the "new_from_file" or "new_from_content" methods.)
2b. call $root->elementify() if you want.
3. do whatever you need to do with the syntax tree, presumably involving traversing it looking for some bit of information in it,
4. and finally, when youre done with the tree, call $tree->delete() to erase the contents of the tree from memory. This kind of thing usually isnt necessary with most Perl objects, but its necessary for TreeBuilder objects. See HTML::Element for a more verbose explanation of why this is the case.
Download (0.12MB)
Added: 2006-12-20 License: Perl Artistic License Price:
1042 downloads
HTML Objects 1.2.4
HTML Objects is a Perl module library for turning HTML tags into Perl objects. more>>
HTML Objects is a Perl module library for turning HTML tags into Perl objects. HTML Objects allows Web pages to be manipulated as a data structure rather than text.
Once manipulation is done, the entire page is generated via depth-first recursion.
<<lessOnce manipulation is done, the entire page is generated via depth-first recursion.
Download (0.025MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1263 downloads
HTML::QuickTable 1.12
HTML::QuickTable is a Perl module to quickly create fairly complex HTML tables. more>>
HTML::QuickTable is a Perl module to quickly create fairly complex HTML tables.
SYNOPSIS
use HTML::QuickTable;
my $qt = HTML::QuickTable->new(
table_width => 95%, # opt method 1
td => {bgcolor => gray}, # opt method 2
font_face => arial, # set font
font => {face => arial}, # same thing
labels => 1, # make top
<<lessSYNOPSIS
use HTML::QuickTable;
my $qt = HTML::QuickTable->new(
table_width => 95%, # opt method 1
td => {bgcolor => gray}, # opt method 2
font_face => arial, # set font
font => {face => arial}, # same thing
labels => 1, # make top
Download (0.014MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1123 downloads

Html Code Convert 3.3
Speed up the conversion of HTML code into different format more>>
HTML Code Convert helps speed up the conversion of HTML code into different format including Java Script, JavaServer Pages, Microsoft ASP, PHP, Perl, Python, and the UNIX Shell. It is particularly useful in CGI scripting.
Enhancements:
- Colors and font selected in prefeferences box.
- Fixe bug with Quit button. First try to support accessibility.
- Updated schemas.
<<lessEnhancements:
- Colors and font selected in prefeferences box.
- Fixe bug with Quit button. First try to support accessibility.
- Updated schemas.
Download (184KB)
Added: 2009-04-29 License: Freeware Price:
198 downloads
HTML::CGIChecker 0.90
HTML::CGIChecker is a Perl module to detect dangerous HTML code. more>>
HTML::CGIChecker is a Perl module to detect dangerous HTML code.
SYNOPSIS
use HTML::CGIChecker;
$feedback =
< TABLE CELLPADDING="2" >< TR >< TD >One column< /TD >< /TR >< /TABLE >< BR >
" Arrays & variables "
Dough > Hi, how are you ?
And now some Perl code:
< PRE >
print "< HTML >< BODY >< /BODY >< /HTML >";
< /PRE >
;
# create the $checker object
$checker = new HTML::CGIChecker (
mode => allow,
allowclasses => [ qw( tables images ) ],
allowtags => [ qw ( B I A U STRONG BR HR ) ],
jscript => 0,
html => 0,
pre => 1,
debug => 0,
err_tag => Tag {tag} is not allowed in {element}.
);
# Now you can use it to check any string using its checkHTML()
# method. It "remembers" its configuration, so you can reuse it.
($checked_feedback, $Warnings) =
$checker->checkHTML ($feedback);
# Process the results ...
if ($checked_feedback) {
# save $checked_feedback to the database ....
}
else {
# print the warnings ...
print join ("n", @{$Warnings});
}
The example above produces no warning messages and returns $feedback checked and properly HTML escaped. The only HTML "error" - the unescaped ">" bracket on the fourth line - is autocorrected. One warning message was overriden by a customized version. Potential warnings would not be HTML formatted and HTML safe, because the html parameter is not true.
<<lessSYNOPSIS
use HTML::CGIChecker;
$feedback =
< TABLE CELLPADDING="2" >< TR >< TD >One column< /TD >< /TR >< /TABLE >< BR >
" Arrays & variables "
Dough > Hi, how are you ?
And now some Perl code:
< PRE >
print "< HTML >< BODY >< /BODY >< /HTML >";
< /PRE >
;
# create the $checker object
$checker = new HTML::CGIChecker (
mode => allow,
allowclasses => [ qw( tables images ) ],
allowtags => [ qw ( B I A U STRONG BR HR ) ],
jscript => 0,
html => 0,
pre => 1,
debug => 0,
err_tag => Tag {tag} is not allowed in {element}.
);
# Now you can use it to check any string using its checkHTML()
# method. It "remembers" its configuration, so you can reuse it.
($checked_feedback, $Warnings) =
$checker->checkHTML ($feedback);
# Process the results ...
if ($checked_feedback) {
# save $checked_feedback to the database ....
}
else {
# print the warnings ...
print join ("n", @{$Warnings});
}
The example above produces no warning messages and returns $feedback checked and properly HTML escaped. The only HTML "error" - the unescaped ">" bracket on the fourth line - is autocorrected. One warning message was overriden by a customized version. Potential warnings would not be HTML formatted and HTML safe, because the html parameter is not true.
Download (0.014MB)
Added: 2007-08-07 License: Perl Artistic License Price:
809 downloads
HTML::Declare 2.1
HTML::Declare is a Perl module for When Template Systems Are Too Huge And Heredocs Too Messy. more>>
HTML::Declare is a Perl module for When Template Systems Are Too Huge And Heredocs Too Messy.
SYNOPSIS
# Import all constructors
use HTML::Declare :all;
# A simple hello world
print HTML {
_ => [
HEAD { _ => TITLE { _ => Hello World! } },
BODY { _ => Hello World! }
]
};
# Import specific constructors
use HTML::Declare qw/DIV A/;
# A simple anchor nested in a div
my $tree = DIV {
_ => [
A {
href => http://127.0.0.1,
_ =><<less
SYNOPSIS
# Import all constructors
use HTML::Declare :all;
# A simple hello world
print HTML {
_ => [
HEAD { _ => TITLE { _ => Hello World! } },
BODY { _ => Hello World! }
]
};
# Import specific constructors
use HTML::Declare qw/DIV A/;
# A simple anchor nested in a div
my $tree = DIV {
_ => [
A {
href => http://127.0.0.1,
_ =><<less
Download (0.019MB)
Added: 2007-08-13 License: Perl Artistic License Price:
802 downloads
HTML::Puzzle 0.13
HTML::Puzzle is a framework to build web component based on database. more>>
HTML::Puzzle is a framework to build web component based on database.
HTML::Puzzle::DBTable
Connection module to data table
Examples
Have a look to
http://www.ebruni.it/en/software/perl/cpan/html/puzzle/examples/ex1.htm
to see some examples on what you can simply do using this module.
<<lessHTML::Puzzle::DBTable
Connection module to data table
Examples
Have a look to
http://www.ebruni.it/en/software/perl/cpan/html/puzzle/examples/ex1.htm
to see some examples on what you can simply do using this module.
Download (0.012MB)
Added: 2007-02-22 License: Perl Artistic License Price:
975 downloads
HTML::Chunks 1.53
HTML::Chunks is a simple nested template engine for HTML, XML and XHTML. more>>
HTML::Chunks is a simple nested template engine for HTML, XML and XHTML.
This class implements a simple text-based template engine, originally intented to allow web applications to completely separate layout HTML from programming logic. However, the engine is flexible enough to be applied to other text-based situations where templates are helpful, such as generating email messages, XML data files, etc.
SYNOPSIS
my $engine = new HTML::Chunks(@chunkFiles);
$engine->readChunkFile(morechunks.html);
$engine->addChunk($smallChunk, $hugeChunk);
$engine->addNamedChunk(myChunk, $chunk);
$engine->output(myChunk, {
firstName => Homer,
lastName => Simpson,
meals => &outputMeals
}, @extraData);
my @names = $engine->getChunkNames();
my $chunk = $engine->getChunk(myChunk);
my $oldValue = $engine->setCrush(0);
<<lessThis class implements a simple text-based template engine, originally intented to allow web applications to completely separate layout HTML from programming logic. However, the engine is flexible enough to be applied to other text-based situations where templates are helpful, such as generating email messages, XML data files, etc.
SYNOPSIS
my $engine = new HTML::Chunks(@chunkFiles);
$engine->readChunkFile(morechunks.html);
$engine->addChunk($smallChunk, $hugeChunk);
$engine->addNamedChunk(myChunk, $chunk);
$engine->output(myChunk, {
firstName => Homer,
lastName => Simpson,
meals => &outputMeals
}, @extraData);
my @names = $engine->getChunkNames();
my $chunk = $engine->getChunk(myChunk);
my $oldValue = $engine->setCrush(0);
Download (0.010MB)
Added: 2006-09-08 License: Perl Artistic License Price:
1141 downloads
HTML::Adsense 0.1
HTML::Adsense is a Perl module that can create adsense widgets easily. more>>
HTML::Adsense is a Perl module that can create adsense widgets easily.
SYNOPSIS
This module wraps Google Adsense ad creation in OO perl code.
use HTML::Adsense;
my $myad = HTML::Adsense->new(
client => pub-4763368282156432,
); # OR
$myad->client(pub-4763368282156432);
print $myadd->render();
METHODS
new
Creates the HTML::Adsense object.
render
Returns a the adsense code.
set_defaults
Sets several defaults, used in object creation.
set_format
Sets the height, width, type and format variables based on a format name and a list of preset values.
<<lessSYNOPSIS
This module wraps Google Adsense ad creation in OO perl code.
use HTML::Adsense;
my $myad = HTML::Adsense->new(
client => pub-4763368282156432,
); # OR
$myad->client(pub-4763368282156432);
print $myadd->render();
METHODS
new
Creates the HTML::Adsense object.
render
Returns a the adsense code.
set_defaults
Sets several defaults, used in object creation.
set_format
Sets the height, width, type and format variables based on a format name and a list of preset values.
Download (0.004MB)
Added: 2006-11-28 License: Perl Artistic License Price:
1063 downloads
HTML::GenToc 2.30
HTML::GenToc is a Perl module that generate a Table of Contents for HTML documents. more>>
HTML::GenToc is a Perl module that generate a Table of Contents for HTML documents.
SYNOPSIS
use HTML::GenToc;
# create a new object
my $toc = new HTML::GenToc();
my $toc = new HTML::GenToc(title=>"Table of Contents",
toc=>$my_toc_file,
toc_entry=>{
H1=>1,
H2=>2
},
toc_end=>{
H1=>/H1,
H2=>/H2
}
);
# add further arguments
$toc->args(toc_tag=>"BODY",
toc_tag_replace=>0,
);
# generate anchors for a file
$toc->generate_anchors(infile=>$html_file,
overwrite=>0,
);
# generate a ToC from a file
$toc->generate_toc(infile=>$html_file,
footer=>$footer_file,
header=>$header_file
);
HTML::GenToc generates anchors and a table of contents for HTML documents. Depending on the arguments, it will insert the information it generates, or output to a string, a separate file or STDOUT.
While it defaults to taking H1 and H2 elements as the significant elements to put into the table of contents, any tag can be defined as a significant element. Also, it doesnt matter if the input HTML code is complete, pure HTML, one can input pseudo-html or page-fragments, which makes it suitable for using on templates and HTML meta-languages such as WML.
Also included in the distrubution is hypertoc, a script which uses the module so that one can process files on the command-line in a user-friendly manner.
<<lessSYNOPSIS
use HTML::GenToc;
# create a new object
my $toc = new HTML::GenToc();
my $toc = new HTML::GenToc(title=>"Table of Contents",
toc=>$my_toc_file,
toc_entry=>{
H1=>1,
H2=>2
},
toc_end=>{
H1=>/H1,
H2=>/H2
}
);
# add further arguments
$toc->args(toc_tag=>"BODY",
toc_tag_replace=>0,
);
# generate anchors for a file
$toc->generate_anchors(infile=>$html_file,
overwrite=>0,
);
# generate a ToC from a file
$toc->generate_toc(infile=>$html_file,
footer=>$footer_file,
header=>$header_file
);
HTML::GenToc generates anchors and a table of contents for HTML documents. Depending on the arguments, it will insert the information it generates, or output to a string, a separate file or STDOUT.
While it defaults to taking H1 and H2 elements as the significant elements to put into the table of contents, any tag can be defined as a significant element. Also, it doesnt matter if the input HTML code is complete, pure HTML, one can input pseudo-html or page-fragments, which makes it suitable for using on templates and HTML meta-languages such as WML.
Also included in the distrubution is hypertoc, a script which uses the module so that one can process files on the command-line in a user-friendly manner.
Download (0.043MB)
Added: 2006-06-16 License: Perl Artistic License Price:
1225 downloads
Online Money Guide 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-24 License: Freeware Price: Free
184 downloads
HTML-Widgets-NavMenu 1.0001
HTML-Widgets-NavMenu is a Perl module to generate navigation menus and control site flow. more>>
HTML-Widgets-NavMenu is a Perl module to generate navigation menus and control site flow. HTML-Widgets-NavMenu has many advanced features, is extensively tested, and should be easily extensible and customizable.
<<less Download (0.041MB)
Added: 2006-09-13 License: MIT/X Consortium License Price:
1146 downloads
HTML QuickForm Wizard 0.1.7
HTML QuickForm Wizard project implements a wizard whose pages and flows are described by a FSM (finite state machine). more>>
HTML QuickForm Wizard project implements a wizard whose pages and flows are described by a FSM (finite state machine).
The next page is determined from the actual page, the "internal" state of the wizard, and a set of rules. The list of states (pages) and ruleset are described using an XML file (or string).
Enhancements:
- This release fixes initialization of the starting and current pages.
<<lessThe next page is determined from the actual page, the "internal" state of the wizard, and a set of rules. The list of states (pages) and ruleset are described using an XML file (or string).
Enhancements:
- This release fixes initialization of the starting and current pages.
Download (0.037MB)
Added: 2007-04-18 License: The PHP License Price:
923 downloads
HTML::DWT 2.08
HTML::DWT is a Perl module with DreamWeaver HTML Template. more>>
HTML::DWT is a Perl module with DreamWeaver HTML Template.
INSTALLATION
Unzip/tar the archive:
tar xvfz HTML-DWT-2.08
Create the makefile
perl Makefile.PL
Make the module (must have root access to install)
make
make test
make install
SYNOPSIS
use HTML::DWT;
$template = new HTML::DWT(filename => "file.dwt");
%dataHash = (
doctitle => DWT Generated,
leftcont => some HTML content here
);
$html = $template->fill(%dataHash);
or
use HTML::DWT qw(:Template);
$template = new HTML::DWT(filename => "file.dwt");
$template->param(
doctitle => < title >DWT Generated< /title >,
leftcont => Some HTML content here
);
$html = $template->output();
A perl module designed to parse a simple HTML template file generated by Macromedia Dreamweaver and replace fields in the template with values from a CGI script.
<<lessINSTALLATION
Unzip/tar the archive:
tar xvfz HTML-DWT-2.08
Create the makefile
perl Makefile.PL
Make the module (must have root access to install)
make
make test
make install
SYNOPSIS
use HTML::DWT;
$template = new HTML::DWT(filename => "file.dwt");
%dataHash = (
doctitle => DWT Generated,
leftcont => some HTML content here
);
$html = $template->fill(%dataHash);
or
use HTML::DWT qw(:Template);
$template = new HTML::DWT(filename => "file.dwt");
$template->param(
doctitle => < title >DWT Generated< /title >,
leftcont => Some HTML content here
);
$html = $template->output();
A perl module designed to parse a simple HTML template file generated by Macromedia Dreamweaver and replace fields in the template with values from a CGI script.
Download (0.017MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1141 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above html guides search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed