summaryrefslogtreecommitdiffstats
path: root/plugins/plugin_undelete_partitions
Commit message (Collapse)AuthorAgeFilesLines
* Standarize and simplify plugin names.Joel Andres Granados2008-07-154-807/+0
| | | | | | | | | | | - The file names are the ones the the user will be using to reference each plugin. Having a long name will not help the user. - Also, to signify that they are plugins we will use the "p_" at the beginning of each name. - plugin_examples is left like that because it is not a plugin in itself, but a directory that contains plugins. Please follow these naming standards when you name you plugins.
* Fix the format of the firstaidkit file.Joel Andres Granados2008-07-143-11/+11
| | | | | | | | | | | | | - Indendtation should be 4 spaces. There was a function indented with 8 spaces. - Lines should be shorted than 80 chars. It just looks pretty :) Think of terminals whith only 80 char of length. Think of debuging in rescue mode. - Change also the print statements. Just getting ready for python 3000. - Get some spaces between elifs - There should not be any lines ending in spaces. - This can all be read in the python code conventions http://www.python.org/dev/peps/pep-0008/
* Correct the call to the rescue function.Joel Andres Granados2008-03-101-1/+1
|
* Make for a better reportJoel Andres Granados2008-03-071-4/+4
|
* Call a method that actually existsJoel Andres Granados2008-03-071-1/+1
|
* Include the PLUGIN for reportingJoel Andres Granados2008-03-071-0/+1
|
* Erase some self objects that were forgottenJoel Andres Granados2008-03-071-7/+7
|
* Change the way the undel plugin does the reportingJoel Andres Granados2008-03-071-29/+34
|
* fix some indentation problemsJoel Andres Granados2008-03-071-5/+5
|
* Fix Freeky merge.Joel Andres Granados2008-03-071-100/+16
|
* Squashed commit of the following:Joel Andres Granados2008-03-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | commit c3bc3747deca5e558f26c0e49fba7aa0525daaf7 Author: Joel Andres Granados <jgranado@redhat.com> Date: Fri Mar 7 13:12:18 2008 +0100 Just install the py files. commit 111d1ae995cbb45eb384292baf81ebcf8ae2f9b4 Author: Joel Andres Granados <jgranado@redhat.com> Date: Fri Mar 7 11:53:45 2008 +0100 Clean the spec file commit 21f00dbefaa2cf80a8a028c13931891ecd4294c2 Author: Joel Andres Granados <jgranado@redhat.com> Date: Fri Mar 7 11:50:15 2008 +0100 Turn off the annoying unpackaged file check commit 899eb8a279994a987f911cac66f402507162d4ae Author: Joel Andres Granados <jgranado@redhat.com> Date: Thu Mar 6 22:08:55 2008 +0100 Create new plugin packages and add some automation to the makefile
* some typoJoel Andres Granados2008-03-071-1/+1
|
* make the python part work with the _undelpart.c code.Joel Andres Granados2008-03-071-19/+42
|
* Make sure we close everything.Joel Andres Granados2008-03-071-0/+9
|
* Use the reporting correctly.Joel Andres Granados2008-03-071-19/+18
|
* take away print messages.Joel Andres Granados2008-03-071-11/+95
|
* make sure we dont export setPartititonlistJoel Andres Granados2008-03-071-6/+1
|
* setPartition is useless.Joel Andres Granados2008-03-071-146/+0
|
* make sure that we commit the changes to the disk.Joel Andres Granados2008-03-071-14/+5
|
* Simplify the getrescuable function. Put the actual rescue code in ↵Joel Andres Granados2008-03-071-149/+77
| | | | | | | | | | | add_partition method. Its just better to show the possible partitions that can be rescued instead of checking for the rescuability. This means that in the list returned by getRescuable, there are partitions that are not actually rescuable. Since we dont need to separate the search for rescuable and the commit stuff, we do away with the rescueable method and put it all in add_partition
* do a better job with the rescue method.Joel Andres Granados2008-03-071-15/+36
|
* Make the rescue and setpartitionlist methods workable.Joel Andres Granados2008-03-071-91/+74
|
* Make the setpartitionlist method work.Joel Andres Granados2008-03-071-88/+135
|
* Typo, and temoprary string output for debugging.Joel Andres Granados2008-03-071-1/+3
|
* take away print messages.Joel Andres Granados2008-03-071-12/+0
|
* First commit of the undelete partition. Not functional but most of the work ↵Joel Andres Granados2008-03-014-0/+961
is done.