Plugins/VcsPlugins/vcsMercurial/hg.py

changeset 6458
97480c872ea9
parent 6303
ec9ebaf206fb
child 6460
af9e529d0fb6
--- a/Plugins/VcsPlugins/vcsMercurial/hg.py	Thu Aug 02 19:12:50 2018 +0200
+++ b/Plugins/VcsPlugins/vcsMercurial/hg.py	Fri Aug 03 17:56:44 2018 +0200
@@ -2905,6 +2905,7 @@
             if os.path.splitdrive(repodir)[1] == os.sep:
                 return
         
+        # TODO: Mercurial 4.7: add support for --bookmark flag
         from .HgExportDialog import HgExportDialog
         dlg = HgExportDialog()
         if dlg.exec_() == QDialog.Accepted:
@@ -2999,6 +3000,7 @@
             if os.path.splitdrive(repodir)[1] == os.sep:
                 return False
         
+        # TODO: Mercurial 4.7: add support for the --no-commit flag
         from .HgGraftDialog import HgGraftDialog
         res = False
         dlg = HgGraftDialog(self, revs)
@@ -3059,6 +3061,8 @@
             res = dia.hasAddOrDelete()
             self.checkVCSStatus()
         return res
+    # TODO: Mercurial 4.7: add action for graft --stop
+    # TODO: Mercurial 4.7: add action for graft --abort
     
     def hgArchive(self):
         """

eric ide

mercurial