summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Andres Granados <jgranado@redhat.com>2008-05-27 17:17:31 +0200
committerJoel Andres Granados <jgranado@redhat.com>2008-05-27 17:17:31 +0200
commitb715088eef898b24f121335881f1c8134021a22a (patch)
tree59c2a160a8a6b7a266eeb09171f1210afc46f055 /doc
parent0e1a915e8c7458770e6f91d5f87f319b4720d1e3 (diff)
downloadfirstaidkit-b715088eef898b24f121335881f1c8134021a22a.tar.gz
firstaidkit-b715088eef898b24f121335881f1c8134021a22a.tar.xz
firstaidkit-b715088eef898b24f121335881f1c8134021a22a.zip
try to be consistent with the man page "IP" format.
Diffstat (limited to 'doc')
-rw-r--r--doc/firstaidkit-backup.114
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/firstaidkit-backup.1 b/doc/firstaidkit-backup.1
index 62fb2a7..f75191b 100644
--- a/doc/firstaidkit-backup.1
+++ b/doc/firstaidkit-backup.1
@@ -26,27 +26,27 @@ self._backups.getBackup.closeBackup(someuniquename)
The instance of backup space then gives the plugin access to several methods:
-.IP backupPath(self, path, name = None)
+.IP "backupPath(self, path, name = None)"
Copy the file or directory specified by path do the backup storage and give it the specified name.
The name equals to the path by default.
-.IP backupValue(self, value, name)
+.IP "backupValue(self, value, name)"
This method makes possible to save arbitrary chunk of data under specified name.
-.IP restoreName(self, name, path = None)
+.IP "restoreName(self, name, path = None)"
Restore backup object specified by it's name to it's original location or to the path if specified.
-.IP restorePath(self, path, name = None)
+.IP "restorePath(self, path, name = None)"
Restore backup object which resided at specified path to it's own original location. If the name is specified,
use the object with that name and restore it to the path.
-.IP restoreValue(self, name)
+.IP "restoreValue(self, name)"
Get the data saved under the name from backup storage.
-.IP delete(self, name)
+.IP "delete(self, name)"
Delete backup object with specified name.
-.IP cleanup(self)
+.IP "cleanup(self)"
Cleanup the backup storage space. You shouldn't use this method, the backup system takes care about it.
.PP