X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=dotfiles2html%2Fdotfiles2html.py;h=e7c3a41bb57d38fe876de100fd1d7e9b8344c64f;hb=42465be8abac2fdb32c939bc7e5ad0fbca5df2f8;hp=7c1595af41ffe563cf3c02a52b3f155615369ff0;hpb=5f9cc4c82b2cb603968c843ea3a37c9aad82d4e6;p=phdru.name%2Fphdru.name.git diff --git a/dotfiles2html/dotfiles2html.py b/dotfiles2html/dotfiles2html.py index 7c1595a..e7c3a41 100755 --- a/dotfiles2html/dotfiles2html.py +++ b/dotfiles2html/dotfiles2html.py @@ -3,7 +3,7 @@ __version__ = "$Revision$"[11:-2] __revision__ = "$Id$"[5:-2] __date__ = "$Date$"[7:-2] -__author__ = "Oleg Broytman " +__author__ = "Oleg Broytman " __copyright__ = "Copyright (C) 2004-2010 PhiloSoft Design" import os, shutil, filecmp @@ -32,7 +32,7 @@ def add_headers(fname, first, prev, next, last): txt_name = fname html_file = open(html_fname, 'w') - html_file.write("#extends phd_pp_ru\n") + html_file.write("#extends phd_site\n") html_file.write("#implements respond\n") html_file.write("#attr $Title = \"%s\"\n" % dot_name) html_file.write("#attr $Copyright = 2003\n") @@ -51,7 +51,7 @@ def add_headers(fname, first, prev, next, last): html_file.write(html) html_file.write("#end raw\n") html_file.write("#end def\n") - html_file.write("$phd_pp_ru.respond(self)\n") + html_file.write("$phd_site.respond(self)\n") html_file.close()