Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 4635:63b9d2deed48
Updated copyright notices and add "and others" to "hg version"
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Tue, 19 Jun 2007 08:51:34 +0200 |
parents | a8be3c875988 |
children | 178778ca648f |
comparison
equal
deleted
inserted
replaced
4634:73bf2b586f3f | 4635:63b9d2deed48 |
---|---|
1 # commands.py - command processing for mercurial | 1 # commands.py - command processing for mercurial |
2 # | 2 # |
3 # Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2005-2007 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms | 5 # This software may be used and distributed according to the terms |
6 # of the GNU General Public License, incorporated herein by reference. | 6 # of the GNU General Public License, incorporated herein by reference. |
7 | 7 |
8 import demandimport; demandimport.enable() | 8 import demandimport; demandimport.enable() |
2591 def version_(ui): | 2591 def version_(ui): |
2592 """output version and copyright information""" | 2592 """output version and copyright information""" |
2593 ui.write(_("Mercurial Distributed SCM (version %s)\n") | 2593 ui.write(_("Mercurial Distributed SCM (version %s)\n") |
2594 % version.get_version()) | 2594 % version.get_version()) |
2595 ui.status(_( | 2595 ui.status(_( |
2596 "\nCopyright (C) 2005, 2006 Matt Mackall <mpm@selenic.com>\n" | 2596 "\nCopyright (C) 2005-2007 Matt Mackall <mpm@selenic.com> and others\n" |
2597 "This is free software; see the source for copying conditions. " | 2597 "This is free software; see the source for copying conditions. " |
2598 "There is NO\nwarranty; " | 2598 "There is NO\nwarranty; " |
2599 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" | 2599 "not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" |
2600 )) | 2600 )) |
2601 | 2601 |