#!/usr/bin/env python ### ### READ ME! ### ### This is an example file to help you define a new ### server that uses the standard CGI method of accepting ### new URLs. Just change the text in quotes as neccesary. ### If you are stumped as to what to put, then view the HTML ### source on the site's URL submission page. ### ### Copy this file to yourcoolserver.def and edit it. Any line ### that starts with a # is a comment and will be ignored. ### config = Configuration() ### ### CONFIGURE THIS SERVER STARTING HERE ### # This identifying name is used throughout Pagecast config.name = "Infoseek" config.mailto = "www-request@infoseek.com" config.subject = "URL Submission" ### ### NO USER-SERVICEABLE PARTS BELOW ### import generic, serverbase # make sure we are using a unique name config.name = serverbase.FindUniqueName(ServerRegister, config.name) ServerRegister[config.name] = serverbase.ThreadBase(G, config.name, generic.GenericMail(G, config.name, config))