# TaxonMatcher.config # ------------------- # Taxon Matcher configuration file # Note that this file is executed, and must therefore contain valid Perl syntax # (It is also a security risk - do not let anyone add arbitrary code to this file) # (To be replaced by a proper Perl config file package) # Version for production run $server= "localhost"; # Or other appropriate server $userName= "Put User Name Here"; # $password= "Put Password Here"; # $OS= "Linux"; # or "Windows"; # not used at present $user= "Richard"; # or "Luvie" or "Yuri"; # if "Luvie", change to MyISAM is attempted $driver= "MySQL"; # or "ODBC"; refers to the driver, not the DBMS (which is assumed to be MySQL) # LSID prefix fields (note that this must end with a colon ":") $prefixLSID= "urn:lsid:catalogueoflife.org:taxon:"; # LSID edition fields for the databases (without the preceding colon) @edition= qw(ac2005 ac2006 ac2007 ac2008 ac2009 ac2010 ); # ODBC DSN or MySQL database names @database= qw(CoL2005AC CoL2006AC CoL2007AC CoL2008AC CoL2009AC CoL2010AC ); # MySQL comparison database (and DSN) $taxonList= "CoLCTL"; # Name of file for logging; "" = no logging $logFileName= "TaxonMatcher-2005-20101002.log"; # Whether to empty the logging file; "y" = yes, "" = no $logFileClear= "y"; # Whether to show SQL in the logging file; "y" = yes, "" = no $logFileSql= "y"; # Subset of taxon names to be imported (for testing); "" = no limit (for production) # Note: in a binomial or trinomial, only the genus is filtered $readNames= "%"; # E.g. "Z%" or "%assigned%"; # Number of taxa to be imported (for testing); 0 = no limit (for production) $readLimit= 0; # Number of rows to be displayed (for testing); -1 = no limit (not required) $showLimit= -1; # End of TaxonMatcher.config