-
Notifications
You must be signed in to change notification settings - Fork 1
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 #374 from clemente-lab/Enhancement-MoreRobustUI
Enhancement more robust UI
- Loading branch information
Showing
13 changed files
with
329 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,7 +67,6 @@ | |
# CONFIGURE SERVER GLOBALS # | ||
############################ | ||
|
||
|
||
# Configuration for the CherryPy server | ||
CONFIG = { | ||
'global': { | ||
|
@@ -79,7 +78,6 @@ | |
'tools.sessions.on': True, | ||
'tools.sessions.timeout': 15, | ||
'tools.compress.gzip': True, | ||
# 'environment' : 'production' | ||
}, | ||
# Content in this directory will be made directly | ||
# available on the web server | ||
|
@@ -155,6 +153,9 @@ | |
'query_select_specimen_page': (HTML_DIR / 'query_select_specimen_page.html', True), | ||
'query_generate_aliquot_id_page': (HTML_DIR / 'query_generate_aliquot_id_page.html', True), | ||
'query_generate_sample_id_page': (HTML_DIR / 'query_generate_sample_id_page.html', True), | ||
|
||
# Error Pages | ||
'error_page': (HTML_DIR / 'error_page.html', True), | ||
} | ||
|
||
# Predefined options for formatting webpages are set here | ||
|
@@ -227,6 +228,9 @@ | |
'query_generate_sample_id_page': SERVER_PATH + 'query/generate_sample_id', | ||
'query_result_table': '', | ||
|
||
# Error Pages | ||
'error_page': SERVER_PATH + 'error/error_page', | ||
|
||
# Where to insert errors/warnings on a given page | ||
'error': '', | ||
'warning': '', | ||
|
@@ -317,7 +321,7 @@ | |
'permutations', | ||
'type' | ||
] | ||
CONTACT_EMAIL = 'david.wallach@mssm.edu' | ||
CONTACT_EMAIL = 'adam.cantor@mssm.edu' | ||
MMEDS_EMAIL = '[email protected]' | ||
TEST_EMAIL = '[email protected]' | ||
SQL_DATABASE = 'mmeds_data1' | ||
|
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,6 @@ | ||
<div class="w3-container"> | ||
<h2>{status}</h2> | ||
<p>{message}</p> | ||
<pre>{traceback}</pre> | ||
<p>{version}</p> | ||
</div> |
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
Oops, something went wrong.