Exemplo n.º 1
0
    def __init__(self,
                 path,
                 init=False):

        GeneralVCSInterface.__init__(self,path,init)
        if init:
            notImplemented(self,"__init__ (creation of a repository)")
Exemplo n.º 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")
Exemplo n.º 3
0
    def __init__(self,
                 path,
                 init=False):

        GeneralVCSInterface.__init__(self,path,init)
        if init:
            notImplemented(self,"__init__ (creation of a repository)")
Exemplo n.º 4
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")
Exemplo n.º 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")
Exemplo n.º 7
0
 def execute(self):
     notImplemented(self, "execute")
Exemplo n.º 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")
Exemplo n.º 9
0
    def setYLabel2(self,title):
        """Sets the label on the second Y-Axis"""

        notImplemented(self,"setYLabel2")
Exemplo n.º 10
0
    def setYLabel(self,title):
        """Sets the label on the first Y-Axis"""

        notImplemented(self,"setYLabel")
Exemplo n.º 11
0
    def getRevision(self):
        """Get the current revision number"""

        notImplemented(self,"commit")
Exemplo n.º 12
0
    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")
Exemplo n.º 13
0
    def setYLabel(self, title):
        """Sets the label on the first Y-Axis"""

        notImplemented(self, "setYLabel")
Exemplo n.º 14
0
    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")
Exemplo n.º 15
0
    def preparePlot(self):
        """Prepare the plotting window"""

        notImplemented(self, "preparePlot")
Exemplo n.º 16
0
    def commit(self,
               msg):
        """Commit the current state
        :param msg: Commit message"""

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

        notImplemented(self,"addRegexpToIgnore")
Exemplo n.º 18
0
    def clone(self,
              dest):
        """Clone the repository
        :param dest: the path that should be clones to"""

        notImplemented(self,"clone")
Exemplo n.º 19
0
    def branchName(self):
        """Return the branch-name (or another identifying string)"""


        notImplemented(self,"commit")
Exemplo n.º 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")
Exemplo n.º 21
0
    def doReplot(self):
        """Replot the whole data"""

        notImplemented(self, "doReplot")
Exemplo n.º 22
0
    def preparePlot(self):
        """Prepare the plotting window"""

        notImplemented(self,"preparePlot")
Exemplo n.º 23
0
    def actualSetTitle(self, title):
        """Sets the title"""

        notImplemented(self, "actualSetTitle")
Exemplo n.º 24
0
 def execute(self):
      notImplemented(self,"execute")
Exemplo n.º 25
0
    def setYLabel2(self, title):
        """Sets the label on the second Y-Axis"""

        notImplemented(self, "setYLabel2")
Exemplo n.º 26
0
    def actualSetTitle(self,title):
        """Sets the title"""

        notImplemented(self,"actualSetTitle")
Exemplo n.º 27
0
    def doReplot(self):
        """Replot the whole data"""

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

        notImplemented(self,"addGlobToIgnore")