45 from .HgBackoutDialog import HgBackoutDialog |
45 from .HgBackoutDialog import HgBackoutDialog |
46 from .HgServeDialog import HgServeDialog |
46 from .HgServeDialog import HgServeDialog |
47 from .HgUtilities import getConfigPath |
47 from .HgUtilities import getConfigPath |
48 |
48 |
49 from .BookmarksExtension.bookmarks import Bookmarks |
49 from .BookmarksExtension.bookmarks import Bookmarks |
|
50 from .QueuesExtension.queues import Queues |
50 |
51 |
51 from .ProjectBrowserHelper import HgProjectBrowserHelper |
52 from .ProjectBrowserHelper import HgProjectBrowserHelper |
52 |
53 |
53 import Preferences |
54 import Preferences |
54 import Utilities |
55 import Utilities |
132 self.__iniWatcher.addPath(getConfigPath()) |
133 self.__iniWatcher.addPath(getConfigPath()) |
133 |
134 |
134 # instantiate the extensions |
135 # instantiate the extensions |
135 self.__extensions = { |
136 self.__extensions = { |
136 "bookmarks" : Bookmarks(self), |
137 "bookmarks" : Bookmarks(self), |
|
138 "mq" : Queues(self), |
137 } |
139 } |
138 |
140 |
139 def getPlugin(self): |
141 def getPlugin(self): |
140 """ |
142 """ |
141 Public method to get a reference to the plugin object. |
143 Public method to get a reference to the plugin object. |