summaryrefslogtreecommitdiffstats
path: root/plugins/xserver.py
Commit message (Collapse)AuthorAgeFilesLines
* specfile:Joel Andres Granados2008-11-201-1/+1
| | | | | | 1. Comment all the stuff we dont have in fedora distro. This makes it much easier to cp the spec file when creating the new version of fak. 2. xserver.py: Its not experimental anymore.
* Various small fixes.Joel Andres Granados2008-11-191-9/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Makefile: 1. Cut counts from 1 not 0. 2. Create the "about" info in the makefile instead of spec file. 3. Put subdirs and about targets into one build target. firstaidkit.spec: 1. Erase the about creation from here. 2. Erase the fedora 7 specific stuff. 3. Call make build. 4. xserver plugin does not need rhpl nor rhpxl anymore. 5. Actually include the COPYING file where the about says it is. configuration.py: 1. Change the default backup dir from /tmp/fakbackup to /tmp. /tmp/fakbackup caused some file permission strangeness when a non root user executed fak after root had executed it. This can still occur, but it will be left like this as the user should not execute fak in non root anyway. logging: plugins.py,interpreter.py. __init__.py 1. Always use the reporting object when possible. 2. Add time stamp and level of message to log messages.
* Continue with the name standarization and simplification.Joel Andres Granados2008-07-151-0/+208
| | | | | | | | | | - The "_p" is not needed. Avoiding the suffix makes the names simpler. - When the plugin needs to be separated into varios subplugins, use the _ to signify that a subplugin is related to a father plugin. Like rpm_lowlevel, this say that lowlevel is part of the rpm plugin. - When naming a plugin keep the name SHORT and simple. - Be sure to name all the plugin packages as "plugin-name"
* Standarize and simplify plugin names.Joel Andres Granados2008-07-151-208/+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.
* Make xserver plugin a little friendlier.Joel Andres Granados2008-07-141-4/+14
| | | | | | | - Put the previous xorg config file in a backup file where the user can see it. - Give the user extra information about how to create an xorg configuration file.
* Fix typo.Joel Andres Granados2008-07-141-1/+1
|
* The Backup system does not like real objects.Joel Andres Granados2008-07-141-1/+1
| | | | | We should really implement a backup object that know who is calling and sets the unique id.
* Avoid the ugly space left by adding "\" to a string separation.Joel Andres Granados2008-07-141-10/+10
| | | | | | | | | | | | | | | When deviding a string into two lines one must use pythons automatic string concatenation (python concatenates strings that are in different line but are inside parenthesis). Do not use the "\" in the string as this will cause strange and unwanted output. Yes: print("long string" "rest of string") No: print("long string \ rest of string")
* Fix the format of the firstaidkit file.Joel Andres Granados2008-07-141-39/+68
| | | | | | | | | | | | | - 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/
* We don't need the backupName anymore. (xserver plugin)Joel Andres Granados2008-06-061-1/+0
|
* Use the backup system spaces instead of the backup system backend. (xserver ↵Joel Andres Granados2008-06-061-18/+8
| | | | plugin)
* We don't really need to worry about the backup stuff now. (xserver plugin)Joel Andres Granados2008-06-061-4/+1
|
* Use the reporting object correctly.Joel Andres Granados2008-06-061-1/+2
| | | | Must have a origin and level.
* Have xserver plugin use the backup system.Joel Andres Granados2008-06-041-14/+21
|
* fix typo in xserver plugin.Joel Andres Granados2008-06-031-1/+1
|
* fix typoJoel Andres Granados2008-06-031-1/+1
|
* initialize the flow variable in xserver plugin in the correct way.Joel Andres Granados2008-06-031-1/+1
|
* fix typosJoel Andres Granados2008-06-031-4/+4
|
* Make the xserver plugin use the flags.Joel Andres Granados2008-06-031-0/+5
|
* Change the detected name to checked.Joel Andres Granados2008-05-121-2/+2
| | | | | The new variable name better expresses the objective of the issue state. This will help avoid confusion for the plugin developer.
* Fix the behavior of xserver plugin to reflect new Xorg server behavior.Joel Andres Granados2008-05-071-13/+50
|
* Use Issue reporting in pluginsMartin Sivak2008-05-051-0/+5
|
* The temp file was a bad ideaJoel Andres Granados2008-03-181-3/+1
|
* Squashed commit of the following:Joel Andres Granados2008-03-181-15/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | commit 810d6bd770533a8504a64983a4d7e2db406595df Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:45:50 2008 +0100 fix some dependancy issues commit f4bc1ffdb49fadc9fb3de735e06729a40e7641ac Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:42:20 2008 +0100 Include the utils package commit afaaf4dadbe0fb8137576059c3da1cdf62a318e8 Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:27:33 2008 +0100 Fix license in setup.py commit 25442d8c09941126fde5b5d71d5287d0814d712f Author: Joel Andres Granados <jgranado@redhat.com> Date: Tue Mar 18 14:00:46 2008 +0100 Create the rpm subpackage for the xserver plugin
* xserver pluginJoel Andres Granados2008-03-171-0/+123