Ignore:
Timestamp:
07/21/12 12:43:34 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Documented the non-GUI modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/web.py

    r214 r298  
    1 # Interface towards the websites used
    2 
    3 #------------------------------------------------------------------------------
    41
    52import const
     
    1613import traceback
    1714import xml.sax
     15
     16#---------------------------------------------------------------------------------------
     17
     18## @package mlx.web
     19#
     20# Web interface.
     21#
     22# This module implements a thread that can perform (HTTP) requests
     23# asynchronously. When the request is performed, a callback is called. The main
     24# interface is the \ref Handler class. Each of its functions creates a \ref
     25# Request subclass instance and puts it to the request queue. The handler
     26# thread then takes the requests one by one, and executes them.
     27#
     28# This module also defines some data classes the contents of which are
     29# retrieved or sent via HTTP. \ref BookedFlight contains data of a flight
     30# booked on the MAVA website, \ref Fleet and \ref Plane represents the MAVA
     31# fleet and the gates at Ferihegy and \ref NOTAM is a NOTAM.
    1832
    1933#---------------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.