summaryrefslogtreecommitdiff
path: root/issues/genenetwork
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-12-22 11:49:30 +0300
committerFrederick Muriuki Muriithi2021-12-22 11:49:30 +0300
commit2f56ee37183938270197d9bd968648e65584513c (patch)
tree195c6ca08188a61d1669403c3109de8a96427a7a /issues/genenetwork
parent512bc12aaac7189253a62b2be105472a34821263 (diff)
parentbe16a6a7f1a7e2dfa074e858c26ff6a9b6aa86de (diff)
downloadgn-gemtext-2f56ee37183938270197d9bd968648e65584513c.tar.gz
Merge branch 'main' of github.com:genenetwork/gn-gemtext-threads
Diffstat (limited to 'issues/genenetwork')
-rw-r--r--issues/genenetwork/genewiki.gmi24
-rw-r--r--issues/genenetwork/global-search.gmi12
-rw-r--r--issues/genenetwork/http-https.gmi15
3 files changed, 51 insertions, 0 deletions
diff --git a/issues/genenetwork/genewiki.gmi b/issues/genenetwork/genewiki.gmi
new file mode 100644
index 0000000..e7096dc
--- /dev/null
+++ b/issues/genenetwork/genewiki.gmi
@@ -0,0 +1,24 @@
+# Genewiki conversion
+
+GeneNetwork1 contains a genewiki:
+
+=> http://gn1.genenetwork.org/webqtl/main.py?FormID=geneWiki&symbol=BRCA2
+
+We want to migrate it to markdown documents that can be fetched from
+
+=> https://github.com/genenetwork/gn-docs/genes
+
+So the steps are to (1) migrate the existing genewiki data in the database to named markdown documents in that repository and (2) create a rendered page that is found through
+
+=> https://genenetwork.org/doc/genes/BRCA2
+
+with an edit button, similar to
+
+=> http://genenetwork.org/facilities/
+
+## Tags
+
+* assigned: pjotrp, zsloan
+* enhancement
+
+## Tasks
diff --git a/issues/genenetwork/global-search.gmi b/issues/genenetwork/global-search.gmi
new file mode 100644
index 0000000..01d9c0f
--- /dev/null
+++ b/issues/genenetwork/global-search.gmi
@@ -0,0 +1,12 @@
+# Global search problems
+
+Global search is the top bar of GN2
+
+## Tags
+
+* assigned: pjotrp, zsloan
+
+## Tasks
+
+* [ ] BRCA2 does not render results in table
+* [ ] 'Brca2' with quotes gives a SQL error
diff --git a/issues/genenetwork/http-https.gmi b/issues/genenetwork/http-https.gmi
new file mode 100644
index 0000000..80306bf
--- /dev/null
+++ b/issues/genenetwork/http-https.gmi
@@ -0,0 +1,15 @@
+# Arthur mentioned last meet that GeneNetwork2 does not redirect http urls to https.
+
+He'd like http to redirect to https.
+
+http://genenetwork.org/ -> https://genenetwork.org/
+
+# nginx snippet
+
+```
+if ($scheme = http) {
+ return 301 https://$server_name$request_uri;
+}
+```
+
+* assigned: pjotr, arthur, jgart