From: Jeremy C. Reed Date: Mon, 11 Aug 2014 20:12:48 +0000 (+0000) Subject: fix script that creates log messages HTML to say Kea instead of BIND 10 X-Git-Tag: trac3482_base~41^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7dfa7561c48aee3e0045bb08fb35ba2b5741fa30;p=thirdparty%2Fkea.git fix script that creates log messages HTML to say Kea instead of BIND 10 --- diff --git a/tools/system_messages.py b/tools/system_messages.py index 0fc209d57e..172e3cd133 100644 --- a/tools/system_messages.py +++ b/tools/system_messages.py @@ -15,7 +15,7 @@ # Produce System Messages Manual # # This tool reads all the .mes files in the directory tree whose root is given -# on the command line and interprets them as BIND 10 message files. It pulls +# on the command line and interprets them as message files. It pulls # all the messages and description out, sorts them by message ID, and writes # them out as a single (formatted) file. # @@ -65,10 +65,10 @@ SEC_HEADER=""" Do not edit this file. --> - + - BIND 10 Messages Manual + Kea Messages Manual 2011-2014Internet Systems Consortium, Inc. @@ -76,14 +76,14 @@ SEC_HEADER=""" - This is the messages manual for BIND 10 version &__VERSION__;. + This is the messages manual for Kea version &__VERSION__;. The most up-to-date version of this document, along with - other documents for BIND 10, can be found at - . + other documents for Kea, can be found at + . - This is the messages manual for BIND 10 version + This is the messages manual for Kea version &__VERSION__;. @@ -91,7 +91,7 @@ SEC_HEADER=""" Introduction This document lists each message that can be logged by the - programs in the BIND 10 package. Each entry in this manual + programs in the Kea package. Each entry in this manual is of the form: IDENTIFICATION message-text ... where "IDENTIFICATION" is the message identification included @@ -106,13 +106,13 @@ SEC_HEADER=""" being logged. - For information on configuring and using BIND 10 logging, - refer to the BIND 10 Guide. + For information on configuring and using Kea logging, + refer to the Kea Guide. - BIND 10 Messages + Kea Log Messages """ @@ -270,7 +270,7 @@ def addToDictionary(msgid, msgtext, desc, filename): # If the ID is in the dictionary, append a "(n)" to the name - this will # flag that there are multiple instances. (However, this is an error - - # each ID should be unique in BIND-10.) + # each ID should be unique in the code.) if msgid in dictionary: i = 1 while msgid + " (" + str(i) + ")" in dictionary: @@ -371,7 +371,7 @@ def processAllFiles(root): calls processFile for all .mes files found. Parameters: - root Directory that is the root of the BIND-10 source tree + root Directory that is the root of the source tree """ for (path, dirs, files) in os.walk(root):