ATLAS Offline Software
Public Member Functions | Public Attributes | List of all members
WebPage.GlobalConfiguration Class Reference
Inheritance diagram for WebPage.GlobalConfiguration:
Collaboration diagram for WebPage.GlobalConfiguration:

Public Member Functions

def __init__ (self, **args)
 

Public Attributes

 baseUrl
 
 pageList
 
 pageAttributes
 

Detailed Description

Class to store global configuration data for a tree of web pages. Data members
   are used to store information used by the framework, while the dict is
   intended to be used for application-specific configuration data.

Definition at line 249 of file WebPage.py.

Constructor & Destructor Documentation

◆ __init__()

def WebPage.GlobalConfiguration.__init__ (   self,
**  args 
)

Definition at line 254 of file WebPage.py.

254  def __init__(self, **args):
255  self.baseUrl = 'webapp' # Common base path
256  self.pageList = [] # List of all web pages
257  self.pageAttributes = {} # Optional attributes for web pages, such as specific link styles
258 
259  # Initialize application-specific configuration data, if any
260  for k in args:
261  self[k] = args[k]
262 
263 
264 #
265 # Base class for all web pages
266 #

Member Data Documentation

◆ baseUrl

WebPage.GlobalConfiguration.baseUrl

Definition at line 255 of file WebPage.py.

◆ pageAttributes

WebPage.GlobalConfiguration.pageAttributes

Definition at line 257 of file WebPage.py.

◆ pageList

WebPage.GlobalConfiguration.pageList

Definition at line 256 of file WebPage.py.


The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18