-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move out stale plugins. Update Travis. Misc minor cleanups.
- Loading branch information
Showing
18 changed files
with
130 additions
and
104 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
Submodule astropy_helpers
updated
13 files
+7 −2 | .travis.yml | |
+25 −0 | CHANGES.rst | |
+2 −2 | README.rst | |
+51 −9 | ah_bootstrap.py | |
+1 −1 | appveyor.yml | |
+1 −1 | astropy_helpers/extern/automodapi/__init__.py | |
+21 −9 | astropy_helpers/extern/automodapi/automodsumm.py | |
+1 −1 | astropy_helpers/git_helpers.py | |
+1 −1 | astropy_helpers/openmp_helpers.py | |
+3 −3 | astropy_helpers/utils.py | |
+3 −1 | astropy_helpers/version_helpers.py | |
+1 −1 | setup.py | |
+0 −19 | tox.ini |
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
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,7 @@ | ||
The plugins in this folder were developed during JWST DADF sprints and | ||
are not actively maintained. There is no guarantee that they still work. | ||
|
||
To use them anyway, copy them to ``~/.ginga/plugins`` and then use the | ||
``--plugins`` option when starting Ginga or ``stginga`` from the command line. | ||
For ``MultiImage`` and ``MIPick``, you also need to copy the | ||
``ginga_config.py`` file here to your ``~/.ginga`` directory. |
File renamed without changes.
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,80 @@ | ||
multiimage_layout = ['seq', {}, [ | ||
'vbox', {'name': 'top', 'width': 1520, 'height': 900}, | ||
{'row': ['hbox', {'name': 'menu'}], 'stretch': 0}, | ||
{'row': [ | ||
'vpanel', {}, [ | ||
'vbox', {}, | ||
{'row': [ | ||
'hpanel', {'name': 'hpnl'}, [ | ||
'ws', {'name': 'left', 'width': 300, 'group': 2}, [ | ||
('Info', [ | ||
'vpanel', {}, [ | ||
'ws', {'name': 'uleft', 'height': 300, | ||
'show_tabs': False, 'group': 3} | ||
], | ||
[ | ||
'ws', {'name': 'lleft', 'height': 430, | ||
'show_tabs': True, 'group': 3} | ||
] | ||
]) | ||
] | ||
], | ||
[ | ||
'vbox', {'name': 'main', 'width': 700}, | ||
{'row': [ | ||
'ws', {'wstype': 'tabs', 'name': 'channels', | ||
'group': 1, 'use_toolbar': True} | ||
], | ||
'stretch': 1 | ||
}, | ||
{'row': [ | ||
'ws', {'wstype': 'stack', 'name': 'cbar', | ||
'group': 99} | ||
], | ||
'stretch': 0 | ||
}, | ||
{'row': [ | ||
'ws', {'wstype': 'stack', 'name': 'readout', | ||
'group': 99} | ||
], | ||
'stretch': 0 | ||
}, | ||
{'row': [ | ||
'ws', {'wstype': 'stack', 'name': 'operations', | ||
'group': 99} | ||
], | ||
'stretch': 0 | ||
} | ||
], | ||
[ | ||
'ws', {'name': 'right', 'width': 430, 'group': 2}, [ | ||
('Dialogs', [ | ||
'ws', {'name': 'dialogs', 'group': 2} | ||
]) | ||
] | ||
] | ||
], | ||
'stretch': 1}, [ | ||
'ws', {'name': 'toolbar', 'height': 40, | ||
'show_tabs': False, 'group': 2} | ||
] | ||
], | ||
[ | ||
'hbox', {'name': 'pstamps'} | ||
], | ||
]}, | ||
{'row': [ | ||
'hbox', {'name': 'status'} | ||
], | ||
'stretch': 0 | ||
} | ||
]] | ||
|
||
|
||
def pre_gui_config(ginga): | ||
# This is needed for MultiImage and MIPick | ||
ginga.set_layout(multiimage_layout) | ||
|
||
|
||
def post_gui_config(ginga): | ||
pass |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
def get_package_data(): | ||
return { | ||
_ASTROPY_PACKAGE_NAME_ + '.tests': ['coveragerc']} | ||
'stginga.tests': ['coveragerc']} |