view
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1624
@1 Know Your Events 1.0
Let your site visitors view or search events posted by you. more>> Let your site visitors view or search events posted by you. Support image upload.<<less
Download (12KB)
Added: 2009-04-11 License: Freeware Price: Free
195 downloads
Yellowpipe Lynx Viewer 1.2.1
RightLynx, a Firefox extension, displays a Lynx view of a web page via right-click, toolbar button or Tool menu. With just one click and without leavi... more>> <<less
Download (25KB)
Added: 2009-04-07 License: Freeware Price: Free
199 downloads
Depeche View 1.3.6
Laden Sie alle Textdateien eines Verzeichnisbaums in einem Fenster, fliegen Sie drüber und durchsuchen Sie alles mit sehr wenigen Mausklicks und Tast... more>> <<less
Download (1008KB)
Added: 2009-04-05 License: Freeware Price: Free
267 downloads
Date Picker/Calendar 1.0.82
Date Picker/Calendar offers you a free and very useful Firefox extention which adds quick popup allowing you to view a calendar or pick a date. more>> <<less
Added: 2008-08-15 License: MPL Price: FREE
1 downloads
Tree::Simple::View::HTML 0.16
Tree::Simple::View::HTML is a Perl class for viewing Tree::Simple hierarchies in HTML. more>>
Tree::Simple::View::HTML is a Perl class for viewing Tree::Simple hierarchies in HTML.
SYNOPSIS
use Tree::Simple::View::HTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::HTML->new($tree);
## more complex examples
# use the CSS properties
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
));
# use the CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
));
# mix the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
}
));
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
<<lessSYNOPSIS
use Tree::Simple::View::HTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::HTML->new($tree);
## more complex examples
# use the CSS properties
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
));
# use the CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
));
# mix the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::HTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
}
));
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
Download (0.022MB)
Added: 2007-08-21 License: Perl Artistic License Price:
795 downloads
Tree::Simple::View::DHTML 0.16
Tree::Simple::View::DHTML is a Perl class for viewing Tree::Simple hierarchies in DHTML. more>>
Tree::Simple::View::DHTML is a Perl class for viewing Tree::Simple hierarchies in DHTML.
SYNOPSIS
use Tree::Simple::View::DHTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::DHTML->new($tree);
## more complex examples
# using the CSS properties
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
link_css => "text-decoration: none;"
));
# using the CSS classes
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
link_css_class => "myListItemLinkClass"
));
# mixing the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
link_css_class => "myListItemLinkClass"
# format complex nodes with a function
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
},
# add a radio button element to the tree
# with the name of tree_id
radio_button => tree_id
));
# print out the javascript nessecary for the DHTML
# functionality of this tree
print $tree_view->javascript();
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
<<lessSYNOPSIS
use Tree::Simple::View::DHTML;
## a simple example
# use the defaults (an unordered list with no CSS)
my $tree_view = Tree::Simple::View::DHTML->new($tree);
## more complex examples
# using the CSS properties
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_type => "ordered",
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css => "font-family: courier; font-weight: bold",
link_css => "text-decoration: none;"
));
# using the CSS classes
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_css_class => "myListClass",
list_item_css_class => "myListItemClass",
expanded_item_css_class => "myExpandedListItemClass",
link_css_class => "myListItemLinkClass"
));
# mixing the CSS properties and CSS classes
my $tree_view = Tree::Simple::View::DHTML->new($tree => (
list_css => "list-style: circle;",
list_item_css => "font-family: courier;",
expanded_item_css_class => "myExpandedListItemClass",
link_css_class => "myListItemLinkClass"
# format complex nodes with a function
node_formatter => sub {
my ($tree) = @_;
return "" . $tree->getNodeValue()->description() . "";
},
# add a radio button element to the tree
# with the name of tree_id
radio_button => tree_id
));
# print out the javascript nessecary for the DHTML
# functionality of this tree
print $tree_view->javascript();
# print out the tree fully expanded
print $tree_view->expandAll();
# print out the tree expanded along a given path (see below for details)
print $tree_view->expandPath("Root", "Child", "GrandChild");
Download (0.022MB)
Added: 2007-08-21 License: Perl Artistic License Price:
794 downloads
iFLUX 0.0.1
iFLUX is a PHP Framework project based on Model-View-Controller MVC Desing Patern. more>>
iFLUX is a PHP Framework project based on Model-View-Controller MVC Desing Patern.
It uses AdoDB and other classes to implement the Model Layer, Smarty to implement the View Layer, and Fuse Box to do the Controller.
<<lessIt uses AdoDB and other classes to implement the Model Layer, Smarty to implement the View Layer, and Fuse Box to do the Controller.
Download (1.5MB)
Added: 2007-08-17 License: MPL (Mozilla Public License) Price:
802 downloads
aTunes 1.7.1
aTunes is an app to manage and play mp3 files. more>>
aTunes is an app to manage and play mp3 files.
Main features:
- Mp3 player
- Reads ID3v1, ID3v1.1 and ID3v2 tags (only essential information)
- Tag editor
- Show pictures of song: pictures inside ID3v2 tag, or in the same folder
- Load / save play list in m3u format
- Navigate through songs sorted by tag information or by folder
- Filters for fast find what you want
- Songs, albums or artists can be marked as favorites, and viewed through a special view
- Full view with all controls
- Simple view, with just essential controls
- Tiny view, to place window in a square of window
- Sticky borders for Simple and Tiny views
- Always on top property
- OSD (like amaroK)
- Five languages supported: english, spanish, french, german and portuguese
- State saved: repository, play list, last played song, shuffle, repeat, position in desktop, size, type of view...
<<lessMain features:
- Mp3 player
- Reads ID3v1, ID3v1.1 and ID3v2 tags (only essential information)
- Tag editor
- Show pictures of song: pictures inside ID3v2 tag, or in the same folder
- Load / save play list in m3u format
- Navigate through songs sorted by tag information or by folder
- Filters for fast find what you want
- Songs, albums or artists can be marked as favorites, and viewed through a special view
- Full view with all controls
- Simple view, with just essential controls
- Tiny view, to place window in a square of window
- Sticky borders for Simple and Tiny views
- Always on top property
- OSD (like amaroK)
- Five languages supported: english, spanish, french, german and portuguese
- State saved: repository, play list, last played song, shuffle, repeat, position in desktop, size, type of view...
Download (5.7MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
1627 downloads
Google Hacks 1.6
Google Hacks is a compact utility for different Google hacks, like a music search and a product key search. more>>
Google Hacks project is a compilation of carefully crafted Google searches that expose novel functionality from Googles search and map services.
For example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
<<lessFor example, you can use it to view a timeline of your search results, view a map, search for music, search for books, and perform many other specific kinds of searches.
Download (1.1MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
530 downloads
Trophy 1.1.5
Trophy project is an action car racing game. more>>
Trophy project is an action car racing game.
Trophy is an action car racing game for Linux. Its 2D (top-view) but aims to provide high quality graphics.
You can shoot, drop bombs, and drive against the other players.
<<lessTrophy is an action car racing game for Linux. Its 2D (top-view) but aims to provide high quality graphics.
You can shoot, drop bombs, and drive against the other players.
Download (8.9MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
820 downloads
Webmin Usermonitor 0.12a
Webmin Usermonitor is a Webmin module that allows you to view all connection based on Telnet / SSH and Samba to your System. more>>
Webmin Usermonitor is a Webmin module that allows you to view all connection based on Telnet / SSH and Samba to your System. This module will be able to kill the connection or send a message to the user, who use it.
<<less Download (0.019MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
815 downloads
TorK 0.18 Beta
TorK project is a Tor Controller for KDE. more>>
TorK project is a Tor Controller for KDE.
TorK allows you to configure, run and update Tor. It also allows you to view the Tor network and choose how you would like to interact with the network.
TorK is very much in an alpha state.
<<lessTorK allows you to configure, run and update Tor. It also allows you to view the Tor network and choose how you would like to interact with the network.
TorK is very much in an alpha state.
Download (0.75MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
BlockStop Proxy 2.0.3
BlockStop Proxy is a Firefox extension that allows you to view the current page or link using. more>>
BlockStop Proxy is a Firefox extension that allows you to view the current page or link using.
Adds a "View this page with BlockStop" or "Open Link Target with BlockStop" option to your Firefox right-click menu, depending on where you click. The BlockStop Proxy extension automatically encodes the target url to maintain anonymity.
<<lessAdds a "View this page with BlockStop" or "Open Link Target with BlockStop" option to your Firefox right-click menu, depending on where you click. The BlockStop Proxy extension automatically encodes the target url to maintain anonymity.
Download (0.034MB)
Added: 2007-07-30 License: MPL (Mozilla Public License) Price:
818 downloads
CustomizeGoogle 0.60
CustomizeGoogle is a Firefox extension that enhance Google search results. more>>
CustomizeGoogle is a Firefox extension that enhance Google search results by adding extra information (like links to Ask Jeeves, MSN, Yahoo etc) and removing unwanted information (like ads and spam).
All features are optional and easily configured from the options menu. View a short introduction movie at www.customizegoogle.com
<<lessAll features are optional and easily configured from the options menu. View a short introduction movie at www.customizegoogle.com
Download (0.23MB)
Added: 2007-07-23 License: MIT/X Consortium License Price:
825 downloads
Pod::POM::View::HTML::Filter 0.09
Pod::POM::View::HTML::Filter Perl module can use filters on sections of your pod documents. more>>
Pod::POM::View::HTML::Filter Perl module can use filters on sections of your pod documents.
SYNOPSIS
In your POD:
Some coloured Perl code:
=begin filter perl
# now in full colour!
$A++;
=end filter
=for filter=perl $A++; # this works too
This should read C :
=begin filter foo
bar foo bar
=end filter
In your code:
my $view = Pod::POM::View::HTML::Filter->new;
$view->add(
foo => {
code => sub { my $s = shift; $s =~ s/foo/bar/gm; $s },
# other options are available
}
);
my $pom = Pod::POM->parse_file( /my/pod/file );
$pom->present($view);
/* Perl colouring styles */ .c { color: #228B22;} /* comment */ .cm { color: #000000;} /* comma */ .co { color: #000000;} /* colon */ .h { color: #CD5555; font-weight:bold;} /* here-doc-target */ .hh { color: #CD5555; font-style:italic;} /* here-doc-text */ .i { color: #00688B;} /* identifier */ .j { color: #CD5555; font-weight:bold;} /* label */ .k { color: #8B008B; font-weight:bold;} /* keyword */ .m { color: #FF0000; font-weight:bold;} /* subroutine */ .n { color: #B452CD;} /* numeric */ .p { color: #000000;} /* paren */ .pd { color: #228B22; font-style:italic;} /* pod-text */ .pu { color: #000000;} /* punctuation */ .q { color: #CD5555;} /* quote */ .s { color: #000000;} /* structure */ .sc { color: #000000;} /* semicolon */ .v { color: #B452CD;} /* v-string */ .w { color: #000000;} /* bareword */ -->
The resulting HTML will look like this (modulo the stylesheet):
# now in full colour!
$A++;
$A++; # this works too
This should read bar bar bar:
bar bar bar
<<lessSYNOPSIS
In your POD:
Some coloured Perl code:
=begin filter perl
# now in full colour!
$A++;
=end filter
=for filter=perl $A++; # this works too
This should read C :
=begin filter foo
bar foo bar
=end filter
In your code:
my $view = Pod::POM::View::HTML::Filter->new;
$view->add(
foo => {
code => sub { my $s = shift; $s =~ s/foo/bar/gm; $s },
# other options are available
}
);
my $pom = Pod::POM->parse_file( /my/pod/file );
$pom->present($view);
/* Perl colouring styles */ .c { color: #228B22;} /* comment */ .cm { color: #000000;} /* comma */ .co { color: #000000;} /* colon */ .h { color: #CD5555; font-weight:bold;} /* here-doc-target */ .hh { color: #CD5555; font-style:italic;} /* here-doc-text */ .i { color: #00688B;} /* identifier */ .j { color: #CD5555; font-weight:bold;} /* label */ .k { color: #8B008B; font-weight:bold;} /* keyword */ .m { color: #FF0000; font-weight:bold;} /* subroutine */ .n { color: #B452CD;} /* numeric */ .p { color: #000000;} /* paren */ .pd { color: #228B22; font-style:italic;} /* pod-text */ .pu { color: #000000;} /* punctuation */ .q { color: #CD5555;} /* quote */ .s { color: #000000;} /* structure */ .sc { color: #000000;} /* semicolon */ .v { color: #B452CD;} /* v-string */ .w { color: #000000;} /* bareword */ -->
The resulting HTML will look like this (modulo the stylesheet):
# now in full colour!
$A++;
$A++; # this works too
This should read bar bar bar:
bar bar bar
Download (0.024MB)
Added: 2007-07-11 License: Perl Artistic License Price:
511 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 view 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