Changeset 204:6616046534cf


Ignore:
Timestamp:
05/28/12 08:13:12 (12 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
Phase:
public
Message:

Minor fixes, additions to the documents

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/manual/en/index.html

    r195 r204  
    11<html>
    2   <head>
    3     <title>MAVA Logger X User's Manual</title>
    4   </head>
     2<head>
     3  <title>MAVA Logger X User's Manual</title>
     4  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     5</head>
    56<body>
    6   <h1>MAVA Logger X User's Manual</h1>
     7  <div align="center"><h1>MAVA Logger X User's Manual</h1></div>
    78
    89  <h2>Overview</h2>
     
    700701  </p>
    701702
     703  <p>
     704  The <i>MAVA Online Systems</i> frame contains settings related to
     705  the online systems of MAVA, the gate and the ACARS systems mentioned
     706  above. It is recommended to enabled these for normal operations.
     707  </p>
     708
     709  <p>
     710  The <i>Simulator</i> frame contains settings for how the program
     711  interacts with the simulator. Most options are self-explanatory, but
     712  the ones related to smoothing requires some discussion. Flight
     713  Simulator is known for producing wind speed changes that are not
     714  entirely realistic and can result in the simulated aircraft
     715  experiencing some very high indicated airspeeds, which in turn can
     716  also cause the autopilot to suddenly increase the climb rate to
     717  counter the high speeds. Since this phenomenon is difficult to
     718  protect oneself against without buying extra products, like FSUIPC,
     719  the logger provides the possibility to average the IAS and/or the VS
     720  over a few seconds so that spikes in these values are
     721  smoothed. The <b>Enable the smoothing of IAS/VS over N sec.</b>
     722  options allow controlling this feature. The number of seconds may
     723  need experimenting with, but note that every change for which you
     724  press the <b>OK</b> button  is taken into account immediately.
     725  </p>
     726
    702727  <h3>The <i>Messages</i> Tab</h3>
    703728 
  • src/mlx/gui/gui.py

    r203 r204  
    804804        menuBar.append(toolsMenuItem)
    805805
    806         checklistMenuItem = gtk.ImageMenuItem(gtk.STOCK_PREFERENCES)
     806        checklistMenuItem = gtk.ImageMenuItem(gtk.STOCK_APPLY)
    807807        checklistMenuItem.set_use_stock(True)
    808808        checklistMenuItem.set_label(xstr("menu_tools_chklst"))
     
    813813        toolsMenu.append(checklistMenuItem)
    814814
    815         prefsMenuItem = gtk.ImageMenuItem(gtk.STOCK_APPLY)
     815        prefsMenuItem = gtk.ImageMenuItem(gtk.STOCK_PREFERENCES)
    816816        prefsMenuItem.set_use_stock(True)
    817817        prefsMenuItem.set_label(xstr("menu_tools_prefs"))
  • src/mlx/web.py

    r203 r204  
    905905
    906906    #handler.getNOTAMs(callback, "LHBP", "EPWA")
    907     handler.getMETARs(callback, ["LHBP", "EPWA"])
    908     time.sleep(5)
     907    #handler.getMETARs(callback, ["LHBP", "EPWA"])
     908    #time.sleep(5)
    909909   
    910 
    911 #------------------------------------------------------------------------------
     910    handler.updatePlane(callback, "HA-LON", const.PLANE_AWAY, "")
     911    time.sleep(3)   
     912
     913#------------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.