html rulez d00d music video
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3690
HTML::Scrubber 0.08
HTML::Scrubber is a Perl extension for scrubbing/sanitizing html. more>>
HTML::Scrubber is a Perl extension for scrubbing/sanitizing html.
SYNOPSIS
#!/usr/bin/perl -w
use HTML::Scrubber;
use strict;
#
my $html = q[
a => link
br =>
b => bold
u => UNDERLINE
];
#
my $scrubber = HTML::Scrubber->new( allow => [ qw[ p b i u hr br ] ] ); #
#
print $scrubber->scrub($html); #
#
$scrubber->deny( qw[ p b i u hr br ] ); #
#
print $scrubber->scrub($html); #
#
If you wanna "scrub" or "sanitize" html input in a reliable an flexible fashion, then this module is for you.
I wasnt satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought Id write something similar that works directly with HTML::Parser.
<<lessSYNOPSIS
#!/usr/bin/perl -w
use HTML::Scrubber;
use strict;
#
my $html = q[
a => link
br =>
b => bold
u => UNDERLINE
];
#
my $scrubber = HTML::Scrubber->new( allow => [ qw[ p b i u hr br ] ] ); #
#
print $scrubber->scrub($html); #
#
$scrubber->deny( qw[ p b i u hr br ] ); #
#
print $scrubber->scrub($html); #
#
If you wanna "scrub" or "sanitize" html input in a reliable an flexible fashion, then this module is for you.
I wasnt satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought Id write something similar that works directly with HTML::Parser.
Download (0.017MB)
Added: 2007-06-18 License: Perl Artistic License Price:
859 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
Amarok Music Diary 0.3.4
Amarok Music Diary creates a SQLite3 Database with every song played a day. more>>
Amarok Music Diary creates a SQLite3 Database with every song played a day. It is possible to add a custom lyric to every database entry html-File export is provided. An example: http://www.sbox.tugraz.at/home/s/stifi/stifi_blog/
Usage:
The database is stored in ~/.kde/share/apps/amarok/scripts-data/amarok-diary.db
To add lyrics, use to Context Menu Entry
For viewing it, use sqlitebrowser http://sqlitebrowser.sourceforge.net
(To due a change in the sqlite data format you may need the CVS Version of the sqlitebrowser)
To export the database use the context menu entry. Per default only songs with the public flag set are exported. This option can be changed in the configuration file.
<<lessUsage:
The database is stored in ~/.kde/share/apps/amarok/scripts-data/amarok-diary.db
To add lyrics, use to Context Menu Entry
For viewing it, use sqlitebrowser http://sqlitebrowser.sourceforge.net
(To due a change in the sqlite data format you may need the CVS Version of the sqlitebrowser)
To export the database use the context menu entry. Per default only songs with the public flag set are exported. This option can be changed in the configuration file.
Download (0.090MB)
Added: 2007-03-06 License: GPL (GNU General Public License) Price:
964 downloads
HTML::CalendarMonthSimple 1.25
HTML::CalendarMonthSimple is a Perl Module for Generating HTML Calendars. more>>
HTML::CalendarMonthSimple is a Perl Module for Generating HTML Calendars.
SYNOPSIS
use HTML::CalendarMonthSimple;
$cal = new HTML::CalendarMonthSimple(year=>2001,month=>2);
$cal->width(50%);
$cal->border(10);
$cal->header(Text at the top of the Grid);
$cal->setcontent(14,"Valentines Day");
$cal->setdatehref(14, http://localhost/);
$cal->addcontent(14,"
<<lessSYNOPSIS
use HTML::CalendarMonthSimple;
$cal = new HTML::CalendarMonthSimple(year=>2001,month=>2);
$cal->width(50%);
$cal->border(10);
$cal->header(Text at the top of the Grid);
$cal->setcontent(14,"Valentines Day");
$cal->setdatehref(14, http://localhost/);
$cal->addcontent(14,"
Dont forget to buy flowers.");
$cal->addcontent(13,"Guess whats tomorrow?");
$cal->bgcolor(pink);
print $cal->as_HTML;
HTML::CalendarMonthSimple is a Perl module for generating, manipulating, and printing a HTML calendar grid for a specified month. It is intended as a faster and easier-to-use alternative to HTML::CalendarMonth.
This module requires the Date::Calc module, which is available from CPAN if you dont already have it.
Download (0.015MB)
Added: 2007-08-13 License: Perl Artistic License Price:
803 downloads
HTML::Clean 0.8
HTML::Clean module cleans up HTML code for web browsers, not humans. more>>
HTML::Clean module cleans up HTML code for web browsers, not humans.
SYNOPSIS
use HTML::Clean;
$h = new HTML::Clean($filename); # or..
$h = new HTML::Clean($htmlcode);
$h->compat();
$h->strip();
$data = $h->data();
print $$data;
The HTML::Clean module encapsulates a number of common techniques for minimizing the size of HTML files. You can typically save between 10% and 50% of the size of a HTML file using these methods. It provides the following features:
Remove unneeded whitespace (begining of line, etc)
Remove unneeded META elements.
Remove HTML comments (except for styles, javascript and SSI)
Replace tags with equivilant shorter tags (< strong > --> < b >)
etc.
The entire proces is configurable, so you can pick and choose what you want to clean.
<<lessSYNOPSIS
use HTML::Clean;
$h = new HTML::Clean($filename); # or..
$h = new HTML::Clean($htmlcode);
$h->compat();
$h->strip();
$data = $h->data();
print $$data;
The HTML::Clean module encapsulates a number of common techniques for minimizing the size of HTML files. You can typically save between 10% and 50% of the size of a HTML file using these methods. It provides the following features:
Remove unneeded whitespace (begining of line, etc)
Remove unneeded META elements.
Remove HTML comments (except for styles, javascript and SSI)
Replace tags with equivilant shorter tags (< strong > --> < b >)
etc.
The entire proces is configurable, so you can pick and choose what you want to clean.
Download (0.047MB)
Added: 2007-08-07 License: Perl Artistic License Price:
808 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
Goggles Music Manager 0.8.0
Goggles Music Manager is a music collection manager and player. more>>
Goggles Music Manager is a music collection manager and player. Goggles Music Manager allows you to easily manage your music collection.
Each song in your collection is organized according to Artist and Album. As of now, Goggles Music Manager supports Ogg Vorbis and MP3 files.
<<lessEach song in your collection is organized according to Artist and Album. As of now, Goggles Music Manager supports Ogg Vorbis and MP3 files.
Download (0.11MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
802 downloads
HTML::WikiConverter::Oddmuse 0.52
HTML::WikiConverter::Oddmuse is a Perl module that can convert HTML to Oddmuse markup. more>>
HTML::WikiConverter::Oddmuse is a Perl module that can convert HTML to Oddmuse markup.
SYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => Oddmuse );
print $wc->html2wiki( $html );
This module contains rules for converting HTML into Oddmuse markup. This dialect module supports most of Oddmuses text formatting rules described at [1], notably:
* bold, strong, italic, emphasized, and underlined text
* paragraph blocks
* external images
* internal and external links
* unordered and ordered lists
* tables [2]
[1] http://www.oddmuse.org/cgi-bin/wiki/Text_Formatting_Rules
[2] http://www.oddmuse.org/cgi-bin/wiki/Table_Markup_Extension
<<lessSYNOPSIS
use HTML::WikiConverter;
my $wc = new HTML::WikiConverter( dialect => Oddmuse );
print $wc->html2wiki( $html );
This module contains rules for converting HTML into Oddmuse markup. This dialect module supports most of Oddmuses text formatting rules described at [1], notably:
* bold, strong, italic, emphasized, and underlined text
* paragraph blocks
* external images
* internal and external links
* unordered and ordered lists
* tables [2]
[1] http://www.oddmuse.org/cgi-bin/wiki/Text_Formatting_Rules
[2] http://www.oddmuse.org/cgi-bin/wiki/Table_Markup_Extension
Download (0.006MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
HTML Redemption Language 0.5
HTML Redemption Language, or HRL for short, is an HTML-preprocessor. more>>
HTML Redemption Language, or HRL for short, is an HTML-preprocessor. Its basically a macro package, with built-in Python scripting.
It redeems HTML by adding useful tags such as < include >, < macro >, < if >, and < python >. The last tag allows the web site designer to embed Python "scriptlets" in the HRL source to perform complex preprocessing tasks.
HRL is a preprocessor, designed to be invoked manually by the user to generate the web site. It is not fast enough to generate web pages on the fly. A comparable package is hsc.
<<lessIt redeems HTML by adding useful tags such as < include >, < macro >, < if >, and < python >. The last tag allows the web site designer to embed Python "scriptlets" in the HRL source to perform complex preprocessing tasks.
HRL is a preprocessor, designed to be invoked manually by the user to generate the web site. It is not fast enough to generate web pages on the fly. A comparable package is hsc.
Download (0.034MB)
Added: 2006-11-16 License: GPL (GNU General Public License) Price:
1072 downloads
Free Music Instrument Tuner 0.96.4
Free Music Instrument Tuner is a musical instrument tunning application. more>>
Free Music Instrument Tuner is a musical instrument tunning application.
Main features:
- Error history
- Volume history
- Wave-length shape
- Harmonics ratio (Formants)
- Microtonal tuning (with Scala file support)
- ALSA support
- JACK support
- Translations for: francais
<<lessMain features:
- Error history
- Volume history
- Wave-length shape
- Harmonics ratio (Formants)
- Microtonal tuning (with Scala file support)
- ALSA support
- JACK support
- Translations for: francais
Download (0.22MB)
Added: 2006-02-03 License: GPL (GNU General Public License) Price:
1391 downloads
Common Music 1.0.2
Common Music (CM) is an object-oriented music composition environment. more>>
Common Music (CM) is an object-oriented music composition environment.
Common Music produces sound by transforming a high-level representation of musical structure into a variety of control protocols for sound synthesis and display.
<<lessCommon Music produces sound by transforming a high-level representation of musical structure into a variety of control protocols for sound synthesis and display.
Download (0.60MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
832 downloads
HTML Entity Based Codepage Inference 0.01
HEBCI is a technique that allows a Web form handler to transparently detect the character set with which its data was encoded. more>> <<less
Download (0.005MB)
Added: 2005-07-05 License: GPL (GNU General Public License) Price:
1575 downloads
DVD Home Video Project 0.4.0.1
DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a DVD. more>>
DVD Home Video Project is a tool that provides a simple, quick way to transform video on a DV camcorder into a fully functional DVD, including a menu with optional background images and music.
<<less Download (0.18MB)
Added: 2007-01-14 License: GPL (GNU General Public License) Price:
1017 downloads
HTML::BBReverse 0.07
HTML::BBReverse is a Perl module to convert HTML to BBCode and back. more>>
HTML::BBReverse is a Perl module to convert HTML to BBCode and back.
SYNOPSIS
use HTML::BBReverse
my $bbr = HTML::BBReverse->new();
# convert BBCode into HTML
my $html = $bbr->parse($bbcode);
# convert generated HTML back to BBCode
my $bbcode = $bbr->reverse($html);
HTML::BBReverse is a pure perl module for converting BBCode to HTML and is able to convert the generated HTML back to BBCode.
And why would you want to reverse the generated HTML? Well, when you have a nice dynamic website where you and/or visitors can post messages, and in those messages BBCode is used for markup. In normal cases, your website has a lot more pageviews than edits, and saving all those messages as HTML will be a lot faster than saving them as the original BBCode and parsing them to HTML for every visit.
So now all BBCode gets converted to HTML before it will be saved, but what if you want to edit a message? Just reverse the generated HTML back to BBCode, edit your message, and save it as HTML again.
<<lessSYNOPSIS
use HTML::BBReverse
my $bbr = HTML::BBReverse->new();
# convert BBCode into HTML
my $html = $bbr->parse($bbcode);
# convert generated HTML back to BBCode
my $bbcode = $bbr->reverse($html);
HTML::BBReverse is a pure perl module for converting BBCode to HTML and is able to convert the generated HTML back to BBCode.
And why would you want to reverse the generated HTML? Well, when you have a nice dynamic website where you and/or visitors can post messages, and in those messages BBCode is used for markup. In normal cases, your website has a lot more pageviews than edits, and saving all those messages as HTML will be a lot faster than saving them as the original BBCode and parsing them to HTML for every visit.
So now all BBCode gets converted to HTML before it will be saved, but what if you want to edit a message? Just reverse the generated HTML back to BBCode, edit your message, and save it as HTML again.
Download (0.009MB)
Added: 2006-08-10 License: Perl Artistic License Price:
676 downloads
HTML::Sanitizer 0.04
HTML::Sanitizer is a HTML Sanitizer. more>>
HTML::Sanitizer is a HTML Sanitizer.
SYNOPSIS
my $safe = new HTML::Sanitizer;
$safe->permit_only(
qw/ strong em /,
a => {
href => qr/^(?:http|ftp):/,
title => 1,
},
img => {
src => qr/^(?:http|ftp):/,
alt => 1,
},
b => HTML::Element->new(strong),
);
$sanitized = $safe->filter_html_fragment($evil_html);
# or
my $tree = HTML::TreeBuilder->new->parse_file($filename);
$safe->sanitize_tree($tree);
ABSTRACT
This module acts as a filter for HTML. It is not a validator, though it might be possible to write a validator-like tool with it. Its intended to strip out unwanted HTML elements and attributes and leave you with non-dangerous HTML code that you should be able to trust.
<<lessSYNOPSIS
my $safe = new HTML::Sanitizer;
$safe->permit_only(
qw/ strong em /,
a => {
href => qr/^(?:http|ftp):/,
title => 1,
},
img => {
src => qr/^(?:http|ftp):/,
alt => 1,
},
b => HTML::Element->new(strong),
);
$sanitized = $safe->filter_html_fragment($evil_html);
# or
my $tree = HTML::TreeBuilder->new->parse_file($filename);
$safe->sanitize_tree($tree);
ABSTRACT
This module acts as a filter for HTML. It is not a validator, though it might be possible to write a validator-like tool with it. Its intended to strip out unwanted HTML elements and attributes and leave you with non-dangerous HTML code that you should be able to trust.
Download (0.009MB)
Added: 2007-07-11 License: Perl Artistic License Price:
835 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 rulez d00d music video 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