» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with Perl + Library

SHTTPD - an embeddable Web server

SHTTPD is tiny, easy to use web server for Windows and UNIX. Ideal for web developers, web-based software demos (like PHP, Perl etc), quick file sharing, personal use. It also can be used as a library that provides web server functionality, to create web

opensource: del.icio.us tag/opensource

CPAN

library for perl.. like gems

W3C: Del.icio.us W3C Tags

cURL and libcurl

curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS and FILE. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload,...

wxWidgets: del.icio.us tag/wxwidgets

SWIG Tutorial

Пример обёртывания C/C++ библиотек для использования в скриптовых языках.

SWIG: del.icio.us tag/swig

thefreecountry.com: Free Programmers' Resources, Free Webmasters' Resources, Free Security Resources

Welcome to thefreecountry.com's collection of free programming resources, free webmasters' resources, free security resources and free utilities.

open-source: del.icio.us tag/open-source

IWL: A Perl widget library for the web

Viktor Kojouharov was sick of constantly having html code snippets inside his perl code. He was seeing too many projects where the code was a messy mixture of perl, html, and in some places, javascript. Since he is familiar with the Gtk+ toolkit he decided to make something similar targeted for the Web.

He ended up with IWL which is, in Viktors words:

basically a graphical toolkit, or widget library, much like Gtk+ or the ETK library for enlightenment. The main goal of this library is to create a full blown RIA, without the need to write html in your code. When I started working on it roughly a year and a half ago, there was nothing similar existed for Perl. By using the library where I work, it has so far mostly achieved its main objective (and has also proven to be an excellent subject for my diploma thesis :))

If you are a Perl developer who prefers writing apps in a toolkit style like below, then IWL may be fore you:

PERL:
  1.  
  2.     use IWL;
  3.    
  4.     # create the main container, and a few widgets
  5.     my $page = IWL::Page->new;
  6.     my $frame = IWL::Frame->new;
  7.     my $iconbox = IWL::Iconbox->new
  8.         (width => '800px', height => '600px');
  9.     my $button = IWL::Button->newFromStock
  10.         ('IWL_STOCK_CANCEL');
  11.     my %some_icon_info = ("foo.jpg" => 'foo', "bar.png" => 'bar');
  12.  
  13.     # Setting up the icons and adding them to the iconbox
  14.     foreach (keys %some_icon_info) {
  15.         my $icon = IWL::Iconbox::Icon->new;
  16.         $icon->setImage($_);
  17.         $icon->setText($some_icon_info{$_});
  18.         $icon->setDimensions('64px', '64px');
  19.         $icon->setSelected(1) if $_ == 'something';
  20.         $iconbox->appendIcon($icon);
  21.     }
  22.  
  23.     $page->appendMetaEquiv("Cache-control" => "no-cache");
  24.     $frame->setLabel("Frame label");
  25.     # Adding the children to their parents
  26.     $frame->appendChild($iconbox);
  27.     $frame->appendChild($button);
  28.     $page->appendChild($frame);
  29.  
  30.     # Finally printing the page
  31.     $page->print;
  32.  

Ajax: Ajaxian

Modules on CPAN alphabetically

List of perl modules Error-0.17008 is required for git-svn download and install using perl Makefile.PL && make && make install

git: del.icio.us tag/git

Page 1 | Next >>