comparison hgext/journal.py @ 51700:7f0cb9ee0534

Backout accidental publication of a large range of revisions I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 23 Jul 2024 10:02:46 +0200
parents 493034cc3265
children ca7bde5dbafb
comparison
equal deleted inserted replaced
51699:bd1483fd7088 51700:7f0cb9ee0534
61 # In a shared repository, what shared feature name is used 61 # In a shared repository, what shared feature name is used
62 # to indicate this namespace is shared with the source? 62 # to indicate this namespace is shared with the source?
63 sharednamespaces = { 63 sharednamespaces = {
64 bookmarktype: hg.sharedbookmarks, 64 bookmarktype: hg.sharedbookmarks,
65 } 65 }
66
67 66
68 # Journal recording, register hooks and storage object 67 # Journal recording, register hooks and storage object
69 def extsetup(ui): 68 def extsetup(ui):
70 extensions.wrapfunction(dispatch, 'runcommand', runcommand) 69 extensions.wrapfunction(dispatch, 'runcommand', runcommand)
71 extensions.wrapfunction(bookmarks.bmstore, '_write', recordbookmarks) 70 extensions.wrapfunction(bookmarks.bmstore, '_write', recordbookmarks)