|
@@ -270,25 +270,18 @@ class GooeyApp(QObject):
|
|
|
def _get_issue_template(self):
|
|
|
mbox = QMessageBox.warning
|
|
|
title = 'Oooops'
|
|
|
- msg = 'If you see something unexpected or faulty, please report it ' \
|
|
|
- 'to us: <ul>' \
|
|
|
- '<li>Something is wrong with this Gooey? <br>' \
|
|
|
- '<a href=https://github.com/datalad/datalad-gooey/issues/new?assignees=&labels=&template=issue_template.yml>' \
|
|
|
- 'File a report at datalad-gooey </a> </li>' \
|
|
|
- '<li>Something is wrong with DataLad? <br>' \
|
|
|
- '<a href=https://github.com/datalad/datalad-gooey/issues/new?assignees=&labels=&template=issue_template.yml>' \
|
|
|
- 'File a report at DataLad</a></ul> <br>'
|
|
|
+ msg = 'Please report unexpected or faulty behavior to us. File a ' \
|
|
|
+ 'report with <a href=https://github.com/datalad/datalad-gooey/issues/new?assignees=&labels=&template=issue_template.yml>' \
|
|
|
+ 'datalad-gooey </a> or with <a href=https://github.com/datalad/datalad-gooey/issues/new?assignees=&labels=&template=issue_template.yml>' \
|
|
|
+ 'DataLad</a>'
|
|
|
mbox(self.main_window, title, msg)
|
|
|
|
|
|
def _get_help(self):
|
|
|
mbox = QMessageBox.information
|
|
|
title = 'I need help!'
|
|
|
- msg = 'You can resources to learn more or ask questions here: <ul>' \
|
|
|
- '<li>More information on DataLad Gooey: ' \
|
|
|
- '<a href=docs.datalad.org> add me </a> </li>' \
|
|
|
- '<li>General DataLad user tutorials:' \
|
|
|
- '<a href=http://handbook.datalad.org> handbook.datalad.org </a>' \
|
|
|
- '</li>' \
|
|
|
+ msg = 'Find resources to learn more or ask questions here: <ul><li>' \
|
|
|
+ 'About this tool:<a href=http://docs.datalad.org/projects/gooey/en/latest>DataLad Gooey Docs</a> </li>' \
|
|
|
+ '<li>General DataLad user tutorials: <a href=http://handbook.datalad.org> handbook.datalad.org </a> </li>' \
|
|
|
'<li>Live chat and weekly office hour: <a href=https://matrix.to/#/!NaMjKIhMXhSicFdxAj:matrix.org?via=matrix.waite.eu&via=matrix.org&via=inm7.de>' \
|
|
|
'Join us on Matrix </li></ul>'
|
|
|
mbox(self.main_window, title, msg)
|
|
@@ -296,10 +289,10 @@ class GooeyApp(QObject):
|
|
|
def _get_info(self):
|
|
|
mbox = QMessageBox.information
|
|
|
title = 'About'
|
|
|
- msg = 'DataLad development is supported primarily by the US ' \
|
|
|
- 'National Science Foundation and the German Federal ' \
|
|
|
- 'Ministry of Education and Research. Find out more at ' \
|
|
|
- '<a href=http://datalad.org>datalad.org </a>'
|
|
|
+ msg = 'DataLad and DataLad Gooey are free and open source software. ' \
|
|
|
+ 'Read the <a href=https://doi.org/10.21105/joss.03262> paper' \
|
|
|
+ '</a>, or find out more at <a href=http://datalad.org>' \
|
|
|
+ 'datalad.org</a>.'
|
|
|
mbox(self.main_window, title, msg)
|
|
|
|
|
|
def _connect_menu_view(self, menu: QMenu):
|