moinsetup

Change of moinsetup.py

27:f6b8931f1c89
moinsetup.py
     1.1 --- a/moinsetup.py	Wed Feb 16 22:40:37 2011 +0100
     1.2 +++ b/moinsetup.py	Thu Feb 17 01:09:56 2011 +0100
     1.3 @@ -1,5 +1,24 @@
     1.4  #!/usr/bin/env python
     1.5  
     1.6 +"""
     1.7 +A setup and configuration script for MoinMoin.
     1.8 +
     1.9 +Copyright (C) 2010, 2011 Paul Boddie <paul@boddie.org.uk>
    1.10 +
    1.11 +This program is free software; you can redistribute it and/or modify it under
    1.12 +the terms of the GNU General Public License as published by the Free Software
    1.13 +Foundation; either version 3 of the License, or (at your option) any later
    1.14 +version.
    1.15 +
    1.16 +This program is distributed in the hope that it will be useful, but WITHOUT
    1.17 +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
    1.18 +FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
    1.19 +details.
    1.20 +
    1.21 +You should have received a copy of the GNU General Public License along with
    1.22 +this program.  If not, see <http://www.gnu.org/licenses/>.
    1.23 +"""
    1.24 +
    1.25  from os.path import abspath, exists, extsep, isdir, join, normpath, split
    1.26  from getpass import getpass
    1.27  from glob import glob
    1.28 @@ -9,6 +28,8 @@
    1.29  import shutil
    1.30  import re
    1.31  
    1.32 +__version__ = "0.1"
    1.33 +
    1.34  # Regular expressions for editing MoinMoin scripts and configuration files.
    1.35  
    1.36  def compile_definition(name):
    1.37 @@ -424,7 +445,7 @@
    1.38  
    1.39          log_filename = "install-%s.log" % split(self.common_dir)[-1]
    1.40  
    1.41 -        status("Installing MoinMoin in %s..." % self.prefix)
    1.42 +        status("Installing MoinMoin%s in %s..." % (data_only and " (data only)" or "", self.prefix))
    1.43  
    1.44          if data_only:
    1.45              install_cmd = "install_data"