Hop 1.10.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Hop 1.10.0 (Default branch)
# 1  
Old 01-15-2009
Hop 1.10.0 (Default branch)

Hop is a new programming language designed for the Web 2.0. It is a higher-order language for programming interactive Web applications such as Web agendas, Web galleries, music players, etc. It can be viewed as a replacement for traditional graphical toolkits and is implemented as a Web server. It features an extensive set of widgets for programming fancy GUIs and an libraries for handling database access, network connections, parsing Wiki documents, and for supporting protocols and formats such as IMAP, iCal, EXIF, ID3, and XML. License: GNU General Public License (GPL) Changes:
This is a major release. Many new linguistics extensions, APIs, new Widgets, and new weblets were added. The client-side compiler is now faster. The Web broker is also faster. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Red Hat

traceroute missing hop

Hi, I am having some performance issues with my JBOSS application server and have noticed something strange in my traceroute. Can anyone explain the following output please? # traceroute 196.10.101.51 8080 traceroute to 196.10.101.51 (196.10.101.51), 30 hops max, 8080 byte packets ... (5 Replies)
Discussion started by: Duffs22
5 Replies

2. IP Networking

Traceroute doesn't show gateway as hop

I have a Linux server connected to the Internet like so: Server (66.77.88.130) -> /29 VLAN Gateway (66.77.88.129) -> Core Router (64.0.0.1) -> Internet If I run a traceroute from my server to an arbitrary site on the internet I get a result like this: # traceroute some-other-server... (2 Replies)
Discussion started by: ramnet
2 Replies
Login or Register to Ask a Question
Web::Simple::Deployment(3pm)				User Contributed Perl Documentation			      Web::Simple::Deployment(3pm)

NAME
Web::Simple::Deployment - various deployment options DESCRIPTION
This file documents common deployment methods for Web::Simple. If you feel one is missing, please ask in the IRC channel and we'll work with you to add it. CGI
The most basic deployment option is as a CGI script loading and running your Web::Simple-module: #!/usr/bin/env perl use Your::Web::Simple::App; Your::Web::Simple::App->run_if_script; Save that as script.cgi and your web server will handle it correctly. Plack-Server This works in with exactly the same code as CGI deployment. However instead of letting your web server load script.cgi, you run this on the command line: plackup script.cgi Self-contained CGI Sometimes your app is so small that you have only one or two tiny classes that you want to run as a CGI script. Web::Simple offers a helpful mechanism to achieve that. #!/usr/bin/env perl use Web::Simple 'HelloWorld'; # enables strictures and warnings for the file # additionally, HelloWorld is upgraded to a # Web::Simple application { package HelloWorld; sub dispatch_request { sub (GET) { [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world! It is a fine ' . HelloWorld::Helper->day ] ] }, sub () { [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ] } } } { package HelloWorld::Helper; use DateTime; sub day { return DateTime->now->day_name; } } HelloWorld->run_if_script; AUTHORS
See Web::Simple for authors. COPYRIGHT AND LICENSE
See Web::Simple for the copyright and license. perl v5.14.2 2012-05-07 Web::Simple::Deployment(3pm)