Ports Search

Results 12,48112,490 of 19,819 for %22HTTP Server%22.(0.009 seconds)
devel/Sub-Delete-1.00002 (Score: 9.2878623E-4)
Perl module enabling one to delete subroutines
This module provides one function, delete_sub, that deletes the subroutine whose name is passed to it. (To load the module without importing the function, write use Sub::Delete();.) This does more than simply undefine the subroutine in the manner of undef &foo, which leaves a stub that can trigger AUTOLOAD (and, consequently, won't work for deleting methods). The subroutine is completely obliterated from the symbol table (though there may be references to it elsewhere, including in compiled code).
devel/Role-Basic-0.13 (Score: 9.2878623E-4)
Just roles. Nothing else
Sometimes you want roles. You're not sure about Moose, Mouse, Moo and what was that damned Squirrel thing anyway? Then there's Class::Trait, but it has a funky syntax and the maintainer's deprecated it in favor of Moose::Role and you really don't care that it handles overloading, instance application or has a workaround for the SUPER:: bug. You think a meta-object protocol sounds nifty, but you don't understand it. Maybe you're not sure you want the syntactic sugar for object declaration. Maybe you've convinced your colleagues that roles are a good idea but they're leery of dragging in Moose (your author has had this happen more than once and heard of others making the same complaint). Sometimes you just want good old-fashioned roles which let you separate class responsibility from code reuse.
devel/Role-HasMessage-0.006 (Score: 9.2878623E-4)
Thing with a message method
Role::HasMessage is an extremely simple role. A class that includes Role::HasMessage is promising to provide a message method that returns a string summarizing the message or event represented by the object. It does not provide any actual behavior.
devel/Role-Identifiable-0.007 (Score: 9.2878623E-4)
Thing with a list of tags
Role::Identifiable::HasIdent is an incredibly simple role. It adds a required ident attribute that stores a simple string, meant to identify exceptions. Role::Identifiable::HasTags adds the ability for your class and its composed parts (roles, superclasses) as well as instances of it to contribute to a pool of tags describing each instance.
devel/Role-Tiny-2.000003 (Score: 9.2878623E-4)
Roles, like a nouvelle cusine portion size slice of Moose
Role composition can be thought of as much more clever and meaningful multiple inheritance. The basics of this implementation of roles is: - If a method is already defined on a class, that method will not be composed in from the role. - If a method that the role "requires" to be implemented is not implemented, role application will fail loudly. Unlike Class::C3, where the last class inherited from "wins," role composition is the other way around, where first wins. In a more complete system (see Moose) roles are checked to see if they clash. The goal of this is to be much simpler, hence disallowing composition of multiple roles at once.
devel/Rose-DateTime-0.540 (Score: 9.2878623E-4)
DateTime helper functions and objects
The Rose::DateTime::* modules provide a few convenience functions and objects for use with DateTime dates.
devel/Rose-Object-0.860 (Score: 9.2878623E-4)
Simple object base class
Rose::Object is a generic object base class. It provides very little functionality, but a healthy dose of convention.
devel/Router-R3-0.011001 (Score: 9.2878623E-4)
XS wrapper around a C library R3
R3 is an URL router library with high performance, thus, it's implemented in C. It compiles your route paths into a prefix trie. By using the constructed prefix trie in the start-up time, you can dispatch routes with efficiency.
devel/RunApp-0.13 (Score: 9.2878623E-4)
Generic module to run web-applications
RunApp streamlines the process for configuring applications that requires one or more web servers and/or other daemons, during development or deployment. It builds the config files required by the services from the $config hash, such as apache's httpd.conf.
devel/Sub-Install-0.928 (Score: 9.2878623E-4)
Install subroutines into packages easily
This module makes it easy to install subroutines into packages without the unsightly mess of no strict or typeglobs lying about where just anyone can see them.