PowerDNS Administrator 1.1.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News PowerDNS Administrator 1.1.4 (Default branch)
# 1  
Old 02-10-2008
PowerDNS Administrator 1.1.4 (Default branch)

Image PDNS-Admin, or PowerDNS Administrator, is a Web-based script which aids in administering domains and records for the PowerDNS SQL name server software. PDNS-Admin is targeted mainly toward individual domain owners, but should be robust enough to be used in a larger capacity by an ISP or other big host. For those who may not know, PowerDNS is a domain name server application, much like BIND, but offering alternative backends for the storage of domain information. License: GNU General Public License v2 Changes:
A bug where PTR records were being added or edited incorrectly was fixed. A bad template section that dealt with database prefixes, which the package does not use, was removed. An undefined indexes error in the error library file was corrected. A new user module was added to list the users in the system along with their domain information. A running total of users and domains will now be shown on the main screen below the navigation menu. Support was added for IPv6 AAAA records. Support was added for up to 8 nameservers to be specified.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Module::Install::Admin(3pm)				User Contributed Perl Documentation			       Module::Install::Admin(3pm)

NAME
Module::Install::Admin - Author-side manager for Module::Install SYNOPSIS
In a Module::Install extension module: sub extension_method { my $self = shift; $self->admin->some_method(@args); } As an one-liner: % perl "-MModule::Install::Admin" -e'&some_method(@args);' The two snippets above are really shorthands for $some_obj->some_method(@args) where $some_obj is the singleton object of a class under the "Module::Install::Admin::*" namespace that provides the method "some_method". See "METHODS" for a list of built-in methods. DESCRIPTION
This module implements the internal mechanism for initializing, including and managing extensions, and should only be of interest to extension developers; it is never included under a distribution's inc/ directory, nor are any of the Module::Install::Admin::* extensions. For normal usage of Module::Install, please see Module::Install and "COOKBOOK / EXAMPLES" in Module::Install instead. Bootstrapping When someone runs a Makefile.PL that has "use inc::Module::Install", and there is no inc/ in the current directory, Module::Install will load this module bootstrap itself, through the steps below: o First, Module/Install.pm is POD-stripped and copied from @INC to inc/. This should only happen on the author's side, never on the end- user side. o Reload inc/Module/Install.pm if the current file is somewhere else. This ensures that the included version of inc/Module/Install.pm is always preferred over the installed version. o Look at inc/Module/Install/*.pm and load all of them. o Set up a "main::AUTOLOAD" function to delegate missing function calls to "Module::Install::Admin::load" -- again, this should only happen at the author's side. o Provide a "Module::Install::purge_self" function for removing included files under inc/. METHODS
SEE ALSO
Module::Install AUTHORS
Audrey Tang <autrijus@autrijus.org> COPYRIGHT
Copyright 2003, 2004 by Audrey Tang <autrijus@autrijus.org>. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-03-01 Module::Install::Admin(3pm)