diff options
author | zsloan | 2019-10-10 11:08:18 -0500 |
---|---|---|
committer | zsloan | 2019-10-10 11:08:18 -0500 |
commit | 36e0847ea15191d136f85068529928d69b317368 (patch) | |
tree | 1b123b0f665cffe11b9a61e11fa6f1dfa60661b0 | |
parent | f80b5e760cafa82745307774998f7ae9fdf66a19 (diff) | |
download | genenetwork2-36e0847ea15191d136f85068529928d69b317368.tar.gz |
Fixed issue related to Redis upgrade and changed some text on Affiliates part of home page
-rw-r--r-- | wqflask/wqflask/collect.py | 2 | ||||
-rwxr-xr-x | wqflask/wqflask/templates/index_page_orig.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/wqflask/wqflask/collect.py b/wqflask/wqflask/collect.py index 22d3f7ee..73269c4d 100644 --- a/wqflask/wqflask/collect.py +++ b/wqflask/wqflask/collect.py @@ -53,7 +53,7 @@ class AnonCollection(object): #ZS: Find id and set it if the collection doesn't already exist if Redis.get(self.key) == "None" or Redis.get(self.key) == None: - Redis.set(self.key, None) #ZS: For some reason I get the error "Operation against a key holding the wrong kind of value" if I don't do this + Redis.set(self.key, "None") #ZS: For some reason I get the error "Operation against a key holding the wrong kind of value" if I don't do this else: collections_list = json.loads(Redis.get(self.key)) collection_position = 0 #ZS: Position of collection in collection_list, if it exists diff --git a/wqflask/wqflask/templates/index_page_orig.html b/wqflask/wqflask/templates/index_page_orig.html index 108c87ed..7d5cd95b 100755 --- a/wqflask/wqflask/templates/index_page_orig.html +++ b/wqflask/wqflask/templates/index_page_orig.html @@ -188,12 +188,12 @@ <div class="page-header"> <h1>Affiliates</h1> <ul> - <li><a href="http://ucscbrowser.genenetwork.org/">Genome Browser</a> @ UTHSC</li> - <li><a href="https://systems-genetics.org/">Systems Genetics</a> @ EPFL</li> - <li><a href="http://bnw.genenetwork.org/">Bayesian Network Web Server</a> @ UTHSC</li> - <li><a href="http://genenetwork.org">GeneNetwork 1</a> @ UTHSC</li> + <li><a href="http://ucscbrowser.genenetwork.org/">Genome Browser</a> at UTHSC</li> + <li><a href="https://systems-genetics.org/">Systems Genetics</a> at EPFL</li> + <li><a href="http://bnw.genenetwork.org/">Bayesian Network Web Server</a> at UTHSC</li> + <li><a href="http://genenetwork.org">GeneNetwork 1</a> at UTHSC</li> <li><a href="https://www.geneweaver.org/">GeneWeaver</a></li> - <li><a href="http://www.webgestalt.org/">WebGestalt</a> @ Baylor</li> + <li><a href="http://www.webgestalt.org/">WebGestalt</a> at Baylor</li> </ul> </div> </section> |