Example #1
0
    def __init__(self,
                 path,
                 init=False):

        GeneralVCSInterface.__init__(self,path,init)
        if init:
            notImplemented(self,"__init__ (creation of a repository)")
Example #2
0
    def addPath(self, path, rules=[]):
        """Add the path to the repository (no commit)
        @param path: the path (directory or file) to commit
        @param rules: a list of tuples: first is whether to include or exclude
        the regular expression that is the second member of the tuple"""

        notImplemented(self, "addPath")
Example #3
0
    def __init__(self,
                 path,
                 init=False):

        GeneralVCSInterface.__init__(self,path,init)
        if init:
            notImplemented(self,"__init__ (creation of a repository)")
    def buildData(self, times, name, title, lastValid):
        """Build the implementation specific data
        :param times: The vector of times for which data exists
        :param name: the name under which the data is stored in the timeline
        :param title: the title under which this will be displayed
        :param lastValid: wether the last data entry is valid"""

        notImplemented(self, "buildData")
Example #5
0
    def buildData(self,times,name,title,lastValid):
        """Build the implementation specific data
        @param times: The vector of times for which data exists
        @param name: the name under which the data is stored in the timeline
        @param title: the title under which this will be displayed
        @param lastValid: wether the last data entry is valid"""

        notImplemented(self,"buildData")
    def addPath(self,
                path,
                rules=[]):
        """Add the path to the repository (no commit)
        :param path: the path (directory or file) to commit
        :param rules: a list of tuples: first is whether to include or exclude
        the regular expression that is the second member of the tuple"""

        notImplemented(self,"addPath")
Example #7
0
 def execute(self):
     notImplemented(self, "execute")
Example #8
0
    def doHardcopy(self,filename,form):
        """Write the contents of the plot to disk
        @param filename: Name of the file without type extension
        @param form: String describing the format"""

        notImplemented(self,"doHardcopy")
Example #9
0
    def setYLabel2(self,title):
        """Sets the label on the second Y-Axis"""

        notImplemented(self,"setYLabel2")
Example #10
0
    def setYLabel(self,title):
        """Sets the label on the first Y-Axis"""

        notImplemented(self,"setYLabel")
Example #11
0
    def getRevision(self):
        """Get the current revision number"""

        notImplemented(self,"commit")
    def doHardcopy(self, filename, form, termOpts=None):
        """Write the contents of the plot to disk
        :param filename: Name of the file without type extension
        :param form: String describing the format"""

        notImplemented(self, "doHardcopy")
    def setYLabel(self, title):
        """Sets the label on the first Y-Axis"""

        notImplemented(self, "setYLabel")
    def addVerticalMarker(self, colorRGB=None, label=None):
        """Add a vertical line to the graph at the current time. Optionally
        color it and add a label"""

        notImplemented(self, "addVerticalMarker")
    def preparePlot(self):
        """Prepare the plotting window"""

        notImplemented(self, "preparePlot")
Example #16
0
    def commit(self,
               msg):
        """Commit the current state
        :param msg: Commit message"""

        notImplemented(self,"commit")
Example #17
0
    def addRegexpToIgnore(self,
                          expr):
        """Add to the ignore-facility of the current VCS
        :param expr: a regular expression"""

        notImplemented(self,"addRegexpToIgnore")
Example #18
0
    def clone(self,
              dest):
        """Clone the repository
        :param dest: the path that should be clones to"""

        notImplemented(self,"clone")
Example #19
0
    def branchName(self):
        """Return the branch-name (or another identifying string)"""


        notImplemented(self,"commit")
Example #20
0
    def update(self,
               timeout=None):
        """Update the working copy from the parent repository
        :param timeout: Wait a maximum time (if the VCS supports this)"""

        notImplemented(self,"update")
    def doReplot(self):
        """Replot the whole data"""

        notImplemented(self, "doReplot")
Example #22
0
    def preparePlot(self):
        """Prepare the plotting window"""

        notImplemented(self,"preparePlot")
    def actualSetTitle(self, title):
        """Sets the title"""

        notImplemented(self, "actualSetTitle")
Example #24
0
 def execute(self):
      notImplemented(self,"execute")
    def setYLabel2(self, title):
        """Sets the label on the second Y-Axis"""

        notImplemented(self, "setYLabel2")
Example #26
0
    def actualSetTitle(self,title):
        """Sets the title"""

        notImplemented(self,"actualSetTitle")
Example #27
0
    def doReplot(self):
        """Replot the whole data"""

        notImplemented(self,"doReplot")
Example #28
0
    def addGlobToIgnore(self,
                          expr):
        """Add to the ignore-facility of the current VCS
        :param expr: a glob expression"""

        notImplemented(self,"addGlobToIgnore")