-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1437 from Open-MSS/merge_develop_to_stable
Merge develop to stable, preparing 6.1.0
- Loading branch information
Showing
57 changed files
with
1,136 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ in alphabetic order by first name | |
- Reimar Bauer <[email protected]> | ||
- Sakshi Chopkar <[email protected]> | ||
- Shivashis Padhi <[email protected]> | ||
- Sreelakshmi Jayarajan <[email protected]> | ||
- Tanish Grover <[email protected]> | ||
- Thomas Breuer <[email protected]> | ||
- Vaibhav Mehra <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ Components | |
:maxdepth: 3 | ||
|
||
usage | ||
plugins | ||
mswms | ||
mscolab | ||
tutorials | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
MSUI plugins | ||
============ | ||
|
||
.. _msuiplugins: | ||
|
||
|
||
Flight track import/export | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
As the planned flight track has to be quickly communicated to different parties having different | ||
desired file formats, MSS supports a simple plugin system for exporting planned flights and | ||
importing changed files back in addition to the main FTML format. These filters may be accessed | ||
from the File menu of the Main Window. | ||
|
||
MSS currently offers several import/export filters in the mslib.plugins.io module, which may serve | ||
as an example for the definition of own plugins. Take care that added plugins use different file extensions. | ||
They are listed below. The CSV plugin is enabled by default. | ||
Enabling the experimental FliteStar text import plugin would require those lines in | ||
the UI settings file: | ||
|
||
.. code:: text | ||
"import_plugins": { | ||
"FliteStar": ["fls", "mslib.plugins.io.flitestar", "load_from_flitestar"] | ||
}, | ||
The dictionary entry defines the name of the filter in the File menu. The list specifies in this | ||
order the extension, the python module implementing the function, and finally the function name. | ||
The module may be placed in any location of the PYTHONPATH or into the configuration directory | ||
path. | ||
|
||
An exemplary test file format that can be ex- and imported may be activated by: | ||
|
||
.. code:: text | ||
"import_plugins": { | ||
"Text": ["txt", "mslib.plugins.io.text", "load_from_txt"] | ||
}, | ||
"export_plugins": { | ||
"Text": ["txt", "mslib.plugins.io.text", "save_to_txt"] | ||
}, | ||
The given plugins demonstrate, how additional plugins may be implemented. Please be advised that several | ||
attributes of the waypoints are automatically computed by MSS (for example all time and performance data) | ||
and will be overwritten after reading back the file. | ||
|
||
**Available Export Formats:** | ||
|
||
.. code:: text | ||
"export_plugins": { | ||
"Text": ["txt", "mslib.plugins.io.text", "save_to_txt"], | ||
"KML": ["kml", "mslib.plugins.io.kml", "save_to_kml"], | ||
"GPX": ["gpx", "mslib.plugins.io.gpx", "save_to_gpx"] | ||
}, | ||
User contributed Plugins: | ||
------------------------- | ||
|
||
.. include:: samples/plugins/navaid.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class mss_mscolab_auth(object): | ||
password = "please use the methods to save only the encrypted value" | ||
allowed_users = [("user", hashlib.md5(password.encode('utf-8')).hexdigest())),] | ||
allowed_users = [("user", hashlib.md5(password.encode('utf-8')).hexdigest())] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.