outputs
index
/home/jim/Files/TekDefense/TekDefense-Automater-Private/outputs.py

The outputs.py module represents some form of all outputs
from the Automater program to include all variation of
output files. Any addition to the Automater that brings
any other output requirement should be programmed in this module.
 
Class(es):
SiteDetailOutput -- Wrapper class around all functions that print output
from Automater, to include standard output and file system output.
 
Function(s):
No global exportable functions are defined.
 
Exception(s):
No exceptions exported.

 
Modules
       
csv

 
Classes
       
__builtin__.object
SiteDetailOutput

 
class SiteDetailOutput(__builtin__.object)
    SiteDetailOutput provides the capability to output information
to the screen, a text file, a comma-seperated value file, or
a file formatted with html markup (readable by web browsers).
 
Public Method(s):
createOutputInfo
 
Instance variable(s):
_listofsites - list storing the list of site results stored.
 
  Methods defined here:
PrintToCSVFile(self, csvoutfile)
Formats site information correctly and prints it to an output file with comma-seperators.
Returns nothing.
 
Argument(s):
csvoutfile -- A string representation of a file that will store the output.
 
Return value(s):
Nothing is returned from this Method.
 
Restriction(s):
The Method has no restrictions.
PrintToHTMLFile(self, htmloutfile)
Formats site information correctly and prints it to an output file using HTML markup.
Returns nothing.
 
Argument(s):
htmloutfile -- A string representation of a file that will store the output.
 
Return value(s):
Nothing is returned from this Method.
 
Restriction(s):
The Method has no restrictions.
PrintToScreen(self)
Formats site information correctly and prints it to the user's standard output.
Returns nothing.
 
Argument(s):
No arguments are required.
 
Return value(s):
Nothing is returned from this Method.
 
Restriction(s):
The Method has no restrictions.
PrintToTextFile(self, textoutfile)
Formats site information correctly and prints it to an output file in text format.
Returns nothing.
 
Argument(s):
textoutfile -- A string representation of a file that will store the output.
 
Return value(s):
Nothing is returned from this Method.
 
Restriction(s):
The Method has no restrictions.
__init__(self, sitelist)
Class constructor. Stores the incoming list of sites in the _listofsites list.
 
Argument(s):
sitelist -- list containing site result information to be printed.
 
Return value(s):
Nothing is returned from this Method.
createOutputInfo(self, parser)
Checks parser information calls correct print methods based on parser requirements.
Returns nothing.
 
Argument(s):
parser -- Parser object storing program input parameters used when program was run.
 
Return value(s):
Nothing is returned from this Method.
 
Restriction(s):
The Method has no restrictions.
getHTMLClosing(self)
Creates HTML markup to provide correct formatting for closing HTML file requirements.
Returns string that contains closing HTML markup information for HTML output file.
 
Argument(s):
No arguments required.
 
Return value(s):
string.
 
Restriction(s):
The Method has no restrictions.
getHTMLOpening(self)
Creates HTML markup to provide correct formatting for initial HTML file requirements.
Returns string that contains opening HTML markup information for HTML output file.
 
Argument(s):
No arguments required.
 
Return value(s):
string.
 
Restriction(s):
The Method has no restrictions.

Data descriptors defined here:
ListOfSites
Checks instance variable _listofsites for content.
Returns _listofsites if it has content or None if it does not.
 
Argument(s):
No arguments are required.
 
Return value(s):
_listofsites -- list containing list of site results if variable contains data.
None -- if _listofsites is empty or not assigned.
 
Restriction(s):
This Method is tagged as a Property.
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)