# HG changeset patch # User Dirkjan Ochtman # Date 1219223393 -7200 # Node ID b6fffcd97242dd57c7fcf0c3b294e5e6a7d61985 # Parent 95f35b553ae699c1e564e6915b3faea253f209ce# Parent 75b8c8b92e9287e6188732557140b5523dae7c38 merge with crew-stable diff -r 95f35b553ae6 -r b6fffcd97242 contrib/win32/ReadMe.html --- a/contrib/win32/ReadMe.html Sat Aug 16 16:32:57 2008 +0200 +++ b/contrib/win32/ReadMe.html Wed Aug 20 11:09:53 2008 +0200 @@ -93,7 +93,7 @@ href="http://www.serpentine.com/blog">Bryan O'Sullivan.

-

Mercurial is Copyright 2005-2007 Matt Mackall and others. +

Mercurial is Copyright 2005-2008 Matt Mackall and others. See the Contributors.txt file for a list of contributors.

Mercurial is free software; you can redistribute it and/or diff -r 95f35b553ae6 -r b6fffcd97242 hgext/mq.py --- a/hgext/mq.py Sat Aug 16 16:32:57 2008 +0200 +++ b/hgext/mq.py Wed Aug 20 11:09:53 2008 +0200 @@ -2326,12 +2326,6 @@ seriesopts = [('s', 'summary', None, _('print first line of patch header'))] -headeropts = [ - ('U', 'currentuser', None, _('add "From: " to patch')), - ('u', 'user', '', _('add "From: " to patch')), - ('D', 'currentdate', None, _('add "Date: " to patch')), - ('d', 'date', '', _('add "Date: " to patch'))] - cmdtable = { "qapplied": (applied, [] + seriesopts, _('hg qapplied [-s] [PATCH]')), "qclone": @@ -2389,7 +2383,11 @@ [('e', 'edit', None, _('edit commit message')), ('f', 'force', None, _('import uncommitted changes into patch')), ('g', 'git', None, _('use git extended diff format')), - ] + commands.walkopts + commands.commitopts + headeropts, + ('U', 'currentuser', None, _('add "From: " to patch')), + ('u', 'user', '', _('add "From: " to patch')), + ('D', 'currentdate', None, _('add "Date: " to patch')), + ('d', 'date', '', _('add "Date: " to patch')) + ] + commands.walkopts + commands.commitopts, _('hg qnew [-e] [-m TEXT] [-l FILE] [-f] PATCH [FILE]...')), "qnext": (next, [] + seriesopts, _('hg qnext [-s]')), "qprev": (prev, [] + seriesopts, _('hg qprev [-s]')), @@ -2412,7 +2410,11 @@ [('e', 'edit', None, _('edit commit message')), ('g', 'git', None, _('use git extended diff format')), ('s', 'short', None, _('refresh only files already in the patch')), - ] + commands.walkopts + commands.commitopts + headeropts, + ('U', 'currentuser', None, _('add/update "From: " in patch')), + ('u', 'user', '', _('add/update "From: " in patch')), + ('D', 'currentdate', None, _('update "Date: " in patch (if present)')), + ('d', 'date', '', _('update "Date: " in patch (if present)')) + ] + commands.walkopts + commands.commitopts, _('hg qrefresh [-I] [-X] [-e] [-m TEXT] [-l FILE] [-s] [FILE]...')), 'qrename|qmv': (rename, [], _('hg qrename PATCH1 [PATCH2]')),