keywords
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 298
B::Keywords 1.06
B::Keywords is a Perl module that contains lists of reserved barewords and symbol names. more>>
B::Keywords is a Perl module that contains lists of reserved barewords and symbol names.
SYNOPSIS
use B::Keywords qw( @Symbols Barewords );
print join "n", @Symbols,
@Barewords;
B::Keywords supplies seven arrays of keywords: @Scalars, @Arrays, @Hashes, @Filehandles, @Symbols, @Functions, and @Barewords. The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes, and @Filehandles. Similarly, @Barewords adds a few non-function keywords and operators to the @Functions array.
All additions and modifications are welcome.
DATA
@Scalars
@Arrays
@Hashes
@Filehandles
@Functions
The above are lists of variables, special file handles, and built in functions.
@Symbols
This is just the combination of all of the above: variables, file handles, and functions.
@Barewords
This is a list of other special keywords in perl including operators and all the control structures.
<<lessSYNOPSIS
use B::Keywords qw( @Symbols Barewords );
print join "n", @Symbols,
@Barewords;
B::Keywords supplies seven arrays of keywords: @Scalars, @Arrays, @Hashes, @Filehandles, @Symbols, @Functions, and @Barewords. The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes, and @Filehandles. Similarly, @Barewords adds a few non-function keywords and operators to the @Functions array.
All additions and modifications are welcome.
DATA
@Scalars
@Arrays
@Hashes
@Filehandles
@Functions
The above are lists of variables, special file handles, and built in functions.
@Symbols
This is just the combination of all of the above: variables, file handles, and functions.
@Barewords
This is a list of other special keywords in perl including operators and all the control structures.
Download (0.006MB)
Added: 2007-06-25 License: Perl Artistic License Price:
851 downloads
Search::Tools::Keywords 0.06
Search::Tools::Keywords is a Perl module to extract keywords from a search query. more>>
Search::Tools::Keywords is a Perl module to extract keywords from a search query.
SYNOPSIS
use Search::Tools::Keywords;
use Search::Tools::RegExp;
my $query = the quick fox color:brown and "lazy dog" not jumped;
my $kw = Search::Tools::Keywords->new(
stopwords => the,
and_word => and,
or_word => or,
not_word => not,
stemmer => &your_stemmer_here,
ignore_first_char => +-,
ignore_last_char => ,
word_characters => $Search::Tools::RegExp::WordChar,
debug => 0,
phrase_delim => ",
charset => iso-8859-1,
lang => en_US,
locale => en_US.iso-8859-1
);
my @words = $kw->extract( $query );
# returns:
# quick
# fox
# brown
# lazy dog
Do not confuse this class with Search::Tools::RegExp::Keywords.
Search::Tools::Keywords extracts the meaningful words from a search query. Since many search engines support a syntax that includes special characters, boolean words, stopwords, and fields, search queries can become complicated. In order to separate the wheat from the chafe, the supporting words and symbols are removed and just the actual search terms (keywords) are returned.
This class is used internally by Search::Tools::RegExp. You probably dont need to use it directly. But if you do, read on.
<<lessSYNOPSIS
use Search::Tools::Keywords;
use Search::Tools::RegExp;
my $query = the quick fox color:brown and "lazy dog" not jumped;
my $kw = Search::Tools::Keywords->new(
stopwords => the,
and_word => and,
or_word => or,
not_word => not,
stemmer => &your_stemmer_here,
ignore_first_char => +-,
ignore_last_char => ,
word_characters => $Search::Tools::RegExp::WordChar,
debug => 0,
phrase_delim => ",
charset => iso-8859-1,
lang => en_US,
locale => en_US.iso-8859-1
);
my @words = $kw->extract( $query );
# returns:
# quick
# fox
# brown
# lazy dog
Do not confuse this class with Search::Tools::RegExp::Keywords.
Search::Tools::Keywords extracts the meaningful words from a search query. Since many search engines support a syntax that includes special characters, boolean words, stopwords, and fields, search queries can become complicated. In order to separate the wheat from the chafe, the supporting words and symbols are removed and just the actual search terms (keywords) are returned.
This class is used internally by Search::Tools::RegExp. You probably dont need to use it directly. But if you do, read on.
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1102 downloads
Lingua::EN::Keywords::Yahoo 0.5
Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API. more>>
Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API.
SYNOPSIS
use Lingua::EN::Keywords::Yahoo qw(keywords);
my @keywords = keywords($text);
or
my @keywords = keywords($text, $query);
Where $query is an optional term to help with the extraction process.
This uses the Yahoo! keywords API to extract keywords from text.
To quote the Yahoo! page: "The Term Extraction Web Service provides a list of significant words or phrases extracted from a larger content."
<<lessSYNOPSIS
use Lingua::EN::Keywords::Yahoo qw(keywords);
my @keywords = keywords($text);
or
my @keywords = keywords($text, $query);
Where $query is an optional term to help with the extraction process.
This uses the Yahoo! keywords API to extract keywords from text.
To quote the Yahoo! page: "The Term Extraction Web Service provides a list of significant words or phrases extracted from a larger content."
Download (0.003MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
Apache::CustomKeywords 0.03
Apache::CustomKeywords is a customizable toolbar for MSIE. more>>
Apache::CustomKeywords is a customizable toolbar for MSIE.
SYNOPSIS
# 1. As an Apache proxy
Listen 8888
< VirtualHost *:8888 >
PerlTransHandler +Apache::CustomKeywords
CustomKeyword cpan http://search.cpan.org/search?mode=module&query=%s
CustomKeyword perldoc http://perldoc.com/cgi-bin/htsearch?words=%s&restrict=perl5.8.0
CustomKeyword google http://www.google.com/search?q=%s
< /VirtualHost >
# 2. As a pseudo-MSN
< Location /response.asp >
SetHandler perl-script
PerlHandler +Apache::CustomKeywords
CustomKeyword cpan http://search.cpan.org/search?mode=module&query=%s
# ...
< /Location >
Apache::CustomKeywords is a customizable proxy/webapp to change your MSIEs Location box to your favourite toolbar!
See http://www.mozilla.org/docs/end-user/keywords.html for what Custom Keywords means in Mozilla. This module enables Custom Keywords in MSIE.
With CustomKeyword settings shown in "SYNOPSIS", you type cpan CustomKeywords or google blah blah in your browsers Location: box, then you will be redirected to the page you wanna go to!
If your command is not recognized by this module, the first CustomKeyword entry is used as default.
Heres the way this handler works:
- Type "foo bar" in Location: box
- MSIE sends request to auto.search.msn.com
- Apache::CustomKeywords detects it and redirects browser to your favourite search engine.
<<lessSYNOPSIS
# 1. As an Apache proxy
Listen 8888
< VirtualHost *:8888 >
PerlTransHandler +Apache::CustomKeywords
CustomKeyword cpan http://search.cpan.org/search?mode=module&query=%s
CustomKeyword perldoc http://perldoc.com/cgi-bin/htsearch?words=%s&restrict=perl5.8.0
CustomKeyword google http://www.google.com/search?q=%s
< /VirtualHost >
# 2. As a pseudo-MSN
< Location /response.asp >
SetHandler perl-script
PerlHandler +Apache::CustomKeywords
CustomKeyword cpan http://search.cpan.org/search?mode=module&query=%s
# ...
< /Location >
Apache::CustomKeywords is a customizable proxy/webapp to change your MSIEs Location box to your favourite toolbar!
See http://www.mozilla.org/docs/end-user/keywords.html for what Custom Keywords means in Mozilla. This module enables Custom Keywords in MSIE.
With CustomKeyword settings shown in "SYNOPSIS", you type cpan CustomKeywords or google blah blah in your browsers Location: box, then you will be redirected to the page you wanna go to!
If your command is not recognized by this module, the first CustomKeyword entry is used as default.
Heres the way this handler works:
- Type "foo bar" in Location: box
- MSIE sends request to auto.search.msn.com
- Apache::CustomKeywords detects it and redirects browser to your favourite search engine.
Download (0.003MB)
Added: 2006-11-29 License: Perl Artistic License Price:
1059 downloads
Search::Tools::RegExp::Keywords 0.06
Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords. more>>
Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords.
SYNOPSIS
my $regexp = Search::Tools::RegExp->new();
my $kw = $regexp->build(the quick brown fox);
for my $w ($kw->keywords)
{
my $r = $kw->re( $w );
}
Search::Tools::RegExp::Keywords provides access to the regular expressions for a query keyword.
A Search::Tools::RegExp::Keywords object is returned by the Search::Tools::RegExp build() method. This class is typically not used in isolation.
<<lessSYNOPSIS
my $regexp = Search::Tools::RegExp->new();
my $kw = $regexp->build(the quick brown fox);
for my $w ($kw->keywords)
{
my $r = $kw->re( $w );
}
Search::Tools::RegExp::Keywords provides access to the regular expressions for a query keyword.
A Search::Tools::RegExp::Keywords object is returned by the Search::Tools::RegExp build() method. This class is typically not used in isolation.
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1101 downloads
KeywordXS 0.2
KeywordXS is a small tool to get keywords for specified search terms. more>>
KeywordXS is a small tool to get keywords for specified search terms. KeywordXS will simply query a given search term and display the associated results.
It uses the Internet so that all the keywords are top actual.
<<lessIt uses the Internet so that all the keywords are top actual.
Download (0.043MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 downloads
PloneKeywordExplorer 0.2
PloneKeywordExplorer provides an alternative to the usual Plone search. more>>
PloneKeywordExplorer provides an alternative to the usual Plone search. Searches are restricted to combinations of keywords.
The search is iterative. Keywords can be added and removed from the search at any time, allowing the user to conveniently explore the document space. The result set can be narrowed down to a few documents in a few steps.
PloneKeywordExplorer depends on well-chosen keywords, and supports finding documents that dont have keywords associated. When you click on the [no keywords], you get a list of all documents that do not have keywords. You can browse through this list and start annotating your documents.
<<lessThe search is iterative. Keywords can be added and removed from the search at any time, allowing the user to conveniently explore the document space. The result set can be narrowed down to a few documents in a few steps.
PloneKeywordExplorer depends on well-chosen keywords, and supports finding documents that dont have keywords associated. When you click on the [no keywords], you get a list of all documents that do not have keywords. You can browse through this list and start annotating your documents.
Download (0.061MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Keyword Marketing Buddy 2.3
Keyword Marketing Buddy is a great tool that lets you compare the popularity of several different keyword groups at once. more>>
Keyword Marketing Buddy is a great tool that lets you compare the popularity of several different keyword groups at once.
Enter in a few general keywords, and Keyword Marketing Buddy will generate a list of keywords related to the original keywords and order them according to popularity. Keyword Marketing Buddy will even tell you how many searches each keyword gets a month.
Main features:
- Keyword Marketing Buddy is easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- The user gives Keyword Marketing Buddy a list of keywords, and the Buddy automatically generates a list of related keywords. For virtually no work at all, you get a lot of great ideas for other keywords you might want to market to.
- Use Keyword Marketing Buddy for your own research, or add it to your web site for added functionality for your visitors.
- Each search produces an easy-to-copy list of comma-separated keyword, popularity pairs, so you can import your lists to a spreadsheet, or imort it into our Keyword Market Value Analyzer.
- Set the maximum number of keywords that can be entered in at one time.
<<lessEnter in a few general keywords, and Keyword Marketing Buddy will generate a list of keywords related to the original keywords and order them according to popularity. Keyword Marketing Buddy will even tell you how many searches each keyword gets a month.
Main features:
- Keyword Marketing Buddy is easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- The user gives Keyword Marketing Buddy a list of keywords, and the Buddy automatically generates a list of related keywords. For virtually no work at all, you get a lot of great ideas for other keywords you might want to market to.
- Use Keyword Marketing Buddy for your own research, or add it to your web site for added functionality for your visitors.
- Each search produces an easy-to-copy list of comma-separated keyword, popularity pairs, so you can import your lists to a spreadsheet, or imort it into our Keyword Market Value Analyzer.
- Set the maximum number of keywords that can be entered in at one time.
Download (0.005MB)
Added: 2006-03-01 License: Freeware Price:
1333 downloads
Yahoo::Marketing::Keyword 0.08
Yahoo::Marketing::Keyword is an object to represent a Yahoo Marketing Keyword. more>>
Yahoo::Marketing::Keyword is an object to represent a Yahoo Marketing Keyword.
SYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
METHODS
new
Creates a new instance
get/set methods
ID
adGroupID
advancedMatchON
alternateText
sponsoredSearchMaxBid
status
text
update
url
watchON
get (read only) methods
accountID
canonicalSearchText
createTimestamp
deleteTimestamp
editorialStatus
lastUpdateTimestamp
phraseSearchText
sponsoredSearchMaxBidTimestamp
<<lessSYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
METHODS
new
Creates a new instance
get/set methods
ID
adGroupID
advancedMatchON
alternateText
sponsoredSearchMaxBid
status
text
update
url
watchON
get (read only) methods
accountID
canonicalSearchText
createTimestamp
deleteTimestamp
editorialStatus
lastUpdateTimestamp
phraseSearchText
sponsoredSearchMaxBidTimestamp
Download (0.066MB)
Added: 2006-12-08 License: Perl Artistic License Price:
1050 downloads
Kwiki::Podcas 0.01
Kwiki::Podcast is a Perl module for podcasting in a Kwiki way. more>>
Kwiki::Podcast is a Perl module for podcasting in a Kwiki way.
INSTALLATION
kwiki -install Kwiki::Podcast
This plugin offer an Kwiki action to generate podcast rss. User simply put down a mp3 URL in a page, and leave the rest to Kwiki. For example, you only have to write something like:
My Podcast Try. This is my first podcast song, please
take a look at it.
http://foobar.org/podcast/first.mp3
With proper user preference, your podcast will have proper publisher tag too.
Subscribe can address your podcast RSS URL from Kwikis toolbar.
CONFIGURATION
This plugin offer 3 configuratino keywords:
podcast_title
General title for you Podcasting
podcast_publisher
Your name
podcast_description
General description for this podcast.
<<lessINSTALLATION
kwiki -install Kwiki::Podcast
This plugin offer an Kwiki action to generate podcast rss. User simply put down a mp3 URL in a page, and leave the rest to Kwiki. For example, you only have to write something like:
My Podcast Try. This is my first podcast song, please
take a look at it.
http://foobar.org/podcast/first.mp3
With proper user preference, your podcast will have proper publisher tag too.
Subscribe can address your podcast RSS URL from Kwikis toolbar.
CONFIGURATION
This plugin offer 3 configuratino keywords:
podcast_title
General title for you Podcasting
podcast_publisher
Your name
podcast_description
General description for this podcast.
Download (0.008MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1074 downloads
Keyword Market Value Analyzer 1.1
Keyword Market Value Analyzer allows you to compile a database a keywords based on a particular keyword subject. more>>
Keyword Market Value Analyzer allows you to compile a database a keywords based on a particular keyword subject, and to compare their popularity with the highest amount advertisers are willing to pay to advertise for the keyword.
The result of Keyword Market Value Analyzer is a really good idea about how much money-making potential there is for the keyword.
Main features:
- Keyword Market Value Analyzer is easy to install. Just unzip, install the database tables and upload.
- Create different keyword subject groups. The groups share the same keyword data, so you can leverage the research youve done for one keyword group for another, related keyword group.
- Easily browse keywords based on market value, highest bid, or most popular.
- Makes keyword market value research as easy as it can be!
<<lessThe result of Keyword Market Value Analyzer is a really good idea about how much money-making potential there is for the keyword.
Main features:
- Keyword Market Value Analyzer is easy to install. Just unzip, install the database tables and upload.
- Create different keyword subject groups. The groups share the same keyword data, so you can leverage the research youve done for one keyword group for another, related keyword group.
- Easily browse keywords based on market value, highest bid, or most popular.
- Makes keyword market value research as easy as it can be!
Download (0.10MB)
Added: 2006-02-28 License: Freeware Price:
1335 downloads
Search::Tools::RegExp::Keyword 0.06
Search::Tools::RegExp::Keyword is a Perl module to access regular expressions for a keyword. more>>
Search::Tools::RegExp::Keyword is a Perl module to access regular expressions for a keyword.
SYNOPSIS
my $regexp = Search::Tools::RegExp->new();
my $kw = $regexp->build(the quick brown fox);
for my $w ($kw->keywords)
{
my $re = $kw->re( $w ); # $re is S::T::R::Keyword object
# each of these are regular expressions ... suitable for framing
my $h = $re->html;
my $p = $re->plain;
unless ( $re->word =~ m/^$h$/ )
{
die "something terribly wrong with the html regexp: $h";
}
unless ( $re->word =~ m/^$p$/ )
{
die "something terribly wrong with the plain regexp: $p";
}
}
Search::Tools::RegExp::Keyword provides access to the regular expressions for a query keyword.
<<lessSYNOPSIS
my $regexp = Search::Tools::RegExp->new();
my $kw = $regexp->build(the quick brown fox);
for my $w ($kw->keywords)
{
my $re = $kw->re( $w ); # $re is S::T::R::Keyword object
# each of these are regular expressions ... suitable for framing
my $h = $re->html;
my $p = $re->plain;
unless ( $re->word =~ m/^$h$/ )
{
die "something terribly wrong with the html regexp: $h";
}
unless ( $re->word =~ m/^$p$/ )
{
die "something terribly wrong with the plain regexp: $p";
}
}
Search::Tools::RegExp::Keyword provides access to the regular expressions for a query keyword.
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1102 downloads
WWW::Yahoo::KeywordExtractor 0.04
WWW::Yahoo::KeywordExtractor is a Perl module to get keywords from summary text via the Yahoo API. more>>
WWW::Yahoo::KeywordExtractor is a Perl module to get keywords from summary text via the Yahoo API.
SYNOPSIS
This module will submit content to the Yahoo keyword extractor API to return a list of relevant keywords.
use WWW::Yahoo::KeywordExtractor;
my $yke = WWW::Yahoo::KeywordExtractor->new();
my $keywords = $yke->extract(content => My wife and I love to cook together.
Carolyn surprises me with new things to love about her everyday.);
print join q{}. Keyword 1: , $keywords->[0], "n";
SUBROUTINES/METHOD
new
The new subroutine creates and returns a WWW:Yahoo::KeywordExtractor object.
extract
This method will return a list of keywords based on sample data. It will die if there is no content arg given.
<<lessSYNOPSIS
This module will submit content to the Yahoo keyword extractor API to return a list of relevant keywords.
use WWW::Yahoo::KeywordExtractor;
my $yke = WWW::Yahoo::KeywordExtractor->new();
my $keywords = $yke->extract(content => My wife and I love to cook together.
Carolyn surprises me with new things to love about her everyday.);
print join q{}. Keyword 1: , $keywords->[0], "n";
SUBROUTINES/METHOD
new
The new subroutine creates and returns a WWW:Yahoo::KeywordExtractor object.
extract
This method will return a list of keywords based on sample data. It will die if there is no content arg given.
Download (0.004MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
Google::Adwords::ReportJob 0.6.0
Google::Adwords::ReportJob is a Google Adwords ReportJob Object. more>>
Google::Adwords::ReportJob is a Google Adwords ReportJob Object.
This object is used with the ReportService module
METHODS
Mutators (read/write)
- adGroups
- adGroupStatuses
- adWordsType
- aggregationType
- campaigns
- clientEmails
- crossClient
- customOptions
- endDay
- id
- includeZeroImpression
- keywords
- keywordStatuses
- keywordType
- name
- startDay
- status
<<lessThis object is used with the ReportService module
METHODS
Mutators (read/write)
- adGroups
- adGroupStatuses
- adWordsType
- aggregationType
- campaigns
- clientEmails
- crossClient
- customOptions
- endDay
- id
- includeZeroImpression
- keywords
- keywordStatuses
- keywordType
- name
- startDay
- status
Download (0.041MB)
Added: 2006-11-23 License: Perl Artistic License Price:
1065 downloads
Yahoo::Marketing::ForecastKeywordResponse 0.08
Yahoo::Marketing::ForecastKeywordResponse is an object to returns forecasted results for a set of keywords. more>>
Yahoo::Marketing::ForecastKeywordResponse is an object to returns forecasted results for a set of keywords.
SYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
new
Creates a new instance
METHODS
get/set methods
customizedResponseByAdGroup
defaultResponseByAdGroup
landscapeByAdGroup
get (read only) methods
<<lessSYNOPSIS
See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.
new
Creates a new instance
METHODS
get/set methods
customizedResponseByAdGroup
defaultResponseByAdGroup
landscapeByAdGroup
get (read only) methods
Download (0.066MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 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 keywords 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