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
SVN::Web::ConfigData(3pm)				User Contributed Perl Documentation				 SVN::Web::ConfigData(3pm)

NAME
SVN::Web::ConfigData - Configuration for SVN::Web SYNOPSIS
use SVN::Web::ConfigData; $value = SVN::Web::ConfigData->config('foo'); $value = SVN::Web::ConfigData->feature('bar'); @names = SVN::Web::ConfigData->config_names; @names = SVN::Web::ConfigData->feature_names; SVN::Web::ConfigData->set_config(foo => $new_value); SVN::Web::ConfigData->set_feature(bar => $new_value); SVN::Web::ConfigData->write; # Save changes DESCRIPTION
This module holds the configuration data for the "SVN::Web" module. It also provides a programmatic interface for getting or setting that configuration data. Note that in order to actually make changes, you'll have to have write access to the "SVN::Web::ConfigData" module, and you should attempt to understand the repercussions of your actions. METHODS
config($name) Given a string argument, returns the value of the configuration item by that name, or "undef" if no such item exists. feature($name) Given a string argument, returns the value of the feature by that name, or "undef" if no such feature exists. set_config($name, $value) Sets the configuration item with the given name to the given value. The value may be any Perl scalar that will serialize correctly using "Data::Dumper". This includes references, objects (usually), and complex data structures. It probably does not include transient things like filehandles or sockets. set_feature($name, $value) Sets the feature with the given name to the given boolean value. The value will be converted to 0 or 1 automatically. config_names() Returns a list of all the names of config items currently defined in "SVN::Web::ConfigData", or in scalar context the number of items. feature_names() Returns a list of all the names of features currently defined in "SVN::Web::ConfigData", or in scalar context the number of features. auto_feature_names() Returns a list of all the names of features whose availability is dynamically determined, or in scalar context the number of such features. Does not include such features that have later been set to a fixed value. write() Commits any changes from "set_config()" and "set_feature()" to disk. Requires write access to the "SVN::Web::ConfigData" module. AUTHOR
"SVN::Web::ConfigData" was automatically created using "Module::Build". "Module::Build" was written by Ken Williams, but he holds no authorship claim or copyright claim to the contents of "SVN::Web::ConfigData". perl v5.14.2 2012-06-11 SVN::Web::ConfigData(3pm)