def __init__(self, path, init=False): GeneralVCSInterface.__init__(self,path,init) if init: notImplemented(self,"__init__ (creation of a repository)")
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")
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 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")
def execute(self): notImplemented(self, "execute")
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")
def setYLabel2(self,title): """Sets the label on the second Y-Axis""" notImplemented(self,"setYLabel2")
def setYLabel(self,title): """Sets the label on the first Y-Axis""" notImplemented(self,"setYLabel")
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")
def commit(self, msg): """Commit the current state :param msg: Commit message""" notImplemented(self,"commit")
def addRegexpToIgnore(self, expr): """Add to the ignore-facility of the current VCS :param expr: a regular expression""" notImplemented(self,"addRegexpToIgnore")
def clone(self, dest): """Clone the repository :param dest: the path that should be clones to""" notImplemented(self,"clone")
def branchName(self): """Return the branch-name (or another identifying string)""" notImplemented(self,"commit")
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")
def preparePlot(self): """Prepare the plotting window""" notImplemented(self,"preparePlot")
def actualSetTitle(self, title): """Sets the title""" notImplemented(self, "actualSetTitle")
def execute(self): notImplemented(self,"execute")
def setYLabel2(self, title): """Sets the label on the second Y-Axis""" notImplemented(self, "setYLabel2")
def actualSetTitle(self,title): """Sets the title""" notImplemented(self,"actualSetTitle")
def doReplot(self): """Replot the whole data""" notImplemented(self,"doReplot")
def addGlobToIgnore(self, expr): """Add to the ignore-facility of the current VCS :param expr: a glob expression""" notImplemented(self,"addGlobToIgnore")