ATLAS Offline Software
Loading...
Searching...
No Matches
WebPage.GlobalConfiguration Class Reference
Inheritance diagram for WebPage.GlobalConfiguration:
Collaboration diagram for WebPage.GlobalConfiguration:

Public Member Functions

 __init__ (self, **args)

Public Attributes

str baseUrl = 'webapp'
list pageList = []
dict 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__()

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

str WebPage.GlobalConfiguration.baseUrl = 'webapp'

Definition at line 255 of file WebPage.py.

◆ pageAttributes

dict WebPage.GlobalConfiguration.pageAttributes = {}

Definition at line 257 of file WebPage.py.

◆ pageList

list WebPage.GlobalConfiguration.pageList = []

Definition at line 256 of file WebPage.py.


The documentation for this class was generated from the following file: